@charset "UTF-8";
/*!
Theme Name: TM 9studio
Theme URI: http://9studio.thememove.com
Author: ThemeMove
Author URI: http://thememove.com
Description: A Film Maker, Studio, Agency & Blogger WordPress Theme
Version: 3.1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tm-9studio
Tags: featured-images, post-formats, sticky-post, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Settings
# Vendor
# Tools
# Generic
# Elements
# Objects
# Components
# Trumps
--------------------------------------------------------------*/

/*
Settings store all variables, config switches, etc.
Split up into logical sections, the smaller and simpler the better.
*/
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes floating {
    from {
        -webkit-transform: translate(0, 0px);
    }
    65% {
        -webkit-transform: translate(0, 15px);
    }
    to {
        -webkit-transform: translate(0, 0px);
    }
}

@-moz-keyframes floating {
    from {
        -moz-transform: translate(0, 0px);
    }
    65% {
        -moz-transform: translate(0, 15px);
    }
    to {
        -moz-transform: translate(0, 0px);
    }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes zoomOut {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

/* Standard syntax */
@keyframes zoomOut {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Blink */
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*
Tools store all programic Sass functionality.
If your tooling is simplistic enough, you can do something like:
  tools.mixins
If your tooling is more complex you can split it up like:
  tools.grid
  tools.typography
  etc.
*/
/*
Generic rules are project-agnostic.
These can be copied from any project to the next
*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
}

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 {
    margin: .67em 0;
    font-size: 2em;
}

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

small {
    font-size: 80%;
}

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

sup {
    top: -.5em;
}

sub {
    bottom: -.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-size: 1em;
    font-family: monospace, monospace;
}

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

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

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

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

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 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"] {
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

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

fieldset {
    margin: 0 2px;
    padding: .35em .625em .75em;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

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;
}

.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;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}

@media (min-width: 544px) {
    .container {
        max-width: 576px;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid, .xwide > .wrapper,
[mode="xwide"] > .wrapper, .content--left .wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}

.row, .insight-carousel .slick-track {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .insight-menu-add-param ul li, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .single.post--style--style02 .content .content-area, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, [blog="fullwidth"] .content-area, [blog="content-sidebar"] .content-area, [blog="content-sidebar"] .widget-area, [blog="sidebar-content"] .content-area, [blog="sidebar-content"] .widget-area, .topbar {
    position: relative;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
}

.col-xs-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-xs-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-xs-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-xs-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-xs-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-xs-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-xs-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-xs-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-pull-1 {
    right: 8.33333%;
}

.col-xs-pull-2 {
    right: 16.66667%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-4 {
    right: 33.33333%;
}

.col-xs-pull-5 {
    right: 41.66667%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-7 {
    right: 58.33333%;
}

.col-xs-pull-8 {
    right: 66.66667%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-10 {
    right: 83.33333%;
}

.col-xs-pull-11 {
    right: 91.66667%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-push-1 {
    left: 8.33333%;
}

.col-xs-push-2 {
    left: 16.66667%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-4 {
    left: 33.33333%;
}

.col-xs-push-5 {
    left: 41.66667%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-7 {
    left: 58.33333%;
}

.col-xs-push-8 {
    left: 66.66667%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-10 {
    left: 83.33333%;
}

.col-xs-push-11 {
    left: 91.66667%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

.col-xs-offset-1 {
    margin-left: 8.33333%;
}

.col-xs-offset-2 {
    margin-left: 16.66667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333%;
}

.col-xs-offset-5 {
    margin-left: 41.66667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333%;
}

.col-xs-offset-8 {
    margin-left: 66.66667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333%;
}

.col-xs-offset-11 {
    margin-left: 91.66667%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width: 544px) {
    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-pull-1 {
        right: 8.33333%;
    }

    .col-sm-pull-2 {
        right: 16.66667%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-4 {
        right: 33.33333%;
    }

    .col-sm-pull-5 {
        right: 41.66667%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-7 {
        right: 58.33333%;
    }

    .col-sm-pull-8 {
        right: 66.66667%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-10 {
        right: 83.33333%;
    }

    .col-sm-pull-11 {
        right: 91.66667%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-push-1 {
        left: 8.33333%;
    }

    .col-sm-push-2 {
        left: 16.66667%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-4 {
        left: 33.33333%;
    }

    .col-sm-push-5 {
        left: 41.66667%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-7 {
        left: 58.33333%;
    }

    .col-sm-push-8 {
        left: 66.66667%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-10 {
        left: 83.33333%;
    }

    .col-sm-push-11 {
        left: 91.66667%;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 769px) {
    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2, .insight-menu-add-param ul li {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10, .single.post--style--style02 .content .content-area {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-pull-1 {
        right: 8.33333%;
    }

    .col-md-pull-2 {
        right: 16.66667%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-4 {
        right: 33.33333%;
    }

    .col-md-pull-5 {
        right: 41.66667%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-7 {
        right: 58.33333%;
    }

    .col-md-pull-8 {
        right: 66.66667%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-10 {
        right: 83.33333%;
    }

    .col-md-pull-11 {
        right: 91.66667%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-push-1 {
        left: 8.33333%;
    }

    .col-md-push-2 {
        left: 16.66667%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-4 {
        left: 33.33333%;
    }

    .col-md-push-5 {
        left: 41.66667%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-7 {
        left: 58.33333%;
    }

    .col-md-push-8 {
        left: 66.66667%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-10 {
        left: 83.33333%;
    }

    .col-md-push-11 {
        left: 91.66667%;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66667%;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-pull-1 {
        right: 8.33333%;
    }

    .col-lg-pull-2 {
        right: 16.66667%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-4 {
        right: 33.33333%;
    }

    .col-lg-pull-5 {
        right: 41.66667%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-7 {
        right: 58.33333%;
    }

    .col-lg-pull-8 {
        right: 66.66667%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-10 {
        right: 83.33333%;
    }

    .col-lg-pull-11 {
        right: 91.66667%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-push-1 {
        left: 8.33333%;
    }

    .col-lg-push-2 {
        left: 16.66667%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-4 {
        left: 33.33333%;
    }

    .col-lg-push-5 {
        left: 41.66667%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-7 {
        left: 58.33333%;
    }

    .col-lg-push-8 {
        left: 66.66667%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-10 {
        left: 83.33333%;
    }

    .col-lg-push-11 {
        left: 91.66667%;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-xl-pull-0 {
        right: auto;
    }

    .col-xl-pull-1 {
        right: 8.33333%;
    }

    .col-xl-pull-2 {
        right: 16.66667%;
    }

    .col-xl-pull-3 {
        right: 25%;
    }

    .col-xl-pull-4 {
        right: 33.33333%;
    }

    .col-xl-pull-5 {
        right: 41.66667%;
    }

    .col-xl-pull-6 {
        right: 50%;
    }

    .col-xl-pull-7 {
        right: 58.33333%;
    }

    .col-xl-pull-8 {
        right: 66.66667%;
    }

    .col-xl-pull-9 {
        right: 75%;
    }

    .col-xl-pull-10 {
        right: 83.33333%;
    }

    .col-xl-pull-11 {
        right: 91.66667%;
    }

    .col-xl-pull-12 {
        right: 100%;
    }

    .col-xl-push-0 {
        left: auto;
    }

    .col-xl-push-1 {
        left: 8.33333%;
    }

    .col-xl-push-2 {
        left: 16.66667%;
    }

    .col-xl-push-3 {
        left: 25%;
    }

    .col-xl-push-4 {
        left: 33.33333%;
    }

    .col-xl-push-5 {
        left: 41.66667%;
    }

    .col-xl-push-6 {
        left: 50%;
    }

    .col-xl-push-7 {
        left: 58.33333%;
    }

    .col-xl-push-8 {
        left: 66.66667%;
    }

    .col-xl-push-9 {
        left: 75%;
    }

    .col-xl-push-10 {
        left: 83.33333%;
    }

    .col-xl-push-11 {
        left: 91.66667%;
    }

    .col-xl-push-12 {
        left: 100%;
    }

    .col-xl-offset-0 {
        margin-left: 0%;
    }

    .col-xl-offset-1 {
        margin-left: 8.33333%;
    }

    .col-xl-offset-2 {
        margin-left: 16.66667%;
    }

    .col-xl-offset-3 {
        margin-left: 25%;
    }

    .col-xl-offset-4 {
        margin-left: 33.33333%;
    }

    .col-xl-offset-5 {
        margin-left: 41.66667%;
    }

    .col-xl-offset-6 {
        margin-left: 50%;
    }

    .col-xl-offset-7 {
        margin-left: 58.33333%;
    }

    .col-xl-offset-8 {
        margin-left: 66.66667%;
    }

    .col-xl-offset-9 {
        margin-left: 75%;
    }

    .col-xl-offset-10 {
        margin-left: 83.33333%;
    }

    .col-xl-offset-11 {
        margin-left: 91.66667%;
    }

    .col-xl-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 1920px) {
    .col-xxl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xxl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xxl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-xxl-pull-0 {
        right: auto;
    }

    .col-xxl-pull-1 {
        right: 8.33333%;
    }

    .col-xxl-pull-2 {
        right: 16.66667%;
    }

    .col-xxl-pull-3 {
        right: 25%;
    }

    .col-xxl-pull-4 {
        right: 33.33333%;
    }

    .col-xxl-pull-5 {
        right: 41.66667%;
    }

    .col-xxl-pull-6 {
        right: 50%;
    }

    .col-xxl-pull-7 {
        right: 58.33333%;
    }

    .col-xxl-pull-8 {
        right: 66.66667%;
    }

    .col-xxl-pull-9 {
        right: 75%;
    }

    .col-xxl-pull-10 {
        right: 83.33333%;
    }

    .col-xxl-pull-11 {
        right: 91.66667%;
    }

    .col-xxl-pull-12 {
        right: 100%;
    }

    .col-xxl-push-0 {
        left: auto;
    }

    .col-xxl-push-1 {
        left: 8.33333%;
    }

    .col-xxl-push-2 {
        left: 16.66667%;
    }

    .col-xxl-push-3 {
        left: 25%;
    }

    .col-xxl-push-4 {
        left: 33.33333%;
    }

    .col-xxl-push-5 {
        left: 41.66667%;
    }

    .col-xxl-push-6 {
        left: 50%;
    }

    .col-xxl-push-7 {
        left: 58.33333%;
    }

    .col-xxl-push-8 {
        left: 66.66667%;
    }

    .col-xxl-push-9 {
        left: 75%;
    }

    .col-xxl-push-10 {
        left: 83.33333%;
    }

    .col-xxl-push-11 {
        left: 91.66667%;
    }

    .col-xxl-push-12 {
        left: 100%;
    }

    .col-xxl-offset-0 {
        margin-left: 0%;
    }

    .col-xxl-offset-1 {
        margin-left: 8.33333%;
    }

    .col-xxl-offset-2 {
        margin-left: 16.66667%;
    }

    .col-xxl-offset-3 {
        margin-left: 25%;
    }

    .col-xxl-offset-4 {
        margin-left: 33.33333%;
    }

    .col-xxl-offset-5 {
        margin-left: 41.66667%;
    }

    .col-xxl-offset-6 {
        margin-left: 50%;
    }

    .col-xxl-offset-7 {
        margin-left: 58.33333%;
    }

    .col-xxl-offset-8 {
        margin-left: 66.66667%;
    }

    .col-xxl-offset-9 {
        margin-left: 75%;
    }

    .col-xxl-offset-10 {
        margin-left: 83.33333%;
    }

    .col-xxl-offset-11 {
        margin-left: 91.66667%;
    }

    .col-xxl-offset-12 {
        margin-left: 100%;
    }
}

.col-xs-first {
    order: -1;
}

.col-xs-last {
    order: 1;
}

@media (min-width: 544px) {
    .col-sm-first {
        order: -1;
    }

    .col-sm-last {
        order: 1;
    }
}

@media (min-width: 769px) {
    .col-md-first {
        order: -1;
    }

    .col-md-last {
        order: 1;
    }
}

@media (min-width: 992px) {
    .col-lg-first {
        order: -1;
    }

    .col-lg-last {
        order: 1;
    }
}

@media (min-width: 1200px) {
    .col-xl-first {
        order: -1;
    }

    .col-xl-last, [blog="sidebar-content"] .content-area {
        order: 1;
    }
}

@media (min-width: 1920px) {
    .col-xxl-first {
        order: -1;
    }

    .col-xxl-last {
        order: 1;
    }
}

.row-xs-top {
    align-items: flex-start;
}

.row-xs-center, .insight-carousel .slick-track {
    align-items: center;
}

.row-xs-bottom {
    align-items: flex-end;
}

@media (min-width: 544px) {
    .row-sm-top {
        align-items: flex-start;
    }

    .row-sm-center {
        align-items: center;
    }

    .row-sm-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 769px) {
    .row-md-top {
        align-items: flex-start;
    }

    .row-md-center {
        align-items: center;
    }

    .row-md-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 992px) {
    .row-lg-top {
        align-items: flex-start;
    }

    .row-lg-center {
        align-items: center;
    }

    .row-lg-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 1200px) {
    .row-xl-top {
        align-items: flex-start;
    }

    .row-xl-center {
        align-items: center;
    }

    .row-xl-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 1920px) {
    .row-xxl-top {
        align-items: flex-start;
    }

    .row-xxl-center {
        align-items: center;
    }

    .row-xxl-bottom {
        align-items: flex-end;
    }
}

.row-xs-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 544px) {
    .row-sm-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .row-md-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .row-lg-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .row-xl-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 1920px) {
    .row-xxl-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.row-xs-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

@media (min-width: 544px) {
    .row-sm-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 769px) {
    .row-md-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 992px) {
    .row-lg-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 1200px) {
    .row-xl-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

@media (min-width: 1920px) {
    .row-xxl-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }
}

.col-xs-top {
    align-self: flex-start;
}

.col-xs-center {
    align-self: center;
}

.col-xs-bottom {
    align-self: flex-end;
}

@media (min-width: 544px) {
    .col-sm-top {
        align-self: flex-start;
    }

    .col-sm-center {
        align-self: center;
    }

    .col-sm-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 769px) {
    .col-md-top {
        align-self: flex-start;
    }

    .col-md-center {
        align-self: center;
    }

    .col-md-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 992px) {
    .col-lg-top {
        align-self: flex-start;
    }

    .col-lg-center {
        align-self: center;
    }

    .col-lg-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 1200px) {
    .col-xl-top {
        align-self: flex-start;
    }

    .col-xl-center {
        align-self: center;
    }

    .col-xl-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 1920px) {
    .col-xxl-top {
        align-self: flex-start;
    }

    .col-xxl-center {
        align-self: center;
    }

    .col-xxl-bottom {
        align-self: flex-end;
    }
}

/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
    position: relative;
    display: inline-block;
    /**
     * tooltip arrow
     */
    /**
     * tooltip body
     */
}

[class*="hint--"]:before, [class*="hint--"]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms;
}

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
    visibility: visible;
    opacity: 1;
}

[class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms;
}

[class*="hint--"]:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001;
}

[class*="hint--"]:after {
    background: #383838;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 12px;
    white-space: nowrap;
}

[class*="hint--"][aria-label]:after {
    content: attr(aria-label);
}

[class*="hint--"][data-hint]:after {
    content: attr(data-hint);
}

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
    display: none !important;
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
    border-top-color: #383838;
}

.hint--top-right:before {
    border-top-color: #383838;
}

.hint--top:before {
    border-top-color: #383838;
}

.hint--bottom-left:before {
    border-bottom-color: #383838;
}

.hint--bottom-right:before {
    border-bottom-color: #383838;
}

.hint--bottom:before {
    border-bottom-color: #383838;
}

.hint--left:before {
    border-left-color: #383838;
}

.hint--right:before {
    border-right-color: #383838;
}

/**
 * top tooltip
 */
.hint--top:before {
    margin-bottom: -11px;
}

.hint--top:before, .hint--top:after {
    bottom: 100%;
    left: 50%;
}

.hint--top:before {
    left: calc(50% - 6px);
}

.hint--top:after {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hint--top:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--top:hover:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

/**
 * bottom tooltip
 */
.hint--bottom:before {
    margin-top: -11px;
}

.hint--bottom:before, .hint--bottom:after {
    top: 100%;
    left: 50%;
}

.hint--bottom:before {
    left: calc(50% - 6px);
}

.hint--bottom:after {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hint--bottom:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--bottom:hover:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    -moz-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px);
}

/**
 * right tooltip
 */
.hint--right:before {
    margin-left: -11px;
    margin-bottom: -6px;
}

.hint--right:after {
    margin-bottom: -14px;
}

.hint--right:before, .hint--right:after {
    left: 100%;
    bottom: 50%;
}

.hint--right:hover:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

.hint--right:hover:after {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

/**
 * left tooltip
 */
.hint--left:before {
    margin-right: -11px;
    margin-bottom: -6px;
}

.hint--left:after {
    margin-bottom: -14px;
}

.hint--left:before, .hint--left:after {
    right: 100%;
    bottom: 50%;
}

.hint--left:hover:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}

.hint--left:hover:after {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}

/**
 * top-left tooltip
 */
.hint--top-left:before {
    margin-bottom: -11px;
}

.hint--top-left:before, .hint--top-left:after {
    bottom: 100%;
    left: 50%;
}

.hint--top-left:before {
    left: calc(50% - 6px);
}

.hint--top-left:after {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

.hint--top-left:after {
    margin-left: 12px;
}

.hint--top-left:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--top-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    -moz-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px);
}

/**
 * top-right tooltip
 */
.hint--top-right:before {
    margin-bottom: -11px;
}

.hint--top-right:before, .hint--top-right:after {
    bottom: 100%;
    left: 50%;
}

.hint--top-right:before {
    left: calc(50% - 6px);
}

.hint--top-right:after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.hint--top-right:after {
    margin-left: -12px;
}

.hint--top-right:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--top-right:hover:after {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
    margin-top: -11px;
}

.hint--bottom-left:before, .hint--bottom-left:after {
    top: 100%;
    left: 50%;
}

.hint--bottom-left:before {
    left: calc(50% - 6px);
}

.hint--bottom-left:after {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

.hint--bottom-left:after {
    margin-left: 12px;
}

.hint--bottom-left:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--bottom-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    -moz-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px);
}

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
    margin-top: -11px;
}

.hint--bottom-right:before, .hint--bottom-right:after {
    top: 100%;
    left: 50%;
}

.hint--bottom-right:before {
    left: calc(50% - 6px);
}

.hint--bottom-right:after {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.hint--bottom-right:after {
    margin-left: -12px;
}

.hint--bottom-right:hover:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--bottom-right:hover:after {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
    white-space: normal;
    line-height: 1.4em;
}

.hint--small:after {
    width: 80px;
}

.hint--medium:after {
    width: 150px;
}

.hint--large:after {
    width: 300px;
}

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*="hint--"] {
    /**
     * tooltip body
     */
}

[class*="hint--"]:after {
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
    background-color: #b34e4d;
}

.hint--error.hint--top-left:before {
    border-top-color: #b34e4d;
}

.hint--error.hint--top-right:before {
    border-top-color: #b34e4d;
}

.hint--error.hint--top:before {
    border-top-color: #b34e4d;
}

.hint--error.hint--bottom-left:before {
    border-bottom-color: #b34e4d;
}

.hint--error.hint--bottom-right:before {
    border-bottom-color: #b34e4d;
}

.hint--error.hint--bottom:before {
    border-bottom-color: #b34e4d;
}

.hint--error.hint--left:before {
    border-left-color: #b34e4d;
}

.hint--error.hint--right:before {
    border-right-color: #b34e4d;
}

/**
 * Warning
 */
.hint--warning:after {
    background-color: #c09854;
}

.hint--warning.hint--top-left:before {
    border-top-color: #c09854;
}

.hint--warning.hint--top-right:before {
    border-top-color: #c09854;
}

.hint--warning.hint--top:before {
    border-top-color: #c09854;
}

.hint--warning.hint--bottom-left:before {
    border-bottom-color: #c09854;
}

.hint--warning.hint--bottom-right:before {
    border-bottom-color: #c09854;
}

.hint--warning.hint--bottom:before {
    border-bottom-color: #c09854;
}

.hint--warning.hint--left:before {
    border-left-color: #c09854;
}

.hint--warning.hint--right:before {
    border-right-color: #c09854;
}

/**
 * Info
 */
.hint--info:after {
    background-color: #3986ac;
}

.hint--info.hint--top-left:before {
    border-top-color: #3986ac;
}

.hint--info.hint--top-right:before {
    border-top-color: #3986ac;
}

.hint--info.hint--top:before {
    border-top-color: #3986ac;
}

.hint--info.hint--bottom-left:before {
    border-bottom-color: #3986ac;
}

.hint--info.hint--bottom-right:before {
    border-bottom-color: #3986ac;
}

.hint--info.hint--bottom:before {
    border-bottom-color: #3986ac;
}

.hint--info.hint--left:before {
    border-left-color: #3986ac;
}

.hint--info.hint--right:before {
    border-right-color: #3986ac;
}

/**
 * Success
 */
.hint--success:after {
    background-color: #60be74;
}

.hint--success.hint--top-left:before {
    border-top-color: #60be74;
}

.hint--success.hint--top-right:before {
    border-top-color: #60be74;
}

.hint--success.hint--top:before {
    border-top-color: #60be74;
}

.hint--success.hint--bottom-left:before {
    border-bottom-color: #60be74;
}

.hint--success.hint--bottom-right:before {
    border-bottom-color: #60be74;
}

.hint--success.hint--bottom:before {
    border-bottom-color: #60be74;
}

.hint--success.hint--left:before {
    border-left-color: #60be74;
}

.hint--success.hint--right:before {
    border-right-color: #60be74;
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
    opacity: 1;
    visibility: visible;
}

.hint--always.hint--top:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--always.hint--top:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.hint--always.hint--top-left:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--always.hint--top-left:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    -moz-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px);
}

.hint--always.hint--top-right:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--always.hint--top-right:after {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hint--always.hint--bottom:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--always.hint--bottom:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    -moz-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px);
}

.hint--always.hint--bottom-left:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--always.hint--bottom-left:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    -moz-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px);
}

.hint--always.hint--bottom-right:before {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--always.hint--bottom-right:after {
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    transform: translateY(8px);
}

.hint--always.hint--left:before {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}

.hint--always.hint--left:after {
    -webkit-transform: translateX(-8px);
    -moz-transform: translateX(-8px);
    transform: translateX(-8px);
}

.hint--always.hint--right:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

.hint--always.hint--right:after {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
    border-radius: 4px;
}

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
    -webkit-transition-duration: 0ms;
    -moz-transition-duration: 0ms;
    transition-duration: 0ms;
}

.hint--bounce:before, .hint--bounce:after {
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

.mm-menu, .mm-panels,
.mm-panels > .mm-panel {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    box-sizing: border-box;
    margin: 0;
}

.mm-btn, .mm-menu {
    box-sizing: border-box;
}

.mm-listview a, .mm-listview a:hover,
.mm-navbar a, .mm-navbar a:hover {
    text-decoration: none;
}

.mm-hidden {
    display: none !important;
}

.mm-menu, .mm-panels > .mm-panel:not(.mm-hidden) {
    display: block;
}

.mm-wrapper {
    position: relative;
    overflow-x: hidden;
}

.mm-menu {
    position: absolute;
    padding: 0;
}

.mm-panels,
.mm-panels > .mm-panel {
    position: absolute;
    border-color: inherit;
    background: inherit;
}

.mm-btn,
.mm-panel.mm-highest {
    z-index: 1;
}

.mm-panels {
    overflow: hidden;
}

.mm-panel {
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
    transform: translate3d(0, 0, 0);
}

.mm-panel.mm-subopened {
    transform: translate3d(-30%, 0, 0);
}

.mm-panels > .mm-panel {
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mm-listview .mm-divider,
.mm-listview > li > a,
.mm-listview > li > span,
.mm-navbar .mm-title {
    overflow: hidden;
}

.mm-panels > .mm-panel.mm-hasnavbar {
    padding-top: 40px;
}

.mm-vertical .mm-panel {
    transform: none !important;
}

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
    display: none;
    padding: 10px 0 10px 10px;
}

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
    border-color: transparent;
}

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
    display: block;
}

.mm-listview > li.mm-vertical > .mm-next,
.mm-vertical .mm-listview > li > .mm-next {
    bottom: auto;
    height: 40px;
}

.mm-listview > li.mm-vertical > .mm-next:after,
.mm-vertical .mm-listview > li > .mm-next:after {
    top: 16px;
    bottom: auto;
}

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after,
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
    right: 19px;
    transform: rotate(45deg);
}

.mm-btn {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
}

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 5px;
    height: 5px;
    border: 2px solid transparent;
    content: '';
    transform: rotate(-45deg);
}

.mm-clear:before,
.mm-close:before {
    right: 18px;
    border-right: 0;
    border-bottom: 0;
}

.mm-clear:after,
.mm-close:after {
    right: 25px;
    border-top: 0;
    border-left: 0;
}

.mm-arrow:after,
.mm-next:after,
.mm-prev:before {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 8px;
    height: 8px;
    border: 2px solid transparent;
    content: '';
    transform: rotate(-45deg);
}

.mm-prev:before {
    left: 23px;
    border-right: 0;
    border-bottom: 0;
}

.mm-arrow:after,
.mm-next:after {
    right: 23px;
    border-top: 0;
    border-left: 0;
}

.mm-navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0 40px;
    height: 40px;
    border-color: inherit;
    border-bottom: 1px solid;
    text-align: center;
    line-height: 20px;
}

.mm-navbar > * {
    display: block;
    padding: 10px 0;
}

.mm-navbar .mm-btn:first-child {
    left: 0;
    padding-left: 20px;
}

.mm-navbar .mm-btn:last-child {
    right: 0;
    padding-right: 20px;
    text-align: right;
}

.mm-panel .mm-navbar {
    display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
    display: block;
    border-color: #dddddd;
}

.mm-listview,
.mm-listview > li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mm-listview {
    font: inherit;
    font-size: 14px;
    line-height: 20px;
}

.mm-listview > li {
    position: relative;
}

.mm-listview > li,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before,
.mm-listview > li:after {
    border-color: inherit;
}

.mm-listview > li > a,
.mm-listview > li > span {
    display: block;
    margin: 0;
    padding: 15px;
    color: inherit;
}

.mm-listview > li > span {
    padding: 15px 0;
}

.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
    padding-right: 50px;
}

.mm-listview > li:not(.mm-divider):after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    content: '';
}

.mm-listview .mm-next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0;
    width: 50px;
    background: rgba(3, 2, 1, 0);
}

.mm-listview .mm-next:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    border-left-width: 1px;
    border-left-style: solid;
    content: '';
}

.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
    margin-right: 50px;
}

.mm-listview .mm-next.mm-fullsubopen {
    width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
    border-left: 0;
}

.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
    margin-right: 0;
    padding-right: 50px;
}

.mm-listview .mm-inset {
    margin: 0;
    padding: 0 10px 15px 40px;
    list-style: disc inside;
}

.mm-listview .mm-inset > li {
    padding: 5px 0;
}

.mm-listview .mm-divider {
    text-indent: 20px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 25px;
}

.mm-listview .mm-spacer {
    padding-top: 40px;
}

.mm-listview .mm-spacer > .mm-next {
    top: 40px;
}

.mm-listview .mm-spacer.mm-divider {
    padding-top: 25px;
}

.mm-menu {
    border-color: rgba(0, 0, 0, 0.1);
    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar > * {
    color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview {
    border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview > li .mm-arrow:after,
.mm-menu .mm-listview > li .mm-next:after {
    border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview > li a:not(.mm-next) {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
    tap-highlight-color: rgba(255, 255, 255, 0.5);
}

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
    background: rgba(255, 255, 255, 0.5);
}

.mm-menu .mm-divider, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
    background: rgba(0, 0, 0, 0.05);
}

.mm-page {
    position: relative;
    box-sizing: border-box;
}

.mm-slideout {
    z-index: 1;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
}

html.mm-opened {
    position: relative;
    overflow-x: hidden;
}

html.mm-blocking, html.mm-blocking body {
    overflow: hidden;
}

html.mm-background .mm-page {
    background: inherit;
}

#mm-blocker {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(3, 2, 1, 0);
}

html.mm-blocking #mm-blocker {
    display: block;
}

.mm-menu.mm-offcanvas {
    position: fixed;
    z-index: 0;
    display: none;
    min-width: 140px;
    max-width: 440px;
    width: 80%;
}

.mm-menu.mm-offcanvas.mm-current {
    display: block;
}

html.mm-opening .mm-slideout {
    transform: translate3d(80%, 0, 0);
}

@media all and (max-width: 175px) {
    html.mm-opening .mm-slideout {
        transform: translate3d(140px, 0, 0);
    }
}

@media all and (min-width: 550px) {
    html.mm-opening .mm-slideout {
        transform: translate3d(440px, 0, 0);
    }
}

#__bs_notify__ {
    top: auto !important;
    bottom: 20% !important;
    border-top-left-radius: 5px !important;
    background-color: #ab61ff !important;
    font-size: 20px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.pri-color {
    color: #da0e2b !important;
}

.nd-color {
    color: #da0e2b !important;
}

.pri-bgcolor {
    background-color: #da0e2b;
}

.nd-bgcolor {
    background-color: #da0e2b;
}

.z-index2 {
    position: relative;
    z-index: 2;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.vertical-center {
    display: flex;
    align-items: center;
    align-self: center;
    align-content: center;
}

.vertical-bottom {
    display: flex;
    align-items: flex-end;
    align-self: flex-end;
    align-content: flex-end;
}

html .row:after, html .insight-carousel .slick-track:after, .insight-carousel html .slick-track:after,
html .row:before,
html .insight-carousel .slick-track:before,
.insight-carousel html .slick-track:before {
    display: block;
}

body .col-md-4p {
    width: 100%;
}

@media (min-width: 769px) {
    body .col-md-4p {
        width: 40%;
    }
}

body .col-md-6p {
    width: 100%;
}

@media (min-width: 769px) {
    body .col-md-6p {
        width: 60%;
    }
}

@media (max-width: 991px) {
    body .md-reset-padding {
        padding: 0 !important;
    }
}

.ofw-100 {
    font-weight: 100;
}

.ofw-200 {
    font-weight: 200;
}

.ofw-300 {
    font-weight: 300;
}

.ofw-400 {
    font-weight: 400;
}

.ofw-500 {
    font-weight: 500;
}

.ofw-600 {
    font-weight: 600;
}

.ofw-700 {
    font-weight: 700;
}

.ofw-800 {
    font-weight: 800;
}

.ofw-900 {
    font-weight: 900;
}

.ofs-normal {
    font-style: normal;
}

.ofs-italic {
    font-style: italic;
}

.ofs-oblique {
    font-style: oblique;
}

.ofs-initial {
    font-style: initial;
}

.ofs-inherit {
    font-style: inherit;
}

@media (min-width: 992px) {
    .app-desc {
        margin-top: -50px;
    }
}

.btn-googleplay img {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

@media (min-width: 544px) {
    .btn-googleplay {
        margin-top: -150px;
    }

    .btn-store {
        float: right;
        margin-top: -88px;
        position: relative;
        z-index: 9;
    }

    .btn-store:hover, .btn-googleplay:hover {
        animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 991px) {
    html .reset-margin-md {
        margin: 0 !important;
    }

    html .reset-margin-left-md {
        margin-left: 0 !important;
    }
}

/*
Elements are rules for classless HTML tags.
There can exist no classes at this layer, only further into our triangle.
*/
.btn, .woocommerce a.button, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce-checkout #payment .place-order input#place_order, .woocommerce .sidebar .widget.widget_price_filter .price_slider_amount .button {
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a {
    color: #696969;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover, a:focus, a:active {
    color: #da0e2b;
}

a:focus {
    outline: none;
}

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

.insight-btn.alt, body.page .comments-area .comment-form input.alt[type="submit"], .single .content .comments-area .comment-form input.alt[type="submit"] {
    background-color: #fff;
    color: #da0e2b;
}

.insight-btn.alt:hover, body.page .comments-area .comment-form input.alt:hover[type="submit"], .single .content .comments-area .comment-form input.alt:hover[type="submit"] {
    background-color: #da0e2b;
    color: #fff;
}

ol {
    list-style: decimal;
}

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

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

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 {
    border: 1px solid #f1eeea;
    border-radius: 3px;
    color: #666666;
    padding: 7px 15px;
    outline: none;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

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: #111111;
    border-color: #ccc;
    outline: none;
}

select {
    border: 1px solid #f1eeea;
}

select:focus {
    outline: none;
}

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"] {
    height: 40px;
}

textarea {
    width: 100%;
}

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

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

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

body,
button,
input,
select,
textarea {
    font-size: 15px;
    color: #404040;
    background-color: #f4f4f4;
    font-family: Lato;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 1.5em;
    -webkit-font-smoothing: antialiased;
}

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

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

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

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

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

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

big {
    font-size: 125%;
}

blockquote,
q {
    quotes: "" "";
}

blockquote:before, blockquote:after,
q:before,
q:after {
    content: "";
}

.insight-blog-carousel .blog-item {
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

.insight-blog-carousel .blog-item .blog-item-inner {
    padding: 30px;
    min-height: 205px;
    background-color: #fff;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-blog-carousel .blog-item .blog-item-inner:before {
    position: absolute;
    top: 0;
    left: -20px;
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
}

.insight-blog-carousel .blog-item .blog-item-inner .time {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
}

.insight-blog-carousel .blog-item .blog-item-inner .title {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    margin-top: 20px;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta {
    margin-top: 40px;
    color: #696969;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span a {
    color: #696969;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel .blog-item .blog-item-inner .meta > span:last-child {
    margin-right: 0;
}

.insight-blog-carousel .blog-item .blog-item-inner:hover {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.insight-blog-carousel .slick-list {
    overflow: visible !important;
}

.insight-blog-carousel .slick-dots {
    margin-top: 30px;
    margin-bottom: 0;
    position: relative;
    bottom: 0;
}

.insight-blog-carousel .slick-dots li {
    margin: 0;
}

.insight-blog-carousel .slick-dots li button:before {
    font-size: 8px;
}

.insight-blog-carousel.style02 .blog-item {
    padding-left: 15px;
    padding-right: 15px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner {
    padding: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-thumbnail {
    overflow: hidden;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-thumbnail img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info {
    padding: 30px;
    background-color: #fff;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-date, .insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-title, .insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta {
    display: block;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-date {
    font-size: 14px;
    font-family: Montserrat;
    color: #ccc;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-title {
    font-size: 18px;
    font-family: Merriweather;
    font-weight: 400;
    color: #333333;
    margin-bottom: 70px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-title:hover {
    color: #da0e2b;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta {
    font-size: 14px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner .blog-info .blog-info-meta .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner:hover {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.insight-blog-carousel.style02 .blog-item .blog-item-inner:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.insight-carousel--slide {
    outline: none;
}

.insight-carousel--slide img {
    margin: 0 auto;
    opacity: .2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-carousel--slide:hover img {
    opacity: 1;
}

.insight-carousel.insight-carousel-scale .insight-carousel--slide:hover img {
    transform: scale(1.1);
}

.slick-track {
    min-width: 100%;
}

.insight-team-filter .insight-filter {
    display: block;
    position: relative;
    overflow: hidden;
}

.insight-team-filter .insight-filter ul {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.insight-team-filter .insight-filter ul li {
    list-style: none;
    display: inline-block;
    padding-right: 50px;
}

.insight-team-filter .insight-filter ul li a {
    cursor: pointer;
    text-transform: lowercase;
    color: #333333;
    font-weight: 700;
    font-family: Merriweather;
    font-size: 56px;
    opacity: .2;
}

.insight-team-filter .insight-filter ul li a.active {
    opacity: 1;
}

.insight-team-filter .insight-filter ul li:last-child {
    padding-right: 0;
}

.insight-team-filter .insight-filter-items {
    margin-top: 80px;
}

.insight-team-filter .insight-filter-items .insight-filter-item.insight-hide {
    display: none;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner {
    margin-right: 0px;
    margin-bottom: 30px;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .thumb {
    overflow: hidden;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .thumb img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info {
    background-color: #fff;
    text-align: center;
    padding: 25px 10px;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .name {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    text-transform: uppercase;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .name a {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .name a:hover {
    color: #da0e2b;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Montserrat;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .socials {
    font-size: 14px;
    font-weight: 400;
    font-family: Lato;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .socials a {
    display: inline-block;
    margin: 0 5px;
    color: #ccc;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .socials a:hover {
    color: #da0e2b;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner .info .socials {
    display: none;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner:hover {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner:hover .thumb img {
    transform: scale(1.1);
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner:hover .info .socials {
    display: block;
}

.insight-team-filter .insight-filter-items .insight-filter-item .insight-filter-item-inner:hover .info .tagline {
    display: none;
}

.insight-team-carousel {
    margin-bottom: 0 !important;
}

.insight-team-carousel.style01 .team-carousel-item {
    outline: none;
    padding: 30px 15px;
}

.insight-team-carousel.style01 .team-carousel-item.insight-hide {
    display: none;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .thumb {
    overflow: hidden;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .thumb img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info {
    background-color: #fff;
    text-align: center;
    padding: 25px 10px;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .name {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .name a {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .name a:hover {
    color: #da0e2b;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Montserrat;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .socials {
    font-size: 14px;
    font-weight: 400;
    font-family: Lato;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .socials a {
    display: inline-block;
    margin: 0 5px;
    color: #ccc;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .socials a:hover {
    color: #da0e2b;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner .info .socials {
    display: none;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner:hover {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner:hover .thumb img {
    transform: scale(1.1);
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner:hover .info .socials {
    display: block;
}

.insight-team-carousel.style01 .team-carousel-item .insight-filter-item-inner:hover .info .tagline {
    display: none;
}

.insight-team-carousel.style02 .team-carousel-item {
    outline: none;
}

.insight-team-carousel.style02 .team-carousel-item.insight-hide {
    display: none;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner {
    margin: 0 15px;
    margin-bottom: 30px;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .thumb img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info {
    text-align: left;
    padding: 25px 0 0 0;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .name {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .name a {
    font-size: 18px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .name a:hover {
    color: #da0e2b;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: Montserrat;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .socials {
    font-size: 14px;
    font-weight: 400;
    font-family: Lato;
    color: #ccc;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .socials a {
    display: inline-block;
    margin: 0 10px 0 0;
    color: #ccc;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .socials a:hover {
    color: #da0e2b;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner .info .socials {
    display: none;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner:hover .thumb img {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner:hover .info .socials {
    display: block;
}

.insight-team-carousel.style02 .team-carousel-item .insight-filter-item-inner:hover .info .tagline {
    display: none;
}

.insight-team-carousel .slick-prev, .insight-team-carousel .slick-next {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    background: none;
    border-radius: 0;
    z-index: 99;
    opacity: .2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-team-carousel .slick-prev:before, .insight-team-carousel .slick-next:before {
    font-size: 48px;
    font-weight: 400;
    font-family: Ionicons;
    color: #333333;
    opacity: 1;
}

.insight-team-carousel .slick-prev:hover, .insight-team-carousel .slick-next:hover {
    opacity: 1;
}

.insight-team-carousel .slick-prev:before {
    content: '\f3d2';
}

.insight-team-carousel .slick-next:before {
    content: '\f3d3';
}

.insight-team-carousel .slick-dots {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    bottom: 0;
}

.insight-team-carousel .slick-dots li {
    margin: 0;
}

.insight-team-carousel .slick-dots li button:before {
    font-size: 8px;
}

@media (max-width: 768px) {
    .insight-team-carousel .team-carousel-item {
        padding: 15px !important;
    }

    .insight-team-carousel .team-carousel-item .insight-filter-item-inner {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.insight-testimonials.style01, .insight-testimonials.style02 {
    margin-bottom: 0 !important;
    width: 100%;
    outline: none;
}

.insight-testimonials.style01 .item, .insight-testimonials.style02 .item {
    width: 100%;
    text-align: center;
    outline: none;
    z-index: 98;
}

.insight-testimonials.style01 .item .title, .insight-testimonials.style02 .item .title {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 35px;
    font-family: Montserrat;
    color: #333333;
}

.insight-testimonials.style01 .item .text, .insight-testimonials.style02 .item .text {
    width: 80%;
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0em;
    line-height: 2;
    color: #696969;
}

.insight-testimonials.style01 .item .photo, .insight-testimonials.style02 .item .photo {
    height: 80px;
    display: inline-block;
    margin: 0 10px;
    margin-bottom: 30px;
}

.insight-testimonials.style01 .item .photo img, .insight-testimonials.style02 .item .photo img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
}

.insight-testimonials.style01 .item .info, .insight-testimonials.style02 .item .info {
    margin-top: 30px;
    display: inline-block;
}

@media (max-width: 768px) {
    .insight-testimonials.style01 .item .info, .insight-testimonials.style02 .item .info {
        text-align: center;
    }

    .insight-testimonials.style01 .item .info .photo, .insight-testimonials.style02 .item .info .photo {
        float: none !important;
    }

    .insight-testimonials.style01 .item .info .photo img, .insight-testimonials.style02 .item .info .photo img {
        float: none;
    }
}

.insight-testimonials.style01 .item .info .author, .insight-testimonials.style02 .item .info .author {
    display: inline-block;
    margin: 0 10px;
    text-align: left;
    font-family: Montserrat;
}

.insight-testimonials.style01 .item .info .author .name, .insight-testimonials.style01 .item .info .author .tagline, .insight-testimonials.style02 .item .info .author .name, .insight-testimonials.style02 .item .info .author .tagline {
    display: inline-block;
    letter-spacing: 0.05em;
}

.insight-testimonials.style01 .item .info .author .name, .insight-testimonials.style02 .item .info .author .name {
    font-size: 14px;
    text-transform: uppercase;
    color: #696969;
    font-weight: 700;
}

.insight-testimonials.style01 .item .info .author .tagline, .insight-testimonials.style02 .item .info .author .tagline {
    font-size: 14px;
    color: #ccc;
}

.insight-testimonials.style01 .item .info .author .tagline:before, .insight-testimonials.style02 .item .info .author .tagline:before {
    content: '/';
    margin-left: 8px;
    margin-right: 8px;
}

.insight-testimonials.style01 .slick-prev, .insight-testimonials.style01 .slick-next, .insight-testimonials.style02 .slick-prev, .insight-testimonials.style02 .slick-next {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    background: none;
    border-radius: 0;
    z-index: 99;
    opacity: .2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-testimonials.style01 .slick-prev:before, .insight-testimonials.style01 .slick-next:before, .insight-testimonials.style02 .slick-prev:before, .insight-testimonials.style02 .slick-next:before {
    font-size: 48px;
    font-weight: 400;
    font-family: Ionicons;
    color: #333333;
    opacity: 1;
}

.insight-testimonials.style01 .slick-prev:hover, .insight-testimonials.style01 .slick-next:hover, .insight-testimonials.style02 .slick-prev:hover, .insight-testimonials.style02 .slick-next:hover {
    opacity: 1;
}

.insight-testimonials.style01 .slick-prev:before, .insight-testimonials.style02 .slick-prev:before {
    content: '\f3d2';
}

.insight-testimonials.style01 .slick-next:before, .insight-testimonials.style02 .slick-next:before {
    content: '\f3d3';
}

.insight-testimonials.style01 .slick-dots li, .insight-testimonials.style02 .slick-dots li {
    margin: 0;
}

.insight-testimonials.style01 .slick-dots li button:before, .insight-testimonials.style02 .slick-dots li button:before {
    font-size: 8px;
}

.insight-single-testimonial {
    margin-bottom: 0 !important;
    width: 100%;
    outline: none;
}

.insight-single-testimonial .item {
    width: 100%;
    text-align: center;
    outline: none;
    z-index: 98;
}

.insight-single-testimonial .item .title {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 35px;
    font-family: Montserrat;
    color: #333333;
}

.insight-single-testimonial .item .text {
    width: 80%;
    max-width: 750px;
    margin: 0 auto;
    font-family: Merriweather;
    font-size: 24px;
    font-style: italic;
    letter-spacing: 0;
    line-height: 2;
    color: #333333;
}

.insight-single-testimonial .item .photo {
    height: auto;
    display: inline-block;
    margin: 0 0 55px 0;
}

.insight-single-testimonial .item .photo img {
    max-width: 100%;
    height: auto;
}

.insight-single-testimonial .item .sign {
    margin-top: 55px;
}

.insight-single-testimonial .item .info {
    margin-top: 30px;
    display: inline-block;
}

@media (max-width: 768px) {
    .insight-single-testimonial .item .info {
        text-align: center;
    }

    .insight-single-testimonial .item .info .photo {
        float: none !important;
    }

    .insight-single-testimonial .item .info .photo img {
        float: none;
    }
}

.insight-single-testimonial .item .info .author {
    display: inline-block;
    margin: 0 10px;
    text-align: left;
    font-family: Montserrat;
}

.insight-single-testimonial .item .info .author .name,
.insight-single-testimonial .item .info .author .tagline {
    display: inline-block;
    letter-spacing: 0.05em;
}

.insight-single-testimonial .item .info .author .name {
    font-size: 14px;
    text-transform: uppercase;
    color: #696969;
    font-weight: 700;
}

.insight-single-testimonial .item .info .author .tagline {
    font-size: 14px;
    color: #ccc;
}

.insight-single-testimonial .item .info .author .tagline:before {
    content: '/';
    margin-left: 8px;
    margin-right: 8px;
}

.insight-single-testimonial.small .item .photo {
    height: auto;
    margin-bottom: 40px;
}

.insight-single-testimonial.small .item .text {
    font-size: 16px;
    color: #696969;
}

.insight-single-testimonial .slick-next,
.insight-single-testimonial .slick-prev {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    background: none;
    border-radius: 0;
    z-index: 99;
    opacity: 0.2;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-single-testimonial .slick-next:before,
.insight-single-testimonial .slick-prev:before {
    font-size: 48px;
    font-weight: 400;
    font-family: Ionicons;
    color: #333333;
    opacity: 1;
}

.insight-single-testimonial .slick-next:hover,
.insight-single-testimonial .slick-prev:hover {
    opacity: 1;
}

.insight-single-testimonial .slick-prev:before {
    content: '\f3d2';
}

.insight-single-testimonial .slick-next:before {
    content: '\f3d3';
}

.insight-single-testimonial .slick-dots li {
    margin: 0;
}

.insight-single-testimonial .slick-dots li button:before {
    font-size: 8px;
}

.insight-hire-box.style01 {
    color: #fff;
    background-color: #333333;
    width: 100%;
    padding: 90px 90px 60px 90px;
    margin: 0;
    font-family: Montserrat;
    position: relative;
    overflow: hidden;
}

.insight-hire-box.style01 .title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #da0e2b;
}

.insight-hire-box.style01 .text {
    margin-top: 30px;
    font-family: Merriweather;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
}

.insight-hire-box.style01 .link {
    margin-top: 80px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-hire-box.style01 .link a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #da0e2b;
    height: 48px;
    line-height: 46px;
    padding: 0 24px;
    border: 1px solid #da0e2b;
}

.insight-hire-box.style01 .link a:hover {
    border-color: #fff;
    color: #fff;
}

.insight-hire-box.style02 {
    position: relative;
    margin-top: 70px;
}

.insight-hire-box.style02:before {
    content: '';
    width: 2000px;
    height: 100%;
    background-color: #333333;
    display: block;
    position: absolute;
    top: -70px;
    left: 50%;
}

.insight-hire-box.style02 .insight-hire-box-left {
    position: relative;
}

.insight-hire-box.style02 .insight-hire-box-left .image img {
    width: 100%;
    height: auto;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-hire-box.style02 .insight-hire-box-left .image-text {
    font-size: 80px;
    font-weight: 700;
    color: #333333;
    font-family: Merriweather;
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 100px;
}

.insight-hire-box.style02 .insight-hire-box-right {
    color: #fff;
    width: 100%;
    padding: 100px 130px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.insight-hire-box.style02 .insight-hire-box-right .title {
    font-family: Merriweather;
    font-size: 40px;
    font-weight: 400;
}

.insight-hire-box.style02 .insight-hire-box-right .text {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #ababab;
}

.insight-hire-box.style02 .insight-hire-box-right .link {
    margin-top: 50px;
}

.insight-hire-box.style02 .insight-hire-box-right .link a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #da0e2b;
    height: 48px;
    line-height: 46px;
    padding: 0 24px;
    border: 1px solid #da0e2b;
}

.insight-hire-box.style02 .insight-hire-box-right .link a:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .insight-hire-box.style02 {
        margin-top: 0;
    }

    .insight-hire-box.style02:before {
        display: none;
    }

    .insight-hire-box.style02 .insight-hire-box-left .image-text {
        display: none;
    }

    .insight-hire-box.style02 .insight-hire-box-right {
        background-color: #333333;
        padding: 60px;
        text-align: center;
    }
}

.insight-member {
    text-align: center;
}

.insight-member .insight-member-inner .insight-member-inner--image {
    margin-bottom: 30px;
}

.insight-member .insight-member-inner .insight-member-inner--image img {
    width: 200px;
    height: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.insight-member .insight-member-inner .insight-member-inner--name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.insight-member .insight-member-inner .insight-member-inner--info {
    position: relative;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
}

.insight-member .insight-member-inner .insight-member-inner--info .insight-member-inner--tagline {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: Merriweather;
    font-style: italic;
    color: #ccc;
    height: 24px;
    line-height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-member .insight-member-inner .insight-member-inner--info .insight-member-inner--socials {
    display: block;
    width: 100%;
    height: 24px;
    line-height: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-member .insight-member-inner .insight-member-inner--info .insight-member-inner--socials a {
    font-size: 0;
    margin: 0 10px;
}

.insight-member .insight-member-inner .insight-member-inner--info .insight-member-inner--socials a i {
    font-size: 16px;
}

.insight-member:hover .insight-member-inner .insight-member-inner--info .insight-member-inner--tagline {
    top: -100%;
}

.insight-member:hover .insight-member-inner .insight-member-inner--info .insight-member-inner--socials {
    top: 0;
}

.insight-member-info .member-info {
    display: table;
}

.insight-member-info .member-info .line {
    display: table-row;
}

.insight-member-info .member-info .line .name {
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    display: table-cell;
    padding: 10px 0;
}

.insight-member-info .member-info .line .value {
    display: table-cell;
    padding: 10px 0 10px 40px;
}

.insight-member-info .member-info .line .value.socials a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid #cdcdcd;
    color: #cdcdcd;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    margin-right: 10px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.insight-member-info .member-info .line .value.socials a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
    color: #fff;
}

.insight-member-skill .title {
    font-size: 40px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    line-height: 1.2em;
    margin-bottom: 40px;
    position: relative;
}

.insight-member-skill .title:before {
    content: '';
    width: 10px;
    height: 20px;
    background-color: #da0e2b;
    position: absolute;
    left: -40px;
    top: -20px;
    -ms-transform: matrix(1, 0.45, 0, 1, 0, 0);
    /* IE 9 */
    -webkit-transform: matrix(1, 0.45, 0, 1, 0, 0);
    /* Safari */
    transform: matrix(1, 0.45, 0, 1, 0, 0);
    /* Standard syntax */
}

.insight-member-skill .skills .skill {
    display: block;
    width: 100%;
    padding: 10px 0;
}

.insight-member-skill .skills .skill .name {
    display: block;
    font-size: 12px;
    font-family: Montserrat;
    color: #ababab;
    text-transform: uppercase;
}

.insight-member-skill .skills .skill .bar {
    display: block;
    width: 100%;
    height: 10px;
    padding: 1px 70px 1px 0;
    position: relative;
}

.insight-member-skill .skills .skill .bar .line {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
}

.insight-member-skill .skills .skill .bar .line .line-inner {
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #da0e2b;
    width: 0px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-member-skill .skills .skill .bar .value {
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    position: absolute;
    right: 0;
    top: 0;
}

.insight-button.align-none {
    display: inline-block;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .insight-button.align-none {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.insight-button.align-left {
    text-align: left;
}

.insight-button.align-center {
    text-align: center;
}

.insight-button.align-right {
    text-align: right;
}

.insight-button a {
    overflow: hidden;
}

.insight-button.style01 a {
    display: inline-block;
    background-color: #da0e2b;
    color: #fff;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 46px;
    height: 48px;
    border: 1px solid #da0e2b;
    padding: 0 20px;
}

.insight-button.style01 a:hover {
    background-color: transparent;
    color: #da0e2b;
}

.insight-button.style02 i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    background-color: #da0e2b;
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
    vertical-align: middle;
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-button.style02 a {
    display: inline-block;
    vertical-align: middle;
    color: #333333;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1;
    padding-bottom: 5px;
    border-bottom: 2px solid #333333;
}

.insight-button.style02:hover i {
    background-color: #333333;
}

.insight-button.style02.no-underline a {
    padding-bottom: 0;
    border-bottom: none;
}

.insight-button.style03 .image {
    display: block;
    margin-bottom: 10px;
}

.insight-button.style03 .image img {
    display: inline-block;
}

.insight-button.style03 a {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: #333333;
    display: inline-block;
    text-transform: uppercase;
    padding-bottom: 5px;
    line-height: 1;
    border-bottom: 2px solid #333333;
}

.insight-button.style03 a:hover {
    color: #da0e2b;
    border-bottom-color: #da0e2b;
}

.insight-button.style04 a {
    display: inline-block;
    background-color: transparent;
    color: #da0e2b;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 46px;
    height: 48px;
    border: 1px solid #da0e2b;
    padding: 0 40px;
}

.insight-button.style04 a:hover {
    background-color: #da0e2b;
    color: #fff;
}

.insight-button.style04.btn-white a {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.insight-button.style04.btn-white a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
}

.insight-project-title {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.insight-project-title .title {
    font-size: 40px;
    font-family: Merriweather;
    font-weight: 400;
    color: #333333;
}

.insight-project-title .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.insight-project-title .category a:last-child {
    margin-right: 0;
}

.insight-project-title .category a:hover {
    color: #da0e2b;
}

.insight-project-title .meta {
    margin-top: 20px;
    color: #696969;
}

.insight-project-title .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-project-title .meta > span a {
    color: #696969;
}

.insight-project-title .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-title .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-title .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-project-title .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-project-title .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-project-title .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-title .meta > span:last-child {
    margin-right: 0;
}

.insight-project-title.style02 {
    text-align: center;
}

.insight-project-info.style01 {
    display: block;
    width: 100%;
    padding: 50px 30px;
    background-color: #f6f7f7;
}

.insight-project-info.style01 .info-item {
    display: block;
    margin-bottom: 40px;
}

.insight-project-info.style01 .info-item .title {
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.insight-project-info.style01 .info-item .content {
    font-size: 14px;
    color: #696969;
}

.insight-project-info.style01 .info-item:last-child {
    margin-bottom: 0;
}

.insight-project-info.style02 {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
}

.insight-project-info.style02 .info-item {
    display: block;
    padding: 0 15px;
    outline: none;
}

.insight-project-info.style02 .info-item .info-item-inner {
    padding: 30px;
    background-color: #f6f7f7;
}

.insight-project-info.style02 .info-item .info-item-inner .title {
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.insight-project-info.style02 .info-item .info-item-inner .content {
    font-size: 14px;
    color: #696969;
}

.insight-project-info.style02 .slick-dots {
    position: relative;
    margin: 0 auto;
    bottom: auto;
}

.insight-project-info.style02 .slick-dots li {
    margin: 0;
}

.insight-project-info.style02 .slick-dots li button:before {
    font-size: 8px;
}

.insight-project-video {
    overflow: hidden;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-project-video a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.insight-project-video a:before {
    content: '';
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #da0e2b;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 97;
}

.insight-project-video a:after {
    content: '\f215';
    font-family: Ionicons;
    color: #fff;
    font-size: 24px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background-color: #da0e2b;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
}

.insight-project-video a img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 96;
}

.insight-project-video a .time {
    font-size: 14px;
    font-weight: 400;
    font-family: Montserrat;
    color: #fff;
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: inline-block;
    line-height: 1;
}

.insight-project-video:hover img {
    transform: scale(1.1);
}

.insight-project-related {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.insight-project-related .related-title {
    font-size: 24px;
    font-weight: 700;
    font-family: Merriweather;
    color: #333333;
    position: relative;
}

.insight-project-related .related-title:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.insight-project-related .slick-list {
    padding-bottom: 30px;
}

.insight-project-related .slick-dots {
    position: relative;
    margin: 0 auto;
    bottom: auto;
}

.insight-project-related .slick-dots li {
    margin: 0;
}

.insight-project-related .slick-dots li button:before {
    font-size: 8px;
}

.insight-project-related .slick-arrow {
    top: -90px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: 50px;
    height: 40px;
    border: 2px solid #eff0f2;
    line-height: 36px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-related .slick-arrow:before {
    color: #696969;
    font-size: 18px;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-related .slick-arrow:hover {
    color: #da0e2b;
}

.insight-project-related .slick-arrow:hover:before {
    color: #da0e2b;
}

.insight-project-related .slick-arrow.slick-next {
    left: auto;
    right: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 20px;
}

.insight-project-related .slick-arrow.slick-next:before {
    content: '\f3d1';
    font-family: Ionicons;
}

.insight-project-related .slick-arrow.slick-prev {
    left: auto;
    right: 65px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
    border-right: 1px solid #eff0f2;
}

.insight-project-related .slick-arrow.slick-prev:before {
    content: '\f3cf';
    font-family: Ionicons;
}

.insight-project-related .items {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 50px;
    margin-bottom: 0;
}

.insight-project-related .items .item {
    padding: 0 15px;
    outline: none;
}

.insight-project-related .items .item .item-inner {
    display: block;
    width: 100%;
    background-color: #fff;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.insight-project-related .items .item .item-inner .thumb {
    overflow: hidden;
}

.insight-project-related .items .item .item-inner .thumb img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-related .items .item .item-inner .info {
    padding: 15px 30px;
}

.insight-project-related .items .item .item-inner .info .title a {
    font-size: 18px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
}

.insight-project-related .items .item .item-inner .info .title a:hover {
    color: #da0e2b;
}

.insight-project-related .items .item .item-inner .info .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.insight-project-related .items .item .item-inner .info .category a:hover {
    color: #da0e2b;
}

.insight-project-related .items .item .item-inner:hover .thumb img {
    transform: scale(1.1);
}

.insight-project-comment #comments {
    margin-top: 0;
}

.insight-project-comment #comments .comment-respond {
    margin-top: 0;
}

.insight-project-comment #comments #reply-title {
    font-family: Merriweather;
}

.insight-project-masonry {
    display: block;
    position: relative;
}

.insight-project-masonry .insight-filter {
    display: block;
    position: absolute;
    top: 200px;
    left: 0;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

.insight-project-masonry .insight-filter ul {
    margin: 0;
    padding: 0;
    transform: translate(-100%, -140px);
    padding-left: 0;
}

.insight-project-masonry .insight-filter ul li {
    display: inline;
}

@media (max-width: 768px) {
    .insight-project-masonry .insight-filter ul li {
        display: block;
        padding: 5px;
    }

    .insight-project-masonry .insight-filter ul li:before {
        display: none !important;
    }
}

.insight-project-masonry .insight-filter ul li a {
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    padding: 7px 20px;
    font-weight: bold;
    border: 1px solid transparent;
    cursor: pointer;
}

.insight-project-masonry .insight-filter ul li a.active {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-project-masonry .insight-filter ul li a.active:hover {
    background-color: transparent;
}

.insight-project-masonry .insight-filter ul li a:hover {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-project-masonry .insight-filter ul li:first-child:before {
    display: none;
}

.insight-project-masonry .insight-filter ul li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 10px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb {
    position: relative;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span a {
    color: #696969;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span:last-child {
    margin-right: 0;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info {
    padding: 20px 0 60px 0;
    text-align: center;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info .title a {
    font-size: 24px;
    font-weight: 400;
    color: #333333;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info .title a:hover {
    color: #da0e2b;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info .category a:hover {
    color: #da0e2b;
}

.insight-project-masonry .insight-filter-items .insight-filter-item .item-inner .info .category a:last-child {
    margin-right: 0;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-1, .insight-project-masonry .insight-filter-items .insight-filter-item.item-11 {
    padding-top: 100px;
    padding-right: 100px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-2, .insight-project-masonry .insight-filter-items .insight-filter-item.item-12 {
    padding-right: 200px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-3, .insight-project-masonry .insight-filter-items .insight-filter-item.item-8 {
    padding-top: 200px;
    padding-right: 100px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-5, .insight-project-masonry .insight-filter-items .insight-filter-item.item-10 {
    padding-left: 100px;
    padding-top: 100px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-6 {
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.item-7 {
    padding-right: 100px;
}

.insight-project-masonry .insight-filter-items .insight-filter-item.insight-hide {
    opacity: .2;
    transform: scale(0.5);
}

.insight-project-masonry .insight-filter-items .insight-filter-item:hover .item-inner .thumb {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-project-masonry .insight-filter-items .insight-filter-item:hover .item-inner .thumb img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .insight-project-masonry .insight-filter {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 30px;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .insight-project-masonry .insight-filter ul {
        transform: translate(0, 0);
    }

    .insight-project-masonry .insight-filter ul li {
        padding: 5px 0;
    }

    .insight-project-masonry .insight-filter ul li a {
        display: block;
        text-align: center;
    }

    .insight-project-masonry .insight-filter-items .insight-filter-item {
        padding: 0 15px !important;
    }
}

.insight-project-filter {
    display: block;
    position: relative;
}

.insight-project-filter .insight-filter {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

.insight-project-filter .insight-filter ul {
    margin: 0;
    padding: 0;
    transform: translate(-100%, -140px);
}

.insight-project-filter .insight-filter ul li {
    display: inline-block;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .insight-project-filter .insight-filter ul li {
        display: block;
        padding: 5px;
    }

    .insight-project-filter .insight-filter ul li:before {
        display: none !important;
    }
}

.insight-project-filter .insight-filter ul li a {
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    padding: 7px 20px;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
}

.insight-project-filter .insight-filter ul li a.active {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-project-filter .insight-filter ul li a.active:hover {
    background-color: transparent;
}

.insight-project-filter .insight-filter ul li a:hover {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-project-filter .insight-filter ul li:first-child:before {
    display: none;
}

.insight-project-filter .insight-filter-items .insight-filter-item {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb {
    position: relative;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span a {
    color: #696969;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .thumb .meta > span:last-child {
    margin-right: 0;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info {
    padding: 20px 0 60px 0;
    text-align: center;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info .title a {
    font-size: 24px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info .title a:hover {
    color: #da0e2b;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info .category a:hover {
    color: #da0e2b;
}

.insight-project-filter .insight-filter-items .insight-filter-item .item-inner .info .category a:last-child {
    margin-right: 0;
}

.insight-project-filter .insight-filter-items .insight-filter-item.insight-hide {
    opacity: .2;
    transform: scale(0.5);
}

.insight-project-filter .insight-filter-items .insight-filter-item:hover .item-inner .thumb {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-project-filter .insight-filter-items .insight-filter-item:hover .item-inner .thumb img {
    transform: scale(1.1);
}

.insight-project-filter.filter-position-top .insight-filter {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 60px;
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
}

.insight-project-filter.filter-position-top .insight-filter ul {
    display: flex;
    justify-content: center;
    transform: translate(0, 0);
    text-align: center;
}

.insight-project-filter.filter-position-top .insight-filter ul li.filter-item {
    order: 2;
    margin: 0 5px;
}

.insight-project-filter.filter-position-top .insight-filter ul li.filter-item:before {
    display: none;
}

.insight-project-filter.filter-position-top .insight-filter ul li.filter-item.filter-all {
    order: 1;
}

@media (max-width: 768px) {
    .insight-project-filter .insight-filter {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 30px !important;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .insight-project-filter .insight-filter ul {
        display: flex !important;
        flex-direction: column;
        transform: translate(0, 0);
    }

    .insight-project-filter .insight-filter ul li.filter-item {
        margin: 5px 0 !important;
        padding: 0 !important;
        order: 2;
    }

    .insight-project-filter .insight-filter ul li.filter-item:before {
        display: none;
    }

    .insight-project-filter .insight-filter ul li.filter-item a {
        display: block;
        text-align: center;
    }

    .insight-project-filter .insight-filter ul li.filter-item.filter-all {
        order: 1;
    }

    .insight-project-filter .insight-filter-items .insight-filter-item {
        padding: 0 15px !important;
    }
}

.insight-project-carousel > div {
    padding-bottom: 30px !important;
}

.insight-project-carousel .insight-project-carousel-item {
    outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-carousel .insight-project-carousel-item .insight-project-carousel-item-inner {
    display: block;
    width: 100%;
    background-color: #696969;
    transform: scale(0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-carousel .insight-project-carousel-item .info {
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-carousel .insight-project-carousel-item .info .title a {
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.2em;
}

.insight-project-carousel .insight-project-carousel-item .info .title a:hover {
    color: #da0e2b;
}

.insight-project-carousel .insight-project-carousel-item .info .category {
    font-size: 14px;
    color: #696969;
    line-height: 36px;
    font-style: italic;
}

.insight-project-carousel .insight-project-carousel-item .info .category a {
    margin-left: 5px;
    margin-right: 5px;
}

.insight-project-carousel .insight-project-carousel-item.slick-slide {
    width: 840px;
}

.insight-project-carousel .insight-project-carousel-item.slick-slide img {
    width: 100%;
    opacity: .5;
}

.insight-project-carousel .insight-project-carousel-item.slick-slide.slick-center .info {
    opacity: 1;
}

.insight-project-carousel .insight-project-carousel-item.slick-slide.slick-center .insight-project-carousel-item-inner {
    transform: scale(1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.insight-project-carousel .insight-project-carousel-item.slick-slide.slick-center .insight-project-carousel-item-inner img {
    opacity: 1;
}

.insight-project-carousel .slick-dots {
    margin-bottom: 0;
}

.insight-project-carousel .slick-dots li {
    margin: 0;
}

.insight-project-carousel .slick-dots li button:before {
    font-size: 8px;
}

@media (max-width: 768px) {
    .insight-project-carousel > div {
        padding-bottom: 0px !important;
    }

    .insight-project-carousel .insight-project-carousel-item .insight-project-carousel-item-inner {
        transform: scale(1);
        -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .insight-project-carousel .insight-project-carousel-item .insight-project-carousel-item-inner img {
        opacity: 1 !important;
    }
}

.insight-project-justified {
    display: block;
    width: 100%;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner {
    position: relative;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner .thumb {
    overflow: hidden;
    z-index: 6;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner .thumb img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner .title {
    position: absolute;
    display: block;
    text-align: center;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 8;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner .title a {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner .title a:before {
    content: '\f488';
    font-family: Ionicons;
    display: block;
    font-size: 40px;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item .item-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #da0e2b;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    opacity: 0;
    z-index: 7;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item:hover .item-inner .thumb img {
    transform: scale(1.1);
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item:hover .item-inner .title {
    top: 50%;
    opacity: 1;
}

.insight-project-justified .insight-project-justified-items .insight-project-justified-item:hover .item-inner:before {
    opacity: .9;
}

.insight-project-featured {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.insight-project-featured .image {
    position: relative;
    overflow: hidden;
    z-index: 7;
}

.insight-project-featured .image img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-featured .image:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 7;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-featured .info {
    position: absolute;
    top: 60%;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    z-index: 8;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-project-featured .info .category a {
    font-size: 14px;
    font-family: Merriweather;
    font-style: italic;
    color: #fff;
    font-weight: 400;
}

.insight-project-featured .info .category a:hover {
    color: #da0e2b;
}

.insight-project-featured .info .title {
    font-size: 24px;
    font-family: Merriweather;
    color: #fff;
    font-weight: 400;
    margin-bottom: 90px;
}

.insight-project-featured .info .more a {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    color: #da0e2b;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    line-height: 1;
}

.insight-project-featured .info .more a:hover {
    border-color: #da0e2b;
}

.insight-project-featured:hover .image:before {
    opacity: 1;
}

.insight-project-featured:hover .info {
    top: 50%;
    opacity: 1;
}

.insight-our-services {
    display: block;
}

.insight-our-services.type-icon .col-icon {
    z-index: 97;
}

.insight-our-services.type-icon .col-icon .icon {
    width: 100%;
    min-height: 255px;
    background-color: #fff;
    color: #da0e2b;
    font-size: 100px;
    text-align: center;
    -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
}

.insight-our-services.type-icon .col-icon .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.insight-our-services.type-icon .col-text {
    z-index: 96;
}

.insight-our-services.type-icon .col-text .text {
    background-color: #f6f7f7;
    padding: 40px 70px;
    min-height: 270px;
    position: relative;
}

.insight-our-services.type-icon .col-text .text:before {
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100px;
    background-color: #f6f7f7;
}

.insight-our-services.type-icon .col-text .text .title {
    font-family: Merriweather;
    font-weight: 400;
    font-size: 24px;
    color: #333333;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-our-services.type-icon .col-text .text .content {
    font-family: Lato;
    font-size: 15px;
    color: #696969;
    line-height: 1.7;
    display: block;
    margin-top: 20px;
}

.insight-our-services.type-icon.style-right .col-icon {
    order: 1;
}

.insight-our-services.type-icon.style-right .col-icon .icon {
    margin-top: 50px;
}

.insight-our-services.type-icon.style-right .col-text .text {
    padding: 40px 70px 40px 100px;
}

.insight-our-services.type-icon.style-right .col-text .text:before {
    left: auto;
    right: -100px;
}

.insight-our-services.type-icon.color-white .col-icon .icon {
    background-color: #fff;
    color: #da0e2b;
}

.insight-our-services.type-icon.color-primary .col-icon .icon {
    background-color: #da0e2b;
    color: #fff;
}

.insight-our-services.type-icon.color-black .col-icon .icon {
    background-color: #333333;
    color: #da0e2b;
}

.insight-our-services.type-icon:hover .col-text .text .title {
    color: #da0e2b;
}

.insight-our-services.type-image {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-our-services.type-image .col-image {
    z-index: 96;
    padding-right: 0;
}

.insight-our-services.type-image .col-image img {
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.insight-our-services.type-image .col-text {
    z-index: 97;
}

.insight-our-services.type-image .col-text .text {
    background-color: #fff;
    padding: 40px;
}

.insight-our-services.type-image .col-text .text .title {
    font-family: Merriweather;
    font-weight: 400;
    font-size: 24px;
    color: #333333;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-our-services.type-image .col-text .text .title:before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #da0e2b;
    display: block;
    position: absolute;
    top: 50%;
    left: -85px;
}

.insight-our-services.type-image .col-text .text .content {
    font-family: Lato;
    font-size: 15px;
    color: #696969;
    line-height: 1.7;
    display: block;
    margin-top: 20px;
}

.insight-our-services.type-image.style-right .col-image {
    order: 1;
    padding-right: 15px;
    padding-left: 0;
}

.insight-our-services.type-image.style-right .col-text {
    text-align: right;
}

.insight-our-services.type-image.style-right .col-text .title:before {
    left: auto;
    right: -85px;
}

.insight-our-services.type-image:hover {
    -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.insight-our-services.type-image:hover .col-image img {
    -webkit-filter: grayscale(0%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.insight-our-services.type-image:hover .col-text .text .title {
    color: #da0e2b;
}

@media (max-width: 768px) {
    .insight-our-services.type-icon .insight-our-services-inner .col-icon {
        order: 0;
    }

    .insight-our-services.type-icon .insight-our-services-inner .col-icon .icon {
        margin-top: 0;
    }

    .insight-our-services.type-icon .insight-our-services-inner .col-text .text {
        padding: 20px 30px;
    }

    .insight-our-services.type-icon .insight-our-services-inner .col-text .text:before {
        display: none;
    }

    .insight-our-services.type-image .insight-our-services-inner .col-image {
        order: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .insight-our-services.type-image .insight-our-services-inner .col-text {
        text-align: left;
    }

    .insight-our-services.type-image .insight-our-services-inner .col-text .text {
        padding: 20px 30px;
    }

    .insight-our-services.type-image .insight-our-services-inner .col-text .text .title:before {
        display: none;
    }
}

.insight-our-services-list .big-title {
    font-family: Merriweather;
    font-size: 40px;
    font-weight: 400;
    color: #333333;
}

.insight-our-services-list .big-title a {
    font-family: Merriweather;
    font-size: 40px;
    font-weight: 400;
    color: #333333;
    position: relative;
}

.insight-our-services-list .big-title a:after {
    position: absolute;
    right: -130px;
    top: 50%;
    content: '\f30f';
    font-family: Ionicons;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    font-weight: 400;
    color: #da0e2b;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    display: inline-block;
    border: 2px solid #f0f0f0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    transform: translateY(-50%);
}

.insight-our-services-list .big-title a:hover {
    color: #da0e2b;
}

.insight-our-services-list .big-title a:hover:after {
    border-color: #da0e2b;
    background-color: #da0e2b;
    color: #fff;
}

.insight-our-services-list .items .item {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding-left: 50px;
    position: relative;
}

.insight-our-services-list .items .item .number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: Montserrat;
    color: #da0e2b;
    opacity: .5;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.insight-our-services-list .items .item .title {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Montserrat;
    color: #333333;
}

.insight-our-services-list .items .item .content {
    margin-top: 10px;
    display: block;
}

.insight-home-services {
    color: #fff;
}

.insight-home-services .icon {
    font-size: 36px;
}

.insight-home-services .title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    text-transform: uppercase;
}

.insight-home-services .links {
    margin-top: 15px;
}

.insight-home-services .links a {
    display: block;
    color: #ababab;
    font-size: 14px;
    line-height: 1;
    margin-top: 15px;
}

.insight-home-services .links a:hover {
    color: #da0e2b;
    text-decoration: underline;
}

.insight-home-services.align-left {
    text-align: left;
}

.insight-home-services.align-center {
    text-align: center;
}

.insight-home-services.align-right {
    text-align: right;
}

.insight-home-services.color-white {
    color: #fff;
}

.insight-home-services.color-white a {
    color: #ababab;
}

.insight-home-services.color-white a:hover {
    color: #da0e2b;
}

.insight-home-services.color-primary {
    color: #da0e2b;
}

.insight-home-services.color-primary a {
    color: #da0e2b;
}

.insight-home-services.color-black {
    color: #333333;
}

.insight-home-services.color-black a {
    color: #333333;
}

.insight-home-blog .blog-wrap {
    background-color: #f6f7f7;
    overflow: hidden;
}

.insight-home-blog .blog-wrap .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
}

.insight-home-blog .blog-wrap .col-quote {
    position: relative;
    background-image: url("assets/images/quote_bg_01.png");
    background-repeat: no-repeat;
    background-position: 100% 110%;
}

.insight-home-blog .blog-wrap .col-quote img {
    z-index: 96;
    opacity: 0;
}

.insight-home-blog .blog-wrap .col-quote .text {
    padding: 30px;
    position: absolute;
    z-index: 97;
    top: 0;
}

.insight-home-blog .blog-wrap .col-quote .text .title:before {
    content: '«';
    display: inline-block;
    margin-right: 10px;
}

.insight-home-blog .blog-wrap .col-quote .text .title:after {
    content: '»';
    display: inline-block;
    margin-left: 10px;
}

.insight-home-blog .blog-wrap .col-image {
    position: relative;
}

.insight-home-blog .blog-wrap .col-image .image {
    z-index: 96;
    overflow: hidden;
}

.insight-home-blog .blog-wrap .col-image .image img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-home-blog .blog-wrap .col-image .video-play {
    z-index: 97;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.insight-home-blog .blog-wrap .col-image .video-play:before {
    content: '';
    width: 70px;
    height: 70px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    background-color: #da0e2b;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 97;
}

.insight-home-blog .blog-wrap .col-image .video-play:after {
    content: '\f215';
    font-family: Ionicons;
    color: #fff;
    font-size: 18px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    background-color: #da0e2b;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
}

.insight-home-blog .blog-wrap .time {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
}

.insight-home-blog .blog-wrap .title {
    font-size: 18px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
    line-height: 28px;
    margin-top: 20px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-home-blog .blog-wrap .meta {
    margin-top: 20px;
    color: #696969;
    font-size: 14px;
}

.insight-home-blog .blog-wrap .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-home-blog .blog-wrap .meta > span a {
    color: #696969;
}

.insight-home-blog .blog-wrap .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-home-blog .blog-wrap .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-home-blog .blog-wrap .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-home-blog .blog-wrap .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-home-blog .blog-wrap .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-home-blog .blog-wrap .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-home-blog .blog-wrap .meta > span:last-child {
    margin-right: 0;
}

.insight-home-blog .blog-wrap.blog-01 {
    margin-bottom: 30px;
}

.insight-home-blog .blog-wrap.blog-01 .col-image .image {
    position: relative;
}

.insight-home-blog .blog-wrap.blog-01 .col-image .image:before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #f6f7f7;
    border-right: 15px solid #f6f7f7;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;
}

.insight-home-blog .blog-wrap.blog-01 .col-text {
    padding-right: 30px;
}

@media (max-width: 768px) {
    .insight-home-blog .blog-wrap.blog-01 .col-image .image {
        position: relative;
    }

    .insight-home-blog .blog-wrap.blog-01 .col-image .image:before {
        border-top: 15px solid transparent;
        border-left: 15px solid transparent;
        border-bottom: 15px solid #f6f7f7;
        border-right: 15px solid #f6f7f7;
        top: auto;
        bottom: 0;
        right: 0;
    }
}

.insight-home-blog .blog-wrap.blog-02 {
    height: 100%;
}

.insight-home-blog .blog-wrap.blog-02 .col-image .image {
    position: relative;
}

.insight-home-blog .blog-wrap.blog-02 .col-image .image:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #f6f7f7;
    border-right: 15px solid #f6f7f7;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 8;
}

.insight-home-blog .blog-wrap.blog-02 .col-text {
    padding: 30px 45px;
}

.insight-home-blog .blog-wrap.blog-04 .col-image img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.insight-home-blog .blog-wrap:hover .col-image .image img {
    transform: scale(1.1);
}

.insight-home-blog .blog-wrap:hover .col-text .title {
    color: #da0e2b;
}

.insight-home-blog .blog-wrap:hover .col-quote .text .title {
    color: #da0e2b;
}

@media (max-width: 768px) {
    .insight-home-blog .blog-wrap {
        margin-bottom: 30px;
    }

    .insight-home-blog .blog-wrap .col-text {
        padding: 30px 45px;
    }
}

.insight-one-page .insight-one-page-item {
    padding: 100px 50px 80px 50px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text {
    max-width: 610px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 97;
    transform: translate(-100%, -50%);
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .time {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    color: #696969;
    text-transform: uppercase;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .title {
    font-size: 80px;
    font-weight: 700;
    font-family: Merriweather;
    color: #fff;
    line-height: 1;
    margin-top: 20px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta {
    margin-top: 20px;
    font-size: 14px;
    color: #ababab;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span a {
    color: #696969;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.like a.liked:before {
    content: '\f388';
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .text .meta > span:last-child {
    margin-right: 0;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 96;
    transform: translate(0%, -50%);
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video .video-inner {
    position: relative;
    overflow: hidden;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video .video-inner .video-play {
    z-index: 97;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video .video-inner .video-play:before {
    content: '';
    width: 70px;
    height: 70px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    background-color: #da0e2b;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 97;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video .video-inner .video-play:after {
    content: '\f215';
    font-family: Ionicons;
    color: #fff;
    font-size: 18px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    background-color: #da0e2b;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video .video-inner img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-one-page .insight-one-page-item .insight-one-page-item-inner .video:hover .video-inner img {
    transform: scale(1.1);
}

.insight-gallery-carousel > div {
    padding-bottom: 30px !important;
}

.insight-gallery-carousel .insight-gallery-carousel-item {
    outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-gallery-carousel .insight-gallery-carousel-item .insight-gallery-carousel-item-inner {
    display: block;
    width: 100%;
    background-color: #696969;
    transform: scale(0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-gallery-carousel .insight-gallery-carousel-item.slick-slide {
    width: 840px;
}

.insight-gallery-carousel .insight-gallery-carousel-item.slick-slide img {
    width: 100%;
    opacity: .5;
}

.insight-gallery-carousel .insight-gallery-carousel-item.slick-slide.slick-center .insight-gallery-carousel-item-inner {
    transform: scale(1);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.insight-gallery-carousel .insight-gallery-carousel-item.slick-slide.slick-center .insight-gallery-carousel-item-inner img {
    opacity: 1;
}

.insight-gallery-carousel .slick-list {
    z-index: 98;
}

.insight-gallery-carousel .slick-prev, .insight-gallery-carousel .slick-next {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    background: none;
    border-radius: 0;
    z-index: 99;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-gallery-carousel .slick-prev:hover, .insight-gallery-carousel .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.insight-gallery-carousel .slick-prev:before, .insight-gallery-carousel .slick-next:before {
    font-size: 20px;
    font-weight: 400;
    font-family: Ionicons;
    opacity: 1;
}

.insight-gallery-carousel .slick-prev:hover, .insight-gallery-carousel .slick-next:hover {
    opacity: 1;
}

.insight-gallery-carousel .slick-prev {
    left: 30px;
}

.insight-gallery-carousel .slick-prev:before {
    content: '\f3d2';
}

.insight-gallery-carousel .slick-next {
    right: 30px;
}

.insight-gallery-carousel .slick-next:before {
    content: '\f3d3';
}

.insight-gallery-carousel .slick-dots {
    margin-bottom: 0;
}

.insight-gallery-carousel .slick-dots li {
    margin: 0;
}

.insight-gallery-carousel .slick-dots li button:before {
    font-size: 8px;
}

@media (max-width: 768px) {
    .insight-gallery-carousel > div {
        padding-bottom: 0px !important;
    }

    .insight-gallery-carousel .insight-gallery-carousel-item .insight-gallery-carousel-item-inner {
        transform: scale(1);
        -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }

    .insight-gallery-carousel .insight-gallery-carousel-item .insight-gallery-carousel-item-inner img {
        opacity: 1 !important;
    }
}

.insight-gallery-fullscreen {
    position: relative;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item {
    display: block;
    position: absolute;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item.insight-gallery-fullscreen-item-1 {
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item.insight-gallery-fullscreen-item-2 {
    width: 25%;
    height: 50%;
    top: 0;
    left: 50%;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item.insight-gallery-fullscreen-item-3 {
    width: 25%;
    height: 50%;
    top: 0;
    left: 75%;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item.insight-gallery-fullscreen-item-4 {
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item .insight-gallery-fullscreen-item-inner {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: .5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item .insight-gallery-fullscreen-item-inner a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item .insight-gallery-fullscreen-item-inner a img {
    display: none;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item .insight-gallery-fullscreen-item-inner a:before {
    display: block;
    content: '\f14d';
    font-family: FontAwesome;
    font-size: 20px;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item:hover .insight-gallery-fullscreen-item-inner {
    opacity: 1;
}

.insight-gallery-fullscreen .insight-gallery-fullscreen-item:hover .insight-gallery-fullscreen-item-inner a:before {
    top: 50%;
    opacity: 1;
}

@media (max-width: 991px) {
    .insight-gallery-fullscreen .insight-gallery-fullscreen-item {
        position: relative;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
    }

    .insight-gallery-fullscreen .insight-gallery-fullscreen-item .insight-gallery-fullscreen-item-inner a img {
        display: inline-block;
        width: 100%;
        height: auto;
    }
}

.insight-image-carousel {
    margin-bottom: 0;
}

.insight-image-carousel .insight-image-carousel-item {
    outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-image-carousel .insight-image-carousel-item.slick-slide {
    width: 100%;
}

.insight-image-carousel .insight-image-carousel-item.slick-slide img {
    width: 100%;
}

.insight-image-carousel .slick-list {
    z-index: 98;
}

.insight-image-carousel .slick-prev, .insight-image-carousel .slick-next {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    background: none;
    border-radius: 0;
    z-index: 99;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-image-carousel .slick-prev:hover, .insight-image-carousel .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.insight-image-carousel .slick-prev:before, .insight-image-carousel .slick-next:before {
    font-size: 20px;
    font-weight: 400;
    font-family: Ionicons;
    opacity: 1;
}

.insight-image-carousel .slick-prev:hover, .insight-image-carousel .slick-next:hover {
    opacity: 1;
}

.insight-image-carousel .slick-prev {
    left: 30px;
}

.insight-image-carousel .slick-prev:before {
    content: '\f3d2';
}

.insight-image-carousel .slick-next {
    right: 30px;
}

.insight-image-carousel .slick-next:before {
    content: '\f3d3';
}

.insight-image-carousel .slick-dots {
    margin-top: 0;
    margin-bottom: 0;
    bottom: -30px;
}

.insight-image-carousel .slick-dots li {
    margin: 0;
}

.insight-image-carousel .slick-dots li button:before {
    font-size: 8px;
}

.insight-video {
    overflow: hidden;
}

.insight-video a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.insight-video a:before {
    content: '';
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background-color: #da0e2b;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 97;
}

.insight-video a:after {
    content: '\f215';
    font-family: Ionicons;
    color: #fff;
    font-size: 24px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background-color: #da0e2b;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
}

.insight-video a img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 96;
}

.insight-video a .time {
    font-size: 14px;
    font-weight: 400;
    font-family: Montserrat;
    color: #fff;
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: inline-block;
    line-height: 1;
}

.insight-video:hover img {
    transform: scale(1.1);
}

.insight-video.style01 {
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.insight-video-button {
    display: block;
    text-align: center;
}

.insight-video-button a {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url("assets/images/play.png");
    background-repeat: no-repeat;
    background-position: center;
}

.insight-video-button a:hover {
    opacity: .7;
}

.insight-icon {
    display: block;
    text-align: center;
    font-size: 50px;
    color: #da0e2b;
}

.insight-title {
    position: relative;
}

.insight-title.title-light .main-title, .insight-title.color-white .main-title {
    color: #fff;
}

.insight-title.title-light .title-desc, .insight-title.color-white .title-desc {
    color: #ababab;
}

.insight-title .main-title {
    font-size: 40px;
    font-family: Merriweather;
    font-weight: 400;
    letter-spacing: 0em;
    color: #333333;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
}

.insight-title .sub-title {
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: Montserrat;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.insight-title.text-left {
    text-align: left;
}

.insight-title.text-center {
    text-align: center;
}

.insight-title.text-right {
    text-align: right;
}

.insight-title.font-56 {
    padding-top: 30px;
}

.insight-title.font-56 .main-title {
    font-size: 56px;
}

.insight-title.font-48 .main-title {
    font-size: 48px;
}

.insight-title.font-secondary .main-title {
    font-family: Montserrat;
}

.insight-title.text-uppercase .main-title {
    text-transform: uppercase;
}

.insight-blog.style-01 .blog-classic-style {
    border: none !important;
    padding-bottom: 0 !important;
}

.insight-blog.style-01 .entry-desc .entry-more {
    margin-top: 10px;
}

.insight-blog.style-01 .entry-desc .entry-more a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 14px;
}

@media (min-width: 769px) {
    .insight-blog.style-01 .left {
        padding-right: 50px;
    }
}

.insight-blog.style-01 .left .entry-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .insight-blog.style-01 .left .blog-classic-style {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 769px) {
    .insight-blog.style-01 .right {
        padding-left: 50px;
    }
}

.insight-blog.style-01 .right .post-thumbnail:before {
    display: none !important;
}

@media (min-width: 769px) {
    .insight-blog.style-01 .right .entry-desc {
        padding-top: 0;
    }
}

.insight-blog.style-01 .right .entry-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.insight-blog.grid .entry-more {
    margin-top: 20px;
}

.insight-blog.grid .entry-more a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 14px;
}

.insight-blog.grid.blog-align-center {
    text-align: center;
}

@media (max-width: 991px) {
    .insight-blog.cake-style .blog-cake-style {
        margin-bottom: 50px;
    }
}

.insight-blog.cake-style .blog-cake-style .desc-content {
    position: relative;
    padding-left: 115px;
    margin-top: 30px;
}

.insight-blog.cake-style .blog-cake-style .desc-content .cat-list a {
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    color: #ababab;
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-title {
    margin-bottom: 20px;
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-content {
    margin-bottom: 16px;
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-meta {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #e0e0e0;
    border-radius: 100px;
    display: block;
    height: 85px;
    width: 85px;
    text-align: center;
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-meta:after {
    position: absolute;
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background-color: #e7e5e4;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-meta b {
    font-size: 34px;
    letter-spacing: 0.2em;
    display: block;
    line-height: 1.3;
}

.insight-blog.cake-style .blog-cake-style .desc-content .entry-meta i {
    font-size: 16px;
    letter-spacing: 0.2em;
}

.insight-blog.cake-style .blog-cake-style .entry-more a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 14px;
}

.insight-gallery .insight-gallery-item {
    cursor: pointer;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .insight-gallery .insight-gallery-item {
        height: auto !important;
    }
}

.insight-gallery .insight-pagination {
    margin-top: 50px;
}

.insight-gallery .insight-gallery-image {
    position: relative;
    max-height: 100%;
}

.insight-gallery .insight-gallery-image:hover .desc-wrap {
    opacity: 1;
}

.insight-gallery .insight-gallery-image img {
    width: 100%;
}

.insight-gallery .insight-gallery-image .desc-wrap {
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    -ms-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #262626;
    display: flex;
    align-items: flex-end;
}

.insight-gallery .insight-gallery-image .desc-wrap .desc {
    width: 100%;
    padding-bottom: 60px;
    padding-left: 25px;
    padding-right: 25px;
}

.insight-gallery .insight-gallery-image .desc-wrap:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #262626;
    opacity: .8;
}

.insight-gallery .insight-gallery-image .desc-wrap .title, .insight-gallery .insight-gallery-image .desc-wrap .cats, .insight-gallery .insight-gallery-image .desc-wrap .icon {
    position: relative;
    z-index: 2;
}

.insight-gallery .insight-gallery-image .desc-wrap .icon {
    font-size: 24px;
    font-weight: 400;
    color: #da0e2b;
}

.insight-gallery .insight-gallery-image .desc-wrap .title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.insight-gallery .insight-gallery-image .desc-wrap .title:after {
    content: "\f30f";
    font-family: "Ionicons";
    font-size: 18px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    float: right;
    margin-top: 4px;
    color: #da0e2b;
}

.insight-gallery .insight-gallery-image .desc-wrap .cats {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-gallery .pagination a {
    font-size: 14px;
    border: none;
}

.insight-gallery .pagination a:hover {
    background: none;
    color: #da0e2b;
}

.insight-gallery .pagination .page-numbers.current {
    border-radius: 50%;
    height: 40px;
}

.insight-gallery.gallery-v1 .insight-gallery-filter {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.insight-gallery.gallery-v1 .insight-gallery-images {
    margin-left: 0;
    margin-right: 0;
}

.insight-gallery.gallery-v1 .insight-gallery-item {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.insight-grid-filter, .insight-gallery-filter {
    margin-top: 32px;
    margin-bottom: 57px;
    text-align: left;
}

.insight-grid-filter ul, .insight-gallery-filter ul {
    padding-left: 0;
}

.insight-grid-filter ul li, .insight-gallery-filter ul li {
    display: inline;
}

@media (max-width: 768px) {
    .insight-grid-filter ul li, .insight-gallery-filter ul li {
        display: block;
        padding: 5px;
        text-align: center;
    }

    .insight-grid-filter ul li:before, .insight-gallery-filter ul li:before {
        display: none !important;
    }
}

.insight-grid-filter ul li a, .insight-gallery-filter ul li a {
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    padding: 7px 20px;
    font-weight: bold;
    border: 1px solid transparent;
}

.insight-grid-filter ul li a.active, .insight-gallery-filter ul li a.active {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-grid-filter ul li a.active:hover, .insight-gallery-filter ul li a.active:hover {
    background-color: transparent;
}

.insight-grid-filter ul li a:hover, .insight-gallery-filter ul li a:hover {
    color: #da0e2b;
    border-color: #da0e2b;
}

.insight-grid-filter ul li:first-child:before, .insight-gallery-filter ul li:first-child:before {
    display: none;
}

.insight-grid-filter ul li:before, .insight-gallery-filter ul li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    width: 10px;
}

.insight-social {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.insight-social li {
    margin-right: 10px;
}

.insight-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    font-size: 14px;
    color: #696969;
}

.insight-social a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
    color: #fff;
}

.insight-social-link a {
    color: #ABABAB;
    margin-right: 30px;
}

.insight-social-link a i {
    margin-right: 10px;
}

.insight-social-link a span {
    font-size: 15px;
    font-family: Montserrat;
}

.insight-social-link.style02 {
    text-align: center;
}

.insight-social-link.style02 a {
    margin: 0 10px;
}

.insight-social-link.style02 a i {
    display: none;
}

.insight-social-link.style02 a span {
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-social-link.style02 a:hover span {
    color: #da0e2b;
}

.insight-social-link.style02 a:after {
    content: '|';
    margin-left: 20px;
    color: #fff;
}

.insight-social-link.style02 a:last-child:after {
    display: none;
}

.insight-social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    color: #696969;
}

.insight-social-icons a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
    color: #fff !important;
}

.insight-social-icons.text-left a {
    margin-left: 0;
    margin-right: 10px;
}

.insight-social-icons.text-right a {
    margin-left: 10px;
    margin-right: 0;
}

.insight-social-icons.text-center a {
    margin-left: 5px;
    margin-right: 5px;
}

.insight-list-member {
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
}

.insight-list-member .item {
    display: inline-block;
    vertical-align: top;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
}

@media (max-width: 991px) {
    .insight-list-member .item {
        display: block;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .insight-list-member .item:nth-child(even) {
        margin-top: 110px;
    }

    .insight-list-member .item:nth-child(even) .info {
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 100%;
        white-space: nowrap;
        margin-right: 50px;
        left: auto;
        top: auto;
    }

    .insight-list-member .item:nth-child(even) .name:after {
        left: auto;
        right: -80px;
    }
}

@media (min-width: 769px) {
    .insight-list-member .item .info {
        position: absolute;
        top: 0;
        left: 100%;
        white-space: nowrap;
        margin-left: 50px;
    }
}

.insight-list-member .item .info {
    margin-top: 35px;
    margin-bottom: 20px;
}

.insight-list-member .item .name {
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    position: relative;
    display: inline-block;
}

@media (min-width: 769px) {
    .insight-list-member .item .name:after {
        position: absolute;
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background-color: #da0e2b;
        top: 50%;
        margin-top: -2px;
        left: -80px;
    }
}

.insight-list-member .item .tagline {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.1em;
    display: block;
}

.icon-boxes.light .icon-boxes--title {
    color: #fff;
}

.icon-boxes.light .icon-boxes--content {
    color: #ababab;
}

.icon-boxes--icon {
    font-size: 14px;
    color: #da0e2b;
}

.icon-boxes--icon i {
    padding: 8px;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-boxes--title {
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: .05em;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

.icon-boxes--content {
    color: #696969;
}

.icon-boxes.small_icon .icon-boxes--icon, .icon-boxes.small_icon .icon-boxes--title {
    display: inline-block;
}

.icon-boxes.small_icon .icon-boxes--title {
    text-transform: uppercase;
}

.icon-boxes.icon_on_top {
    text-align: center;
}

.icon-boxes.icon_on_top .icon-boxes--icon {
    font-size: 105px;
    padding-top: 50px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-boxes.icon_on_top .icon-boxes--title {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.icon-boxes.icon_on_top .icon-boxes--link {
    margin-top: 20px;
}

.icon-boxes.icon_on_top .icon-boxes--link a {
    font-size: 18px;
    font-weight: 700;
    color: #da0e2b;
    font-style: italic;
    padding-left: 4px;
    letter-spacing: .1em;
    line-height: 34px;
    border: 2px solid #f4f4f4;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.icon-boxes.icon_on_top .icon-boxes--link a:hover {
    border-color: #da0e2b;
    background-color: #da0e2b;
    color: #fff;
}

.icon-boxes.icon_on_top:hover .icon-boxes--icon i {
    margin-left: -20px;
}

.icon-boxes.icon_on_top:hover .icon-boxes--link a {
    border-color: #da0e2b;
    background-color: #da0e2b;
    color: #fff;
}

.icon-boxes.icon_on_top_2 {
    text-align: center;
}

.icon-boxes.icon_on_top_2 .icon-boxes--icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
    text-align: center;
    display: inline-block;
    color: #da0e2b;
    font-size: 60px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-boxes.icon_on_top_2 .icon-boxes--title {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.icon-boxes.icon_on_top_2 .icon-boxes--link {
    margin-top: 20px;
}

.icon-boxes.icon_on_top_2 .icon-boxes--link a {
    font-size: 18px;
    font-weight: 700;
    color: #da0e2b;
    font-style: italic;
    padding-left: 4px;
    letter-spacing: .1em;
    line-height: 34px;
    border: 2px solid #f4f4f4;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.icon-boxes.icon_on_top_2:hover .icon-boxes--icon {
    background-color: #da0e2b;
    color: #fff;
}

.icon-boxes.icon_on_top_2:hover .icon-boxes--link a {
    border-color: #da0e2b;
    background-color: #da0e2b;
    color: #fff;
}

.icon-boxes.icon_on_left {
    margin-bottom: 30px;
}

.icon-boxes.icon_on_left .icon-boxes--title {
    margin-top: 0;
    text-transform: uppercase;
}

.icon-boxes.icon_on_left .icon-boxes--icon {
    padding-right: 30px;
}

.icon-boxes.icon_on_left .icon-boxes--icon img {
    max-width: none;
}

.icon-boxes.icon_on_left .icon-boxes--icon i {
    padding: 13px;
    background-color: #f8f7f7;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-boxes.icon_on_left .icon-boxes--icon.text-icon {
    text-align: right;
    vertical-align: top;
}

.icon-boxes.icon_on_left .icon-boxes--icon.text-icon .inner {
    transform: rotate(-90deg);
    display: block;
    line-height: 1.4;
    font-weight: bold;
    font-size: 24px;
    opacity: .3;
}

.icon-boxes.icon_on_left .icon-boxes--icon, .icon-boxes.icon_on_left .icon-boxes--inner {
    display: table-cell;
    vertical-align: top;
}

.counter-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 1px;
    color: #00AEEF;
}

.counter-title {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0;
    color: #333;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value {
    text-align: center;
}

@media (max-width: 991px) {
    body .insight-counter {
        border: none !important;
    }
}

.duration-0s,
.duration-0s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-0s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-0s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-0s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 0s ease-in-out;
    -moz-transition: -moz-transform 0s ease-in-out;
    -ms-transition: -ms-transform 0s ease-in-out;
    -o-transition: -o-transform 0s ease-in-out;
    transition: transform 0s ease-in-out;
}

.duration-1s,
.duration-1s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-1s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-1s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-1s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 1s ease-in-out;
    -moz-transition: -moz-transform 1s ease-in-out;
    -ms-transition: -ms-transform 1s ease-in-out;
    -o-transition: -o-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.duration-2s,
.duration-2s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-2s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-2s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-2s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 2s ease-in-out;
    -moz-transition: -moz-transform 2s ease-in-out;
    -ms-transition: -ms-transform 2s ease-in-out;
    -o-transition: -o-transform 2s ease-in-out;
    transition: transform 2s ease-in-out;
}

.duration-3s,
.duration-3s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-3s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-3s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-3s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 3s ease-in-out;
    -moz-transition: -moz-transform 3s ease-in-out;
    -ms-transition: -ms-transform 3s ease-in-out;
    -o-transition: -o-transform 3s ease-in-out;
    transition: transform 3s ease-in-out;
}

.duration-4s,
.duration-4s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-4s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-4s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-4s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 4s ease-in-out;
    -moz-transition: -moz-transform 4s ease-in-out;
    -ms-transition: -ms-transform 4s ease-in-out;
    -o-transition: -o-transform 4s ease-in-out;
    transition: transform 4s ease-in-out;
}

.duration-5s,
.duration-5s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-5s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-5s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-5s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 5s ease-in-out;
    -moz-transition: -moz-transform 5s ease-in-out;
    -ms-transition: -ms-transform 5s ease-in-out;
    -o-transition: -o-transform 5s ease-in-out;
    transition: transform 5s ease-in-out;
}

.duration-6s,
.duration-6s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-6s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-6s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-6s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 6s ease-in-out;
    -moz-transition: -moz-transform 6s ease-in-out;
    -ms-transition: -ms-transform 6s ease-in-out;
    -o-transition: -o-transform 6s ease-in-out;
    transition: transform 6s ease-in-out;
}

.duration-7s,
.duration-7s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-7s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-7s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-7s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 7s ease-in-out;
    -moz-transition: -moz-transform 7s ease-in-out;
    -ms-transition: -ms-transform 7s ease-in-out;
    -o-transition: -o-transform 7s ease-in-out;
    transition: transform 7s ease-in-out;
}

.duration-8s,
.duration-8s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-8s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-8s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-8s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 8s ease-in-out;
    -moz-transition: -moz-transform 8s ease-in-out;
    -ms-transition: -ms-transform 8s ease-in-out;
    -o-transition: -o-transform 8s ease-in-out;
    transition: transform 8s ease-in-out;
}

.duration-9s,
.duration-9s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-9s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-9s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-9s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 9s ease-in-out;
    -moz-transition: -moz-transform 9s ease-in-out;
    -ms-transition: -ms-transform 9s ease-in-out;
    -o-transition: -o-transform 9s ease-in-out;
    transition: transform 9s ease-in-out;
}

.duration-10s,
.duration-10s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-10s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-10s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-10s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 10s ease-in-out;
    -moz-transition: -moz-transform 10s ease-in-out;
    -ms-transition: -ms-transform 10s ease-in-out;
    -o-transition: -o-transform 10s ease-in-out;
    transition: transform 10s ease-in-out;
}

.duration-11s,
.duration-11s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-11s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-11s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-11s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 11s ease-in-out;
    -moz-transition: -moz-transform 11s ease-in-out;
    -ms-transition: -ms-transform 11s ease-in-out;
    -o-transition: -o-transform 11s ease-in-out;
    transition: transform 11s ease-in-out;
}

.duration-12s,
.duration-12s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-12s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-12s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-12s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 12s ease-in-out;
    -moz-transition: -moz-transform 12s ease-in-out;
    -ms-transition: -ms-transform 12s ease-in-out;
    -o-transition: -o-transform 12s ease-in-out;
    transition: transform 12s ease-in-out;
}

.duration-13s,
.duration-13s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-13s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-13s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-13s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 13s ease-in-out;
    -moz-transition: -moz-transform 13s ease-in-out;
    -ms-transition: -ms-transform 13s ease-in-out;
    -o-transition: -o-transform 13s ease-in-out;
    transition: transform 13s ease-in-out;
}

.duration-14s,
.duration-14s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-14s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-14s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-14s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 14s ease-in-out;
    -moz-transition: -moz-transform 14s ease-in-out;
    -ms-transition: -ms-transform 14s ease-in-out;
    -o-transition: -o-transform 14s ease-in-out;
    transition: transform 14s ease-in-out;
}

.duration-15s,
.duration-15s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-15s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-15s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-15s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 15s ease-in-out;
    -moz-transition: -moz-transform 15s ease-in-out;
    -ms-transition: -ms-transform 15s ease-in-out;
    -o-transition: -o-transform 15s ease-in-out;
    transition: transform 15s ease-in-out;
}

.duration-16s,
.duration-16s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-16s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-16s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-16s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 16s ease-in-out;
    -moz-transition: -moz-transform 16s ease-in-out;
    -ms-transition: -ms-transform 16s ease-in-out;
    -o-transition: -o-transform 16s ease-in-out;
    transition: transform 16s ease-in-out;
}

.duration-17s,
.duration-17s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-17s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-17s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-17s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 17s ease-in-out;
    -moz-transition: -moz-transform 17s ease-in-out;
    -ms-transition: -ms-transform 17s ease-in-out;
    -o-transition: -o-transform 17s ease-in-out;
    transition: transform 17s ease-in-out;
}

.duration-18s,
.duration-18s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-18s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-18s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-18s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 18s ease-in-out;
    -moz-transition: -moz-transform 18s ease-in-out;
    -ms-transition: -ms-transform 18s ease-in-out;
    -o-transition: -o-transform 18s ease-in-out;
    transition: transform 18s ease-in-out;
}

.duration-19s,
.duration-19s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-19s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-19s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-19s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 19s ease-in-out;
    -moz-transition: -moz-transform 19s ease-in-out;
    -ms-transition: -ms-transform 19s ease-in-out;
    -o-transition: -o-transform 19s ease-in-out;
    transition: transform 19s ease-in-out;
}

.duration-20s,
.duration-20s.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.duration-20s.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.duration-20s.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner.absolute-index- .duration-20s.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    -webkit-transition: -webkit-transform 20s ease-in-out;
    -moz-transition: -moz-transform 20s ease-in-out;
    -ms-transition: -ms-transform 20s ease-in-out;
    -o-transition: -o-transform 20s ease-in-out;
    transition: transform 20s ease-in-out;
}

.insight-links-cloud.dark ul li a {
    color: #696969;
}

.insight-links-cloud.dark ul li a:before {
    color: #696969;
}

.insight-links-cloud.dark ul li a:hover {
    color: #fff;
}

.insight-links-cloud ul {
    padding: 0;
}

.insight-links-cloud ul li {
    display: inline;
}

.insight-links-cloud ul li:first-child a:before {
    display: none;
}

.insight-links-cloud ul li a {
    font-size: 24px;
    line-height: 48px;
    font-weight: 400;
    font-family: Merriweather;
    color: #ababab;
}

.insight-links-cloud ul li a:hover {
    color: #333;
}

.insight-links-cloud ul li a:before {
    content: "\f111";
    font-family: FontAwesome;
    font-size: 6px;
    display: inline-block;
    line-height: 1;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    transform: translateY(-50%);
    color: #e2e2e2;
}

.insight-menu-add-param ul {
    margin: 0 auto;
    padding: 0;
    display: block;
}

.insight-menu-add-param ul li {
    list-style: none;
    display: inline-block;
    position: relative;
    float: left;
    padding: 0;
}

.insight-menu-add-param ul li:first-child:after, .insight-menu-add-param ul li:hover:after {
    display: none;
}

.insight-menu-add-param ul li:after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(105, 105, 105, 0.3);
    position: absolute;
    left: -1px;
    top: 25px;
    z-index: 1;
}

.insight-menu-add-param ul li a {
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #050505;
    box-sizing: border-box;
    height: 110px;
    display: block;
    position: relative;
    z-index: 2;
    border-top: 2px solid #252525;
}

.insight-menu-add-param ul li a i {
    font-size: 30px;
    color: #050505;
}

.insight-menu-add-param ul li a span {
    margin-top: 2px;
    display: block;
}

.insight-menu-add-param ul li a:hover, .insight-menu-add-param ul li a.active {
    background: #252525;
    border-color: #da0e2b;
    background-color: #da0e2b;
}

.insight-menu-add-param ul li a:hover, .insight-menu-add-param ul li a:hover i, .insight-menu-add-param ul li a.active, .insight-menu-add-param ul li a.active i {
    color: #fff;
}

.insight-post-slider {
    position: relative;
}

.insight-post-slider .slider-nav-container {
    position: absolute;
    bottom: 100px;
    right: 100px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .insight-post-slider .slider-nav-container {
        display: none;
    }
}

.insight-post-slider .slider-nav-container li {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.insight-post-slider .slider-nav-container li:first-child {
    display: none;
}

.insight-post-slider .slider-nav-container li:hover .thumb {
    transform: scale(1.2);
}

.insight-post-slider .slider-nav-container li * {
    color: #fff;
}

.insight-post-slider .slider-nav-container li .thumb, .insight-post-slider .slider-nav-container li .desc {
    display: inline-block;
    vertical-align: middle;
}

.insight-post-slider .slider-nav-container li .thumb {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-right: 25px;
    max-width: 120px;
}

.insight-post-slider .slider-nav-container li .desc {
    width: 220px;
}

.insight-post-slider .slider-nav-container li .desc .slider-nav-cats {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insight-post-slider .slider-nav-container li .desc h6 {
    font-size: 14px;
    line-height: 24px;
}

.insight-post-slider .post-slider {
    margin-bottom: 0;
}

.insight-post-slider .item {
    height: 700px;
    background-size: cover;
    background-position: center;
}

.insight-post-slider .item .row, .insight-post-slider .item .insight-carousel .slick-track, .insight-carousel .insight-post-slider .item .slick-track, .insight-post-slider .item .container {
    height: 100%;
}

.insight-post-slider .item .row, .insight-post-slider .item .insight-carousel .slick-track, .insight-carousel .insight-post-slider .item .slick-track {
    align-items: flex-end;
    align-content: flex-end;
    align-self: flex-end;
}

.insight-post-slider .item .row *, .insight-post-slider .item .insight-carousel .slick-track *, .insight-carousel .insight-post-slider .item .slick-track * {
    color: #fff;
}

.insight-post-slider .item .row .blog-classic-style, .insight-post-slider .item .insight-carousel .slick-track .blog-classic-style, .insight-carousel .insight-post-slider .item .slick-track .blog-classic-style {
    border: none;
}

.insight-instagram-feed {
    display: flex;
    justify-content: flex-end;
}

.insight-instagram-feed .insight-instagram-feed-title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    color: #7E7E7E;
    margin-right: 30px;
}

.insight-instagram-feed .insight-instagram-feed-items {
    margin: 0;
    height: 60px;
    width: 222px;
}

.insight-instagram-feed .insight-instagram-feed-items .item {
    margin: 0 7px;
}

.insight-instagram-feed .insight-instagram-feed-items .item a {
    display: block;
    position: relative;
}

.insight-instagram-feed .insight-instagram-feed-items .item a img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-instagram-feed .insight-instagram-feed-items .item a:after {
    display: block;
    content: '\f14d';
    font-family: FontAwesome;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.insight-instagram-feed .insight-instagram-feed-items .item a:hover img {
    opacity: .5;
}

.insight-instagram-feed .insight-instagram-feed-items .item a:hover:after {
    opacity: 1;
}

body .vc_row[data-vc-full-width] {
    overflow: visible;
}

body .vc_row[data-vc-full-width].vc_parallax {
    overflow: hidden;
}

@media (max-width: 991px) {
    .vc_column_container.vc_col-sm-4, .vc_column_container.vc_col-sm-8 {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .vc_column_container.vc_col-sm-4 {
        width: 33.33333333%;
    }

    .vc_column_container.vc_col-sm-8 {
        width: 66.66666667%;
    }
}

[class*='insight-dot'] {
    cursor: pointer;
}

.insight-dot-style01 {
    font-size: 18px !important;
}

.insight-dot-style01:after {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #da0e2b;
    right: -100px;
    top: 50%;
    position: absolute;
}

.insight-dot-style01.active {
    font-size: 34px !important;
    color: #333 !important;
}

.insight-dot-style01.active:after {
    width: 80px;
}

.insight-dot-style01:hover {
    color: #333 !important;
}

@media (min-width: 544px) {
    .relative-visible {
        position: relative !important;
        overflow: visible !important;
    }

    .relative-visible .vc_column_container {
        position: static;
    }

    .static-visible {
        position: static !important;
        overflow: visible !important;
    }
}

[class*='absolute-object'] {
    position: absolute !important;
    z-index: 2;
}

@media (max-width: 768px) {
    html .reset-mrg-top-sm, html .reset-mrg-top-sm .vc_column-inner {
        margin-top: 0 !important;
    }
}

.absolute-object1 {
    right: 0;
}

.absolute-object2 {
    right: 0;
    top: -350px;
}

.absolute-object3 {
    left: 0;
    top: -200px;
}

.absolute-object4 {
    right: 0;
    top: -300px;
}

.absolute-object5 {
    left: 0;
    bottom: -150px;
}

.absolute-object6 {
    right: 0;
    bottom: -50px;
}

.absolute-object7 {
    left: 0;
    bottom: -150px;
}

.absolute-object8 {
    right: 0;
    bottom: -150px;
}

.absolute-object9 {
    left: 0;
    bottom: 100px;
}

.opacity1, .opacity1 * {
    opacity: 1 !important;
}

@media (max-width: 991px) {
    [class*='absolute-object'] {
        max-width: 100px;
        top: -100px;
    }
}

@media (max-width: 768px) {
    [class*='absolute-object'] {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .rm-maxwidth {
        float: right;
    }

    .rm-maxwidth, .rm-maxwidth * {
        max-width: none !important;
    }
}

.special-link, .special-link-1 {
    padding: 5px 0;
    position: relative;
}

.special-link:after, .special-link-1:after {
    height: 1px;
    display: block;
    content: '';
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 55px;
    bottom: 8px;
}

.special-link:before, .special-link-1:before {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    border: 2px solid #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    content: '\f30f';
    font-family: Ionicons;
    display: inline-block;
    margin-right: 15px;
}

.special-link-2 {
    padding: 5px 0;
    position: relative;
}

.special-link-2:after {
    height: 1px;
    display: block;
    content: '';
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 55px;
    bottom: 8px;
}

.special-link-2:before {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #da0e2b;
    color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    content: '\f30f';
    font-family: Ionicons;
    display: inline-block;
    margin-right: 15px;
}

.special-link-3 {
    padding: 5px 0;
    position: relative;
}

.special-link-3:after {
    height: 1px;
    display: block;
    content: '';
    background-color: #696969;
    position: absolute;
    right: 0;
    left: 55px;
    bottom: 8px;
}

.special-link-3:before {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    background-color: transparent;
    color: #da0e2b;
    border: 2px solid #e0e0e0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    content: '\f30f';
    font-family: Ionicons;
    display: inline-block;
    margin-right: 15px;
}

.white-color {
    color: #fff !important;
}

.vc_custom_heading.bottom-line:after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    margin-top: 5px;
}

.vc_custom_heading.typed mark {
    font-weight: inherit;
    color: #da0e2b;
    background-color: transparent;
}

.vc_custom_heading.typed .typed-cursor {
    color: #da0e2b;
    opacity: 1;
    font-weight: 100;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    -ms-animation: blink 0.7s infinite;
    -o-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.wpcf7-form .row .wpcf7-form-control-wrap, .wpcf7-form .insight-carousel .slick-track .wpcf7-form-control-wrap, .insight-carousel .wpcf7-form .slick-track .wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}

.wpcf7-form .row label, .wpcf7-form .insight-carousel .slick-track label, .insight-carousel .wpcf7-form .slick-track label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}

.wpcf7-form .row .wpcf7-not-valid-tip, .wpcf7-form .insight-carousel .slick-track .wpcf7-not-valid-tip, .insight-carousel .wpcf7-form .slick-track .wpcf7-not-valid-tip {
    font-style: italic;
}

.wpcf7-form div.wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
}

/*
Objects are "formless", in other words invisible to the user, no cosmetics
  Eg. wrappers, grid systems, etc.
This is the first layer of classes and should be agnostically named
  Eg. list-inline, ui-list, etc.
*/
/* Text meant only for screen readers. */
.screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

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

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

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

.text-align-xs-left {
    text-align: left;
}

.text-align-xs-right {
    text-align: right;
}

.text-align-xs-center {
    text-align: center;
}

@media (min-width: 544px) {
    .text-align-sm-left {
        text-align: left;
    }

    .text-align-sm-right {
        text-align: right;
    }

    .text-align-sm-center {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .text-align-md-left {
        text-align: left;
    }

    .text-align-md-right {
        text-align: right;
    }

    .text-align-md-center {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .text-align-lg-left {
        text-align: left;
    }

    .text-align-lg-right {
        text-align: right;
    }

    .text-align-lg-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .text-align-xl-left {
        text-align: left;
    }

    .text-align-xl-right {
        text-align: right;
    }

    .text-align-xl-center {
        text-align: center;
    }
}

@media (min-width: 1920px) {
    .text-align-xxl-left {
        text-align: left;
    }

    .text-align-xxl-right {
        text-align: right;
    }

    .text-align-xxl-center {
        text-align: center;
    }
}

@media (min-width: 992px) {
    [text-align='left'] {
        text-align: left;
    }

    [text-align='right'] {
        text-align: right;
    }

    [text-align='center'] {
        text-align: center;
    }
}

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

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

.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: .8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

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

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

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

.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;
}

.gallery {
    margin-bottom: 1.5em;
}

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

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

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

.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;
}

button,
.insight-btn,
body.page .comments-area .comment-form input[type="submit"],
.single .content .comments-area .comment-form input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
    padding: 12px 29px;
    border: 1px solid;
    border-color: #da0e2b;
    background: #da0e2b;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.05em;
    outline: none;
    text-transform: uppercase;
    display: inline-block;
}

button:hover,
.insight-btn:hover,
body.page .comments-area .comment-form input:hover[type="submit"],
.single .content .comments-area .comment-form input:hover[type="submit"],
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #da0e2b;
    background-color: transparent;
    color: #da0e2b;
}

[data-balloon] {
    position: relative;
}

[data-balloon]:after {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    position: absolute;
    z-index: 10;
    padding: .5em 1em;
    border-radius: 4px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    content: attr(data-balloon);
    white-space: nowrap;
    font-size: 12px;
}

[data-balloon]:before {
    background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    position: absolute;
    z-index: 10;
    content: '';
}

[data-balloon]:hover:before, [data-balloon]:hover:after {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto;
}

[data-balloon][data-balloon-break]:after {
    white-space: normal;
}

[data-balloon][data-balloon-pos="up"]:after {
    bottom: 100%;
    left: 50%;
    margin-bottom: 11px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

[data-balloon][data-balloon-pos="up"]:before {
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

[data-balloon][data-balloon-pos="up"]:hover:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos="up"]:hover:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos='down']:after {
    top: 100%;
    left: 50%;
    margin-top: 11px;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
}

[data-balloon][data-balloon-pos='down']:before {
    background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    top: 100%;
    left: 50%;
    margin-top: 5px;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px);
}

[data-balloon][data-balloon-pos='down']:hover:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos='down']:hover:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[data-balloon][data-balloon-pos='left']:after {
    top: 50%;
    right: 100%;
    margin-right: 11px;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
}

[data-balloon][data-balloon-pos='left']:before {
    background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    top: 50%;
    right: 100%;
    margin-right: 5px;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
}

[data-balloon][data-balloon-pos='left']:hover:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

[data-balloon][data-balloon-pos='left']:hover:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

[data-balloon][data-balloon-pos='right']:after {
    top: 50%;
    left: 100%;
    margin-left: 11px;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
}

[data-balloon][data-balloon-pos='right']:before {
    background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    top: 50%;
    left: 100%;
    margin-left: 5px;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
}

[data-balloon][data-balloon-pos='right']:hover:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

[data-balloon][data-balloon-pos='right']:hover:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

[data-balloon][data-balloon-length='small']:after {
    width: 80px;
    white-space: normal;
}

[data-balloon][data-balloon-length='medium']:after {
    width: 150px;
    white-space: normal;
}

[data-balloon][data-balloon-length='large']:after {
    width: 260px;
    white-space: normal;
}

[data-balloon][data-balloon-length='xlarge']:after {
    width: 380px;
    white-space: normal;
}

@media screen and (max-width: 768px) {
    [data-balloon][data-balloon-length='xlarge']:after {
        white-space: normal;
        width: 90vw;
    }
}

[data-balloon][data-balloon-length='fit']:after {
    width: 100%;
    white-space: normal;
}

/* 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;
}

[mode="boxed"] > .wrapper,
[mode="wide"] > .wrapper,
.content > .wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}

@media (min-width: 544px) {
    [mode="boxed"] > .wrapper,
    [mode="wide"] > .wrapper,
    .content > .wrapper {
        max-width: 576px;
    }
}

@media (min-width: 769px) {
    [mode="boxed"] > .wrapper,
    [mode="wide"] > .wrapper,
    .content > .wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    [mode="boxed"] > .wrapper,
    [mode="wide"] > .wrapper,
    .content > .wrapper {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    [mode="boxed"] > .wrapper,
    [mode="wide"] > .wrapper,
    .content > .wrapper {
        max-width: 1140px;
    }
}

[blog="fullwidth"] .content-area {
    flex: 0 0 100%;
    max-width: 100%;
}

[blog="content-sidebar"] .content-area {
    overflow: hidden;
}

@media (min-width: 992px) {
    [blog="content-sidebar"] .content-area {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    [blog="content-sidebar"] .widget-area {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

[blog="sidebar-content"] .content-area {
    overflow: hidden;
}

@media (min-width: 992px) {
    [blog="sidebar-content"] .content-area {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    [blog="sidebar-content"] .widget-area {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/*--------------------------------------------------------------
# Top bar
--------------------------------------------------------------*/
.topbar {
    flex: 0 0 100%;
    max-width: 100%;
}

.topbar .row > div, .topbar .insight-carousel .slick-track > div, .insight-carousel .topbar .slick-track > div {
    padding: 0 15px;
}

.topbar .topbar__text span:not(:first-child) {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #696969;
}

.topbar .topbar__menu {
    text-align: right;
}

.topbar .topbar__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar .topbar__menu ul li {
    display: inline-block;
    margin: 0 0 0 15px;
    padding-left: 15px;
    border-left: 1px solid #696969;
    line-height: 1;
    position: relative;
}

.topbar .topbar__menu ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.topbar .topbar__menu ul li:first-child {
    border: none;
}

.topbar .topbar__menu ul li .sub-menu {
    position: absolute;
    min-width: 120px;
    top: 40px;
    right: -20px;
    background: #555;
    padding: 10px 20px;
    opacity: 0;
    z-index: 999;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.topbar .topbar__menu ul li .sub-menu li {
    text-align: left;
    display: block;
    margin: 0;
    padding: 5px 0;
    border: none;
}

.topbar .topbar__menu ul li.menu-item-has-children > a:after {
    content: '\f3d0';
    font-family: Ionicons;
    margin-left: 10px;
    font-size: 12px;
}

.topbar .topbar__menu ul li:hover > .sub-menu {
    top: 32px;
    opacity: 1;
}

body #lang_sel {
    height: auto;
}

body #lang_sel a.lang_sel_sel {
    border: 0;
    padding: 4px 0;
    background-color: transparent;
}

body #lang_sel a.lang_sel_sel span {
    padding-right: 20px;
}

body #lang_sel a.lang_sel_sel:hover {
    background-color: transparent;
}

body #lang_sel li {
    width: auto;
}

body #lang_sel li ul a {
    padding: 10px 15px;
    border: 0;
}

body #lang_sel ul ul {
    border: 0;
    top: 100%;
}

/*--------------------------------------------------------------
# Header General
--------------------------------------------------------------*/
.header {
    width: 100%;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header.headroom--not-top {
    position: fixed !important;
    background: #fff !important;
    top: 0;
    left: 0;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.header.headroom--not-top #menu .menu__container > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
}

.header .open-right {
    display: none;
}

.top-search, .top-search-mobile {
    width: 100%;
    background-color: #da0e2b;
    color: #fff;
    display: none;
}

.top-search form, .top-search-mobile form {
    padding-left: 30px;
    position: relative;
}

.top-search form input[type="search"], .top-search-mobile form input[type="search"] {
    border: none;
    background: none;
    color: #fff !important;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
}

.top-search form input[type="search"]::-webkit-input-placeholder, .top-search-mobile form input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.top-search form input[type="search"]::-moz-placeholder, .top-search-mobile form input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.top-search form input[type="search"]:-ms-input-placeholder, .top-search-mobile form input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.top-search form input[type="search"]:-moz-placeholder, .top-search-mobile form input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.top-search form input[type="submit"], .top-search-mobile form input[type="submit"] {
    display: none;
}

body.admin-bar header.headroom--not-top {
    top: 32px;
}

@media (max-width: 991px) {
    header.header-desktop {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Header 01
--------------------------------------------------------------*/
header.header-01 {
    display: inline-block;
    width: 100%;
}

header.header-01 .top-search {
    padding: 0 15px;
    text-align: center;
}

header.header-01 .top-search input {
    text-align: center;
}

header.header-01 .header-container {
    position: relative;
    z-index: 999;
}

header.header-01 .header-container .row, header.header-01 .header-container .insight-carousel .slick-track, .insight-carousel header.header-01 .header-container .slick-track {
    margin: 0;
}

header.header-01 .header-container .header-left {
    padding-left: 100px;
}

.rtl header.header-01 .header-container .header-left {
    padding-left: 15px;
    padding-right: 100px;
}

header.header-01 .header-container .header-center {
    position: static;
}

header.header-01 .header-container .header-center nav.menu {
    display: inline-block;
    width: 100%;
    text-align: center;
}

header.header-01 .header-container .header-center nav.menu > ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

header.header-01 .header-container .header-center nav.menu > ul > li > a {
    text-transform: uppercase;
    position: relative;
}

header.header-01 .header-container .header-right {
    padding-right: 100px;
    text-align: right;
}

header.header-01 .header-container .header-right .header-search {
    max-width: 260px;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

header.header-01 .header-container .header-right .header-search form {
    position: relative;
    height: 32px;
    line-height: 32px;
}

header.header-01 .header-container .header-right .header-search form input[type="text"], header.header-01 .header-container .header-right .header-search form input[type="search"] {
    height: 32px;
    line-height: 32px;
    vertical-align: top;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-family: Montserrat;
}

header.header-01 .header-container .header-right .header-search form input[type="text"]::-webkit-input-placeholder, header.header-01 .header-container .header-right .header-search form input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ababab;
}

header.header-01 .header-container .header-right .header-search form input[type="text"]::-moz-placeholder, header.header-01 .header-container .header-right .header-search form input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #ababab;
}

header.header-01 .header-container .header-right .header-search form input[type="text"]:-ms-input-placeholder, header.header-01 .header-container .header-right .header-search form input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #ababab;
}

header.header-01 .header-container .header-right .header-search form input[type="text"]:-moz-placeholder, header.header-01 .header-container .header-right .header-search form input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: #ababab;
}

header.header-01 .header-container .header-right .header-search form input[type="submit"] {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0;
    vertical-align: top;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    z-index: 8;
}

header.header-01 .header-container .header-right .header-search form:after {
    content: '\f4a4';
    font-family: Ionicons;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 7;
}

/*--------------------------------------------------------------
# Header 02
--------------------------------------------------------------*/
header.header-02 {
    display: inline-block;
    width: 100%;
}

header.header-02 .top-search {
    padding: 0 15px;
    text-align: center;
}

header.header-02 .top-search input {
    text-align: center;
}

header.header-02 .header-container {
    position: relative;
    z-index: 999;
}

header.header-02 .header-container .row, header.header-02 .header-container .insight-carousel .slick-track, .insight-carousel header.header-02 .header-container .slick-track {
    margin: 0;
}

header.header-02 .header-container .header-left {
    padding-left: 100px;
}

header.header-02 .header-container .header-right {
    padding-right: 100px;
    text-align: right;
    position: static;
}

header.header-02 .header-container .header-right nav.menu {
    display: inline-block;
    text-align: right;
}

header.header-02 .header-container .header-right nav.menu > ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

header.header-02 .header-container .header-right nav.menu > ul > li > a {
    text-transform: uppercase;
    position: relative;
}

header.header-02 .header-container .header-right .open-search {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    margin-left: 20px;
    cursor: pointer;
    color: #333333;
}

/*--------------------------------------------------------------
# Header 02
--------------------------------------------------------------*/
header.header-03 {
    display: inline-block;
    width: 100%;
}

header.header-03 .top-search {
    padding: 0 15px;
    text-align: center;
}

header.header-03 .top-search input {
    text-align: center;
}

header.header-03.headroom--not-top .open-right {
    display: block;
    font-size: 30px;
}

header.header-03 .header-container {
    position: relative;
    z-index: 999;
}

header.header-03 .header-container .row, header.header-03 .header-container .insight-carousel .slick-track, .insight-carousel header.header-03 .header-container .slick-track {
    margin: 0;
}

header.header-03 .header-container .header-right {
    position: static;
}

header.header-03 .header-container .header-right nav.menu {
    display: inline-block;
    text-align: right;
}

header.header-03 .header-container .header-right nav.menu > ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

header.header-03 .header-container .header-right nav.menu > ul > li > a {
    text-transform: uppercase;
    position: relative;
}

header.header-03 .header-container .header-right .open-search {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    margin-left: 20px;
    cursor: pointer;
    color: #333333;
}

/*--------------------------------------------------------------
# Header mobile
--------------------------------------------------------------*/
header.header-mobile {
    display: none;
    width: 100%;
}

header.header-mobile .header-mobile-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

header.header-mobile .header-left {
    font-size: 24px;
    text-align: left;
}

header.header-mobile .header-left #open-left {
    cursor: pointer;
}

header.header-mobile .header-center {
    text-align: center;
}

header.header-mobile .header-right {
    font-size: 24px;
    text-align: right;
}

header.header-mobile .header-right #open-search-mobile {
    display: inline-block;
    cursor: pointer;
}

@media (max-width: 991px) {
    header.header-mobile {
        display: block;
    }
}

.header-overlay .header:not(.headroom--not-top), .header-overlay.header:not(.headroom--not-top) {
    background-color: transparent;
    position: absolute;
}

.header-overlay .header:not(.headroom--not-top) nav > ul > li > a, .header-overlay.header:not(.headroom--not-top) nav > ul > li > a {
    color: #fff !important;
}

.header-overlay .header:not(.headroom--not-top) .header-right .header-search, .header-overlay.header:not(.headroom--not-top) .header-right .header-search {
    /* header 01 */
}

.header-overlay .header:not(.headroom--not-top) .header-right .header-search form:after, .header-overlay.header:not(.headroom--not-top) .header-right .header-search form:after {
    color: #fff;
}

.header-overlay .header:not(.headroom--not-top) .header-right .open-search, .header-overlay.header:not(.headroom--not-top) .header-right .open-search {
    /* header 02 */
    color: #fff;
}

.header-minimal .header:not(.headroom--not-top), .header-minimal.header:not(.headroom--not-top) {
    background-color: transparent;
    position: absolute;
}

.header-minimal .header:not(.headroom--not-top) .header-container, .header-minimal.header:not(.headroom--not-top) .header-container {
    padding: 20px 0;
}

.header-minimal .header:not(.headroom--not-top) nav, .header-minimal.header:not(.headroom--not-top) nav {
    display: none !important;
}

.header-minimal .header:not(.headroom--not-top) .header-right .header-search, .header-minimal.header:not(.headroom--not-top) .header-right .header-search {
    /* header 01 */
    display: none !important;
}

.header-minimal .header:not(.headroom--not-top) .header-right .open-search, .header-minimal.header:not(.headroom--not-top) .header-right .open-search {
    /* header 02 */
    display: none !important;
}

.header-minimal .header:not(.headroom--not-top) .header-right .open-right, .header-minimal.header:not(.headroom--not-top) .header-right .open-right {
    display: inline-block;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.open-right-content {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
    width: 90%;
    max-width: 640px;
    right: -100%;
    top: 0;
    bottom: 0;
    padding: 40px 100px;
    z-index: 1001;
    background: #262626;
    color: #fff;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.open-right-content.open {
    right: 0;
}

.open-right-content .open-right-close {
    display: block;
    text-align: right;
    line-height: 1;
    font-size: 32px;
    cursor: pointer;
}

.open-right-content ul {
    margin: 100px 0 0 0;
    padding: 0;
    list-style: none;
}

.open-right-content ul li {
    display: block;
    padding: 20px 0;
}

.open-right-content ul li a {
    color: #696969;
    font-size: 56px;
    font-weight: 400;
    font-family: Merriweather;
    line-height: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.open-right-content ul li a:hover {
    opacity: 1;
    color: #da0e2b;
}

.open-right-content .search-form {
    display: block;
    margin-top: 100px;
    height: 32px;
    line-height: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.open-right-content .search-form form {
    position: relative;
    height: 32px;
    line-height: 32px;
}

.open-right-content .search-form form input[type="text"], .open-right-content .search-form form input[type="search"] {
    height: 32px;
    line-height: 32px;
    vertical-align: top;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-family: Montserrat;
    color: #fff;
}

.open-right-content .search-form form input[type="text"]::-webkit-input-placeholder, .open-right-content .search-form form input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.3);
}

.open-right-content .search-form form input[type="text"]::-moz-placeholder, .open-right-content .search-form form input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.3);
}

.open-right-content .search-form form input[type="text"]:-ms-input-placeholder, .open-right-content .search-form form input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.3);
}

.open-right-content .search-form form input[type="text"]:-moz-placeholder, .open-right-content .search-form form input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.3);
}

.open-right-content .search-form form input[type="submit"] {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0;
    vertical-align: top;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    z-index: 8;
}

.open-right-content .search-form form:after {
    content: '\f4a4';
    font-family: Ionicons;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 7;
}

body.admin-bar .open-right-content {
    top: 32px !important;
}

body.body-open-right #page:before {
    content: '';
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.5;
    z-index: 1000;
}

body.header-minimal-black .header-minimal .header:not(.headroom--not-top) .header-right .open-right, body.header-minimal-black .header-minimal.header:not(.headroom--not-top) .header-right .open-right {
    color: #333333;
}

#menu {
    position: static;
}

#menu .menu__container > ul > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

#menu .menu__container > ul ul.children {
    min-width: 260px;
}

#menu .menu__container, #menu .menu__container > ul {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    position: static;
    z-index: 2;
}

#menu .menu__container li.current-menu-item > a, #menu .menu__container li.current-menu-ancestor > a, #menu .menu__container li.current-menu-parent > a, #menu .menu__container > ul li.current-menu-item > a, #menu .menu__container > ul li.current-menu-ancestor > a, #menu .menu__container > ul li.current-menu-parent > a {
    color: #da0e2b;
}

#menu .menu__container > li, #menu .menu__container > ul > li {
    position: relative;
    display: inline-block;
}

#menu .menu__container > li a, #menu .menu__container > ul > li a {
    display: inline-block;
}

#menu .menu__container > li.mega-menu, #menu .menu__container > ul > li.mega-menu {
    position: static;
}

#menu .menu__container > li.menu-item-has-children > a:after, #menu .menu__container > li.page_item_has_children > a:after, #menu .menu__container > ul > li.menu-item-has-children > a:after, #menu .menu__container > ul > li.page_item_has_children > a:after {
    content: '\f3d0';
    margin-left: 10px;
    font-size: 12px;
    font-family: Ionicons;
}

#menu .menu__container > li:hover > .sub-menu, #menu .menu__container > li:hover > .children, #menu .menu__container > ul > li:hover > .sub-menu, #menu .menu__container > ul > li:hover > .children {
    top: 100%;
    visibility: visible;
    z-index: 2;
    opacity: 1;
}

#menu .menu__container > li:hover > .sub-menu li:hover > .sub-menu, #menu .menu__container > li:hover > .sub-menu li:hover > .children, #menu .menu__container > li:hover > .children li:hover > .sub-menu, #menu .menu__container > li:hover > .children li:hover > .children, #menu .menu__container > ul > li:hover > .sub-menu li:hover > .sub-menu, #menu .menu__container > ul > li:hover > .sub-menu li:hover > .children, #menu .menu__container > ul > li:hover > .children li:hover > .sub-menu, #menu .menu__container > ul > li:hover > .children li:hover > .children {
    top: -22px;
    left: 100%;
    visibility: visible;
    opacity: 1;
    border-top: 2px solid #da0e2b;
}

#menu .menu__container > li > .sub-menu, #menu .menu__container > li .children, #menu .menu__container > ul > li > .sub-menu, #menu .menu__container > ul > li .children {
    border-top: 2px solid #da0e2b;
}

#menu .menu__container .sub-menu, #menu .menu__container .children, #menu .menu__container > ul .sub-menu, #menu .menu__container > ul .children {
    position: absolute;
    top: 110%;
    left: 0;
    visibility: hidden;
    margin: 0;
    min-width: 230px;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    transition: all .3s ease;
    padding: 20px 0;
    list-style: none;
    text-align: left;
    text-transform: none;
    -moz-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}

#menu .menu__container .sub-menu li, #menu .menu__container .children li, #menu .menu__container > ul .sub-menu li, #menu .menu__container > ul .children li {
    position: relative;
    padding: 0 20px;
}

#menu .menu__container .sub-menu li a, #menu .menu__container .children li a, #menu .menu__container > ul .sub-menu li a, #menu .menu__container > ul .children li a {
    display: block;
    padding: 15px 0;
    color: #696969;
    text-transform: none;
    font-weight: 400;
    background: none;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    white-space: normal;
}

.rtl #menu .menu__container .sub-menu li a, .rtl #menu .menu__container .children li a, .rtl #menu .menu__container > ul .sub-menu li a, .rtl #menu .menu__container > ul .children li a {
    text-align: right;
}

#menu .menu__container .sub-menu li a:hover, #menu .menu__container .children li a:hover, #menu .menu__container > ul .sub-menu li a:hover, #menu .menu__container > ul .children li a:hover {
    background: none;
    color: #da0e2b;
    border-bottom-color: #da0e2b;
}

#menu .menu__container .sub-menu li:last-child a, #menu .menu__container .children li:last-child a, #menu .menu__container > ul .sub-menu li:last-child a, #menu .menu__container > ul .children li:last-child a {
    border: none;
}

#menu .menu__container .sub-menu li.menu-item-has-children:after, #menu .menu__container .sub-menu li.page_item_has_children:after, #menu .menu__container .children li.menu-item-has-children:after, #menu .menu__container .children li.page_item_has_children:after, #menu .menu__container > ul .sub-menu li.menu-item-has-children:after, #menu .menu__container > ul .sub-menu li.page_item_has_children:after, #menu .menu__container > ul .children li.menu-item-has-children:after, #menu .menu__container > ul .children li.page_item_has_children:after {
    content: '\f363';
    font-size: 16px;
    font-family: Ionicons;
    position: absolute;
    right: 20px;
    top: 14px;
    color: #696969;
}

.rtl #menu .menu__container .sub-menu li.menu-item-has-children:after, .rtl #menu .menu__container .sub-menu li.page_item_has_children:after, .rtl #menu .menu__container .children li.menu-item-has-children:after, .rtl #menu .menu__container .children li.page_item_has_children:after, .rtl #menu .menu__container > ul .sub-menu li.menu-item-has-children:after, .rtl #menu .menu__container > ul .sub-menu li.page_item_has_children:after, .rtl #menu .menu__container > ul .children li.menu-item-has-children:after, .rtl #menu .menu__container > ul .children li.page_item_has_children:after {
    right: 10px;
}

#menu .menu__container .sub-menu li.menu-item-has-children:hover:after, #menu .menu__container .sub-menu li.page_item_has_children:hover:after, #menu .menu__container .children li.menu-item-has-children:hover:after, #menu .menu__container .children li.page_item_has_children:hover:after, #menu .menu__container > ul .sub-menu li.menu-item-has-children:hover:after, #menu .menu__container > ul .sub-menu li.page_item_has_children:hover:after, #menu .menu__container > ul .children li.menu-item-has-children:hover:after, #menu .menu__container > ul .children li.page_item_has_children:hover:after {
    color: #da0e2b;
}

#menu .menu__container .sub-menu .sub-menu, #menu .menu__container .sub-menu .children, #menu .menu__container .children .sub-menu, #menu .menu__container .children .children, #menu .menu__container > ul .sub-menu .sub-menu, #menu .menu__container > ul .sub-menu .children, #menu .menu__container > ul .children .sub-menu, #menu .menu__container > ul .children .children {
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
}

#menu .mega-menu > .sub-menu, #menu .mega-menu .children {
    padding: 0;
}

#menu .mega-menu .wpb_text_column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu .mega-menu .wpb_text_column ul li {
    padding: 0;
    display: block;
}

#menu .mega-menu .wpb_text_column ul li a {
    padding: 5px 0;
    display: inline-block;
    position: relative;
}

#menu .mega-menu .wpb_text_column ul li a i {
    width: 20px;
}

#menu .mega-menu .wpb_text_column ul li a:hover:before {
    top: 7px;
}

#menu .mega-menu .wpb_text_column ul li.new a:after, #menu .mega-menu .wpb_text_column ul li.hot a:after, #menu .mega-menu .wpb_text_column ul li.sale a:after {
    font-size: 8px;
    text-transform: uppercase;
    height: 12px;
    line-height: 12px;
    padding: 0 5px;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    position: absolute;
    left: 110%;
    font-weight: 700;
}

#menu .mega-menu .wpb_text_column ul li.new a:after {
    content: 'new';
    background-color: #FFC929 !important;
}

#menu .mega-menu .wpb_text_column ul li.sale a:after {
    content: 'sale';
    background-color: #6AC39B !important;
}

#menu .mega-menu .wpb_text_column ul li.hot a:after {
    content: 'hot';
    background-color: #D0021B !important;
}

#menu .mega-menu .wpb_text_column ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu .mega-menu .wpb_text_column ol li {
    padding: 0;
    border-bottom: 1px solid #f9f6ee;
}

#menu .mega-menu .wpb_text_column ol li:last-child {
    border-bottom: none;
}

#menu .mega-menu .wpb_text_column ol li:last-child a {
    padding-bottom: 0;
}

#menu .mega-menu .features-mega-inner ul li {
    padding: 5px 0;
}

#mobile .kc_column {
    width: 100% !important;
}

.rtl #menu .sub-menu .mega-menu-content li {
    text-align: right;
}

#menu .sub-menu .mega-menu-content .wpb_content_element {
    margin-bottom: 0;
}

#menu .sub-menu .mega-menu-content .widget_nav_menu ul {
    padding: 0;
    list-style: none;
}

#menu .sub-menu .mega-menu-content .widget_nav_menu ul li {
    padding: 0;
}

.rtl #menu .sub-menu .mega-menu-content .widget_nav_menu ul li {
    text-align: right;
}

#menu .sub-menu .mega-menu-content .widget_nav_menu ul li a {
    padding: 10px 0;
}

#menu .sub-menu .mega-menu-content .widget_nav_menu ul li:first-child a {
    padding-top: 0px;
}

#menu .sub-menu .mega-menu-content .widget_nav_menu ul li:last-child a {
    padding-bottom: 0px;
}

nav#mobile .sub-menu .mega-menu-content .wpb_content_element {
    margin-bottom: 0;
}

.content {
    width: 100%;
}

.content--top .wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}

@media (min-width: 544px) {
    .content--top .wrapper {
        max-width: 576px;
    }
}

@media (min-width: 769px) {
    .content--top .wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .content--top .wrapper {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    .content--top .wrapper {
        max-width: 1140px;
    }
}

body:not(.home) .content > .wrapper {
    margin-bottom: 50px;
}

.footer {
    display: block;
    width: 100%;
}

.footer .footer-c1, .footer .footer-c2, .footer .footer-c3, .footer .footer-c4 {
    margin-bottom: 30px;
}

.footer .footer-gmap iframe {
    display: none;
}

.footer.style01 {
    background-color: #fff;
}

.footer.style01 .widget .widget-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #333333;
    font-family: Montserrat;
    font-size: 18px;
    letter-spacing: 0;
    position: relative;
}

.footer.style01 .widget .widget-title:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer.style01 .widget ul {
    list-style: none;
    padding: 0;
}

.footer.style01 .widget ul li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer.style01 .widget ul li:last-child {
    margin-bottom: 0;
}

.footer.style01 .widget ul li a {
    position: relative;
    color: #696969;
}

.footer.style01 .widget ul li a:hover {
    padding-left: 15px;
}

.footer.style01 .widget ul li a:hover:before {
    position: absolute;
    content: '\f462';
    font-family: 'Ionicons';
    left: 0;
    top: 0;
    color: inherit;
    line-height: 18px;
}

.footer.style01 .widget:hover .widget-title:after {
    width: 60px;
}

.footer.style01 .textwidget {
    line-height: 1.6;
}

.footer.style01 .textwidget p {
    padding: 0;
    margin: 0 0 15px 0;
}

.footer.style01 .textwidget a {
    color: #da0e2b;
}

.footer.style01 .footer-social {
    margin-top: 30px;
}

.footer.style01 .footer-social a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 44px;
    text-align: center;
    border: 2px solid #f4f4f4;
    border-radius: 24px;
    margin-right: 6px;
    font-size: 16px;
    color: #696969;
}

.footer.style01 .footer-social a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
    color: #fff !important;
}

.footer.style01 .footer-gmap {
    margin-top: 35px;
}

.footer.style01 .footer-gmap a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
}

.footer.style01 .footer-gmap a:before {
    content: '\f041';
    font-family: FontAwesome;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    color: #696969;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px solid #f4f4f4;
    margin-right: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer.style01 .footer-gmap a:hover:before {
    color: #fff;
    background-color: #da0e2b;
    border-color: #da0e2b;
}

.footer.style02 {
    background-color: #333333;
    color: #ababab;
}

.footer.style02 .widget .widget-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #fff;
    font-family: Merriweather;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    position: relative;
}

.footer.style02 .widget .widget-title:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer.style02 .widget ul {
    list-style: none;
    padding: 0;
}

.footer.style02 .widget ul li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer.style02 .widget ul li:last-child {
    margin-bottom: 0;
}

.footer.style02 .widget ul li a {
    position: relative;
    color: #ababab;
}

.footer.style02 .widget ul li a:hover {
    padding-left: 15px;
    color: #da0e2b;
}

.footer.style02 .widget ul li a:hover:before {
    position: absolute;
    content: '\f462';
    font-family: 'Ionicons';
    left: 0;
    top: 0;
    color: #da0e2b;
    line-height: 18px;
}

.footer.style02 .widget:hover .widget-title:after {
    width: 60px;
}

.footer.style02 .textwidget {
    line-height: 1.6;
}

.footer.style02 .textwidget p {
    padding: 0;
    margin: 0 0 15px 0;
}

.footer.style02 .textwidget a {
    color: #da0e2b;
}

.footer.style02 .footer-social {
    margin-top: 30px;
}

.footer.style02 .footer-social a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 44px;
    text-align: center;
    border: 2px solid #585858;
    border-radius: 24px;
    margin-right: 6px;
    font-size: 16px;
    color: #ababab;
}

.footer.style02 .footer-social a:hover {
    background-color: #da0e2b;
    border-color: #da0e2b;
    color: #fff !important;
}

.footer.style02 .footer-gmap {
    margin-top: 35px;
}

.footer.style02 .footer-gmap a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
}

.footer.style02 .footer-gmap a:before {
    content: '\f041';
    font-family: FontAwesome;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    color: #ababab;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px solid #595959;
    margin-right: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer.style02 .footer-gmap a:hover:before {
    color: #fff;
    background-color: #da0e2b;
    border-color: #da0e2b;
}

.copyright {
    display: block;
    width: 100%;
    position: relative;
}

.copyright.style01 {
    background: #fff;
}

.copyright.style01 .copyright-container {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 2px solid #f4f4f4;
}

.copyright.style01 .copyright-left {
    font-size: 14px;
    color: #ababab;
    font-family: Lato;
    font-style: italic;
    line-height: 1;
}

.copyright.style01 .copyright-left span {
    color: #da0e2b;
}

.copyright.style01 .copyright-right {
    text-align: right;
}

.copyright.style01 .copyright-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.copyright.style01 .copyright-right ul li {
    display: inline-block;
    margin-left: 20px;
}

.copyright.style01 .copyright-right ul li a {
    text-transform: uppercase;
    font-family: Montserrat;
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.copyright.style02 {
    background: #333333;
}

.copyright.style02 .copyright-container {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 2px solid #2d2d2d;
}

.copyright.style02 .copyright-left {
    font-size: 14px;
    color: #696969;
    font-family: Lato;
    font-style: italic;
    line-height: 1;
}

.copyright.style02 .copyright-left span {
    color: #da0e2b;
}

.copyright.style02 .copyright-left a {
    color: #fff;
}

.copyright.style02 .copyright-left a:hover {
    color: #da0e2b;
}

.copyright.style02 .copyright-right {
    text-align: right;
}

.copyright.style02 .copyright-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.copyright.style02 .copyright-right ul li {
    display: inline-block;
    margin-left: 20px;
}

.copyright.style02 .copyright-right ul li a {
    text-transform: uppercase;
    font-family: Montserrat;
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.copyright.type-02 {
    background-color: #262626;
}

.copyright.type-02 .copyright-container {
    border-top: none;
}

@media (min-width: 769px) {
    .copyright.type-02 .copyright-container {
        padding: 120px 100px;
    }
}

@media (max-width: 991px) {
    .copyright.type-02 .copyright-container .copyright-center {
        text-align: left;
        padding: 30px 20px;
    }
}

.copyright.type-02 .copyright-container .copyright-left {
    font-size: 13px;
    font-style: italic;
    color: #696969;
}

.copyright.type-02 .copyright-container .copyright-left span {
    display: block;
}

.copyright.type-02 .copyright-container .copyright-right {
    font-size: 13px;
    font-style: italic;
    color: #ababab;
}

.copyright.type-02 .copyright-container .copyright-right span {
    display: block;
    font-family: Montserrat;
    font-style: normal;
    font-size: 18px;
    color: #e0e0e0;
}

.breadcrumbs {
    padding: 0;
    margin-top: 30px;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    line-height: 1;
}

.breadcrumbs ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs ul li {
    display: inline-block;
    max-width: 700px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumbs ul li:after {
    content: '/';
    color: #ababab;
    margin-left: 10px;
}

.breadcrumbs ul li:last-child {
    color: #da0e2b;
    border-bottom: 1px solid #da0e2b;
    margin-right: 0;
}

.breadcrumbs ul li:last-child:after {
    content: '';
    margin-left: 0;
}

.breadcrumbs ul li a {
    color: #ababab;
}

.breadcrumbs ul li a:hover {
    color: #da0e2b;
}

.tm-9studio .featherlight .featherlight-content {
    padding: 0;
    border: none;
}

.footer-newsletter.style01 {
    padding-top: 110px;
    padding-bottom: 80px;
    background-color: #f8f8f8;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.footer-newsletter.style01 .footer-newsletter-left {
    font-size: 34px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
    line-height: 46px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.footer-newsletter.style01 .footer-newsletter-right {
    margin-bottom: 30px;
}

.footer-newsletter.style01 .footer-newsletter-right .form {
    position: relative;
    height: 48px;
    line-height: 48px;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="text"], .footer-newsletter.style01 .footer-newsletter-right .form input[type="email"] {
    display: inline-block;
    background-color: transparent;
    color: #333333;
    font-size: 14px;
    font-family: Montserrat;
    border: none;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="text"]::-webkit-input-placeholder, .footer-newsletter.style01 .footer-newsletter-right .form input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ababab;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="text"]::-moz-placeholder, .footer-newsletter.style01 .footer-newsletter-right .form input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #ababab;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="text"]:-ms-input-placeholder, .footer-newsletter.style01 .footer-newsletter-right .form input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #ababab;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="text"]:-moz-placeholder, .footer-newsletter.style01 .footer-newsletter-right .form input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: #ababab;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="submit"] {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 25px;
    background-color: #da0e2b;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    border: none;
    position: absolute;
    top: 4px;
    right: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer-newsletter.style01 .footer-newsletter-right .form input[type="submit"]:hover {
    background-color: #333333;
    color: #fff;
}

.footer-newsletter.style01 .footer-newsletter-right p {
    color: #ababab;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

.footer-newsletter.style02 {
    padding-top: 110px;
    padding-bottom: 80px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.footer-newsletter.style02 .footer-newsletter-left {
    font-size: 34px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
    line-height: 46px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.footer-newsletter.style02 .footer-newsletter-right {
    margin-bottom: 30px;
}

.footer-newsletter.style02 .footer-newsletter-right .form {
    position: relative;
    height: 48px;
    line-height: 48px;
    background-color: #f7f7f7;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="text"], .footer-newsletter.style02 .footer-newsletter-right .form input[type="email"] {
    display: inline-block;
    background-color: transparent;
    color: #333333;
    font-size: 14px;
    font-family: Montserrat;
    border: none;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="text"]::-webkit-input-placeholder, .footer-newsletter.style02 .footer-newsletter-right .form input[type="email"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ababab;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="text"]::-moz-placeholder, .footer-newsletter.style02 .footer-newsletter-right .form input[type="email"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #ababab;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="text"]:-ms-input-placeholder, .footer-newsletter.style02 .footer-newsletter-right .form input[type="email"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #ababab;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="text"]:-moz-placeholder, .footer-newsletter.style02 .footer-newsletter-right .form input[type="email"]:-moz-placeholder {
    /* Firefox 18- */
    color: #ababab;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="submit"] {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 25px;
    background-color: #da0e2b;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    border: none;
    position: absolute;
    top: 4px;
    right: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer-newsletter.style02 .footer-newsletter-right .form input[type="submit"]:hover {
    background-color: #333333;
    color: #fff;
}

.footer-newsletter.style02 .footer-newsletter-right p {
    color: #ababab;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

.admin-bar .mobile-menu, .admin-bar #mobile {
    padding-top: 32px;
}

@media (max-width: 991px) {
    .admin-bar .mobile-menu, .admin-bar #mobile {
        padding-top: 46px;
    }
}

.mobile-menu .mega-menu-content .vc_row, .mobile-menu .mega-menu-content .vc_column-inner, .mobile-menu .mega-menu-content .wpb_column, #mobile .mega-menu-content .vc_row, #mobile .mega-menu-content .vc_column-inner, #mobile .mega-menu-content .wpb_column {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 63.9em) {
    .tm-organie .mobile-menu .mega-menu-content .vc_row, .tm-organie .mobile-menu .mega-menu-content .vc_column-inner, .tm-organie .mobile-menu .mega-menu-content .wpb_column, .tm-organie #mobile .mega-menu-content .vc_row, .tm-organie #mobile .mega-menu-content .vc_column-inner, .tm-organie #mobile .mega-menu-content .wpb_column {
        padding: 0 !important;
    }
}

.mobile-menu .mega-menu-content .vc_row .vc_custom_heading, .mobile-menu .mega-menu-content .vc_column-inner .vc_custom_heading, .mobile-menu .mega-menu-content .wpb_column .vc_custom_heading, #mobile .mega-menu-content .vc_row .vc_custom_heading, #mobile .mega-menu-content .vc_column-inner .vc_custom_heading, #mobile .mega-menu-content .wpb_column .vc_custom_heading {
    margin: 0 !important;
    padding: 20px 20px 0;
    font-weight: 900 !important;
}

.mobile-menu > ul.menu, .mobile-menu > ul.menu__container, #mobile > ul.menu, #mobile > ul.menu__container {
    padding: 0;
    margin: 0;
}

.mobile-menu > ul.menu ul, .mobile-menu > ul.menu ol, .mobile-menu > ul.menu__container ul, .mobile-menu > ul.menu__container ol, #mobile > ul.menu ul, #mobile > ul.menu ol, #mobile > ul.menu__container ul, #mobile > ul.menu__container ol {
    padding: 0;
    margin: 0;
}

.mobile-menu > ul.menu li, .mobile-menu > ul.menu__container li, #mobile > ul.menu li, #mobile > ul.menu__container li {
    position: relative;
    display: block;
    border-bottom: 1px solid #eee;
}

.mobile-menu > ul.menu li.current_page_item a, .mobile-menu > ul.menu li.current-menu-item a, .mobile-menu > ul.menu__container li.current_page_item a, .mobile-menu > ul.menu__container li.current-menu-item a, #mobile > ul.menu li.current_page_item a, #mobile > ul.menu li.current-menu-item a, #mobile > ul.menu__container li.current_page_item a, #mobile > ul.menu__container li.current-menu-item a {
    box-shadow: 1px 0px 0 #111 inset;
}

.mobile-menu > ul.menu li a, .mobile-menu > ul.menu__container li a, #mobile > ul.menu li a, #mobile > ul.menu__container li a {
    display: block;
    color: #696969;
    padding: 0px 20px;
    line-height: 42px;
    background: inherit;
}

.mobile-menu > ul.menu li a i, .mobile-menu > ul.menu__container li a i, #mobile > ul.menu li a i, #mobile > ul.menu__container li a i {
    width: 20px;
}

.mobile-menu > ul.menu li a:hover, .mobile-menu > ul.menu__container li a:hover, #mobile > ul.menu li a:hover, #mobile > ul.menu__container li a:hover {
    color: #da0e2b;
}

.mobile-menu > ul.menu li .sub-menu, .mobile-menu > ul.menu__container li .sub-menu, #mobile > ul.menu li .sub-menu, #mobile > ul.menu__container li .sub-menu {
    display: none;
    border-top: 1px solid #ddd;
    background-color: #eee;
    padding-left: 0;
    font-weight: 400;
    box-shadow: none;
    -moz-box-shadow: none;
}

.mobile-menu > ul.menu li .sub-menu li, .mobile-menu > ul.menu__container li .sub-menu li, #mobile > ul.menu li .sub-menu li, #mobile > ul.menu__container li .sub-menu li {
    border: none;
}

.mobile-menu > ul.menu li .sub-menu li a:hover, .mobile-menu > ul.menu__container li .sub-menu li a:hover, #mobile > ul.menu li .sub-menu li a:hover, #mobile > ul.menu__container li .sub-menu li a:hover {
    color: #da0e2b;
}

@media (min-width: 544px) {
    .mobile-menu > ul.menu li .sub-menu li:last-child, .mobile-menu > ul.menu__container li .sub-menu li:last-child, #mobile > ul.menu li .sub-menu li:last-child, #mobile > ul.menu__container li .sub-menu li:last-child {
        border: none;
    }
}

.mobile-menu > ul.menu li .sub-menu h3, .mobile-menu > ul.menu__container li .sub-menu h3, #mobile > ul.menu li .sub-menu h3, #mobile > ul.menu__container li .sub-menu h3 {
    border: none !important;
}

.mobile-menu > ul.menu li .sub-menu-toggle, .mobile-menu > ul.menu__container li .sub-menu-toggle, #mobile > ul.menu li .sub-menu-toggle, #mobile > ul.menu__container li .sub-menu-toggle {
    display: none;
}

.mobile-menu > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle, .mobile-menu > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle, #mobile > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle, #mobile > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle {
    display: block;
    background-color: rgba(238, 238, 238, 0.5);
    font-size: 15px;
    font-family: Ionicons;
    position: absolute;
    color: #696969;
    right: 0;
    top: 0;
    padding: 0px 20px;
    line-height: 43px;
    z-index: 9999;
    font-style: normal;
    outline: 0;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-menu > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle:before, .mobile-menu > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle:before, #mobile > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle:before, #mobile > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle:before {
    content: '\f3d0';
}

.mobile-menu > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle:hover, .mobile-menu > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle:hover, #mobile > ul.menu li.menu-item.menu-item-has-children > .sub-menu-toggle:hover, #mobile > ul.menu__container li.menu-item.menu-item-has-children > .sub-menu-toggle:hover {
    color: #fff;
    background-color: #da0e2b;
}

.mobile-menu > ul.menu li.expand, .mobile-menu > ul.menu__container li.expand, #mobile > ul.menu li.expand, #mobile > ul.menu__container li.expand {
    background-color: #ddd;
}

.mobile-menu > ul.menu li.expand > .sub-menu-toggle:before, .mobile-menu > ul.menu__container li.expand > .sub-menu-toggle:before, #mobile > ul.menu li.expand > .sub-menu-toggle:before, #mobile > ul.menu__container li.expand > .sub-menu-toggle:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-menu, #mobile {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
    width: 256px;
    left: -256px;
    top: 0;
    bottom: 0;
    z-index: 1001;
    background: #fff;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.vimenu-open-left {
    overflow: hidden;
}

.vimenu-open-left #mobile {
    left: 0;
}

.vimenu-open-left #close-menu {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    z-index: 1000;
}

a.scrollup {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 24px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background-color: #da0e2b;
    position: fixed;
    right: 60px;
    cursor: pointer;
    opacity: 0;
    bottom: 0;
}

a.scrollup:before {
    content: '';
    width: 74px;
    height: 74px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #da0e2b;
    opacity: .3;
    position: absolute;
    top: -9px;
    left: -9px;
    transform: scale(0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a.scrollup.show {
    opacity: 1;
    bottom: 60px;
    color: #fff;
}

a.scrollup.show:hover:before {
    transform: scale(1);
}

body.onepage-scroll .onepage {
    overflow: hidden;
}

body.onepage-scroll .onepage-pagination {
    left: auto;
    right: 100px;
}

body.onepage-scroll .onepage-pagination li {
    margin: 10px 0;
}

body.onepage-scroll .onepage-pagination li a {
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    position: relative;
}

body.onepage-scroll .onepage-pagination li a:before {
    display: none;
}

body.onepage-scroll .onepage-pagination li a:after {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

body.onepage-scroll .onepage-pagination li a.active {
    border-color: #fff;
}

body.onepage-scroll .onepage-pagination li a.active:after {
    transform: scale(0);
}

@media (max-width: 991px) {
    body.onepage-scroll .onepage-pagination {
        right: 30px;
    }
}

/*
Components are the stuff of UI. Eg. buttons, special titles, etc.
These get much more explicitly named: eg. products-list, etc.
*/
.page-title {
    padding-top: 140px;
    padding-bottom: 70px;
    color: #333333;
    text-align: left;
    background-color: #f8f7f7;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    display: block;
}

.page-title.big-style {
    padding-top: 230px;
    padding-bottom: 330px;
}

.page-title .breadcrumbs {
    display: block;
    z-index: 98;
}

.page-title .title {
    display: block;
    position: relative;
    font-family: Merriweather;
    font-weight: 400;
    font-style: normal;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0;
    color: #333333;
    z-index: 97;
    margin-top: 0px;
}

.page-title .title span {
    color: #da0e2b;
}

.rtl .page-title .title {
    text-align: right;
}

.content-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

body.no-padding .content-area {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

body.no-padding .content-area article {
    margin-bottom: 0;
}

body.no-padding .content-area .entry-content {
    margin-bottom: 0;
}

body.no-padding article {
    margin-bottom: 0;
}

.display_none {
    display: none;
}

@media (max-width: 991px) {
    body .page-title {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        /*background-image: none !important;*/
        background-color: #f7f7f7;
        text-align: center;
    }

    body .page-title .title {
        font-size: 30px;
    }

    body .page-title .breadcrumbs {
        margin-top: 10px;
    }
}

.site {
    overflow: hidden;
}

@media (max-width: 543px) {
    .hidden-xs {
        display: none;
    }
}

@media (min-width: 544px) and (max-width: 768px) {
    .hidden-sm {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hidden-md {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .hidden-xl {
        display: none;
    }
}

@media (min-width: 1920px) {
    .hidden-xxl {
        display: none;
    }
}

[visibility='visible'] {
    display: block;
}

[visibility='hidden'] {
    display: none;
}

a.cookie_notice_ok {
    border: 1px solid #da0e2b;
    padding: 2px 5px;
    border-radius: 2px;
    display: block;
    margin-top: 10px;
    text-align: center;
}

a.cookie_notice_ok:hover {
    background-color: #da0e2b !important;
    color: #fff !important;
}

.tf-bubble {
    position: fixed;
    top: 50%;
    right: 20px;
    height: 1px;
    z-index: 9999997;
    display: inline-block;
}

.tf-bubble .bubble-content {
    visibility: hidden;
    position: absolute;
    padding: 20px 30px;
    font-size: 13px;
    top: 0;
    right: 90px;
    margin-top: -39px;
    background: #fff;
    width: 300px;
    z-index: 1;
    text-align: center;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.tf-bubble .bubble-content:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 33px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #fff;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tf-bubble .bubble-btn {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #da0e2b;
    text-align: center;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.tf-bubble .bubble-btn a {
    color: #fff;
}

.tf-bubble .bubble-btn span {
    font-size: 10px;
    display: block;
    line-height: 1;
    padding: 13px 0 2px 0;
}

.tf-bubble .bubble-btn strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.tf-bubble:hover .bubble-content {
    opacity: 1;
    visibility: visible;
}

.tf-bubble:hover .bubble-btn {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

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

body.page div.wpcf7-validation-errors {
    border: none;
    background-color: #f4f4f4;
    padding: 15px;
    margin: 30px 0 0 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

body.page div.wpcf7-mail-sent-ok {
    border: none;
    background-color: #da0e2b;
    color: #fff;
    padding: 15px;
    margin: 30px 0 0 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

body.page .comments-area {
    margin-top: 60px;
}

body.page .comments-area .comment-reply-title,
body.page .comments-area .comments-title {
    font-size: 18px;
    font-family: 'Playfair Display';
    color: #333333;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

body.page .comments-area .comment-list {
    padding-left: 0;
    padding-right: 0;
    list-style: none;
    margin: 40px 0;
}

body.page .comments-area .comment-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f4f4f4;
}

body.page .comments-area .comment-list li.comment {
    list-style-type: none;
}

body.page .comments-area .comment-list li article {
    margin: 0;
    padding-left: 100px;
    position: relative;
}

body.page .comments-area .comment-list li article .comment-author {
    display: inline-block;
    color: #333333;
}

body.page .comments-area .comment-list li article .comment-author img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

body.page .comments-area .comment-list li article .comment-author .fn {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
}

body.page .comments-area .comment-list li article .comment-author .says {
    display: none;
}

body.page .comments-area .comment-list li article .comment-metadata {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    color: #ababab;
    font-family: 'Playfair Display';
    font-style: italic;
    letter-spacing: 0.05em;
}

body.page .comments-area .comment-list li article .comment-metadata a {
    color: #8e8b87;
}

body.page .comments-area .comment-list li article .comment-metadata:before {
    content: '\f21b';
    font-family: Ionicons;
    color: #ababab;
    font-style: normal;
    font-size: 5px;
    margin-right: 20px;
}

body.page .comments-area .comment-list li article .comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #696969;
}

body.page .comments-area .comment-list li article .comment-content table td, body.page .comments-area .comment-list li article .comment-content table th {
    border: 1px solid #ccc;
    padding: 5px 10px;
}

body.page .comments-area .comment-list li article .comment-content li {
    padding: 5px;
    border: none;
}

body.page .comments-area .comment-list li article .reply a {
    color: #696969;
    font-family: 'Playfair Display';
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #da0e2b;
    opacity: .5;
}

body.page .comments-area .comment-list li article .reply a:before {
    content: '\f21e';
    font-family: Ionicons;
    margin-right: 5px;
}

body.page .comments-area .comment-list li article .reply a:hover {
    opacity: 1;
}

body.page .comments-area .comment-list li .children {
    margin-top: 20px;
    padding-left: 100px;
}

body.page .comments-area .comment-list li .children li {
    border-bottom: none;
    border-top: 1px solid #f4f4f4;
}

body.page .comments-area .comment-list li .children li:last-child {
    padding-bottom: 0;
}

body.page .comments-area .comment-list li:last-child {
    border-bottom: none;
}

body.page .comments-area .comment-respond {
    margin-top: 30px;
}

body.page .comments-area .comment-form .logged-in-as {
    margin-bottom: 15px;
}

body.page .comments-area .comment-form input[type="email"],
body.page .comments-area .comment-form input[type="number"],
body.page .comments-area .comment-form input[type="text"] {
    height: 40px;
    line-height: 38px;
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 15px;
    color: #8e8b87;
    width: 100%;
    outline: none;
}

body.page .comments-area .comment-form input[type="email"]:focus,
body.page .comments-area .comment-form input[type="number"]:focus,
body.page .comments-area .comment-form input[type="text"]:focus {
    border-color: #da0e2b;
}

body.page .comments-area .comment-form input[type="submit"] {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

body.page .comments-area .comment-form textarea {
    min-height: 150px;
    padding: 15px;
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 15px;
    color: #8e8b87;
    outline: none;
}

body.page .comments-area .comment-form textarea:focus {
    border-color: #da0e2b;
}

body.page .comments-area .comment-form p {
    margin: 0;
}

body.page .comments-area .comment-form .row, body.page .comments-area .comment-form .insight-carousel .slick-track, .insight-carousel body.page .comments-area .comment-form .slick-track {
    margin-bottom: 30px;
}

body.error404 {
    background-color: #fff;
    background-image: url("assets/images/404_bg.jpg");
    background-position: center;
    background-size: cover;
}

body.error404 nav, body.error404 .footer, body.error404 .copyright, body.error404 .footer-newsletter, body.error404 #open-search {
    display: none !important;
}

body.error404 header.header-desktop {
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

body.error404 .content-404 {
    text-align: center;
    padding: 60px 0;
    z-index: 97;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.error404 .content-404 img {
    margin: 30px 0;
}

body.error404 .content-404 h3 {
    font-size: 24px;
    color: #333333;
    font-family: Montserrat;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4em;
    text-align: center;
}

body.error404 .content-404 span {
    font-size: 14px;
    color: #696969;
    font-family: Montserrat;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
}

body.error404 .content-404 span a {
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 1px solid #333333;
}

body.error404 .content-404 span a:hover {
    border-color: #da0e2b;
}

body.error404 .contact-404 {
    width: 360px;
    height: 189px;
    display: block;
    font-size: 24px;
    font-weight: 700;
    padding-top: 120px;
    padding-left: 40px;
    line-height: 1;
    color: #da0e2b;
    font-family: Montserrat;
    background-image: url("assets/images/404_contact_bg.png");
    overflow: hidden;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 98;
}

body.error404 .contact-404:hover {
    color: #fff;
}

body.error404 .follow-404 {
    height: 24px;
    line-height: 24px;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: fixed;
    top: 50%;
    right: -120px;
}

body.error404 .follow-404 .follow-404-socials {
    display: inline-block;
    float: left;
}

body.error404 .follow-404 .follow-404-socials a {
    display: inline-block;
    font-size: 20px;
    color: #ababab;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-right: 30px;
}

body.error404 .follow-404 .follow-404-socials a:hover {
    color: #da0e2b;
}

body.error404 .follow-404 .follow-404-text {
    line-height: 24px;
    white-space: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
    color: #333333;
    display: inline-block;
    margin-left: 30px;
}

body.error404 .follow-404 .follow-404-text:before {
    content: '';
    width: 60px;
    height: 1px;
    display: inline-block;
    background-color: #d0d1d1;
    margin-right: 20px;
    vertical-align: middle;
}

body.error404.admin-bar header.header-desktop {
    top: 32px;
}

.no-results .entry-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #392a25;
}

.no-results .entry-content p {
    margin: 0;
}

.blogger-template .sidebar {
    background-color: #f8f8f8;
    padding: 0 40px 100px 40px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .blogger-template .sidebar {
        padding: 0 15px 100px 15px;
    }
}

.blogger-template .sidebar .widget .insight-social li a {
    border: 2px solid #f0f0f0;
}

.blogger-template .sidebar .widget .insight-social li a:hover {
    color: #fff;
    background-color: #da0e2b;
    border-color: #da0e2b;
}

.blogger-template .sidebar a, .blogger-template .sidebar .widget-area .widget .widget-title {
    color: #333;
    font-weight: 400;
    font-family: Merriweather;
}

.blogger-template .sidebar .widget-area .widget .widget-title {
    letter-spacing: 0.05em;
    position: relative;
    padding-top: 15px;
    display: inline-block;
    clear: both;
    font-size: 24px;
    margin-top: 20px;
}

.blogger-template .sidebar .widget-area .widget .widget-title:before {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: #e0e0e0;
    left: -40px;
    right: -1000px;
    top: 0;
}

.blogger-template .sidebar .widget-area .widget .widget-title:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    background-color: #da0e2b;
    top: -5px;
    left: 0;
    right: 0;
    width: auto;
}

.blogger-template .sidebar .widget-area .widget.widget_tag_cloud a {
    background: rgba(51, 51, 51, 0.1);
    border-color: rgba(51, 51, 51, 0.1);
    color: #ababab;
}

.blogger-template .sidebar .widget-area .widget.widget_tag_cloud a:hover {
    border-color: #333;
    color: #333;
}

.blogger-template .main {
    padding: 100px;
}

@media (max-width: 1199px) {
    .blogger-template .main {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .blogger-template .main {
        padding: 20px;
    }
}

.blogger-template .main .blog-grid-style {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 50px;
}

@media (max-width: 1919px) {
    .blogger-template .main .blog-grid-style {
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .blogger-template .main .blog-grid-style {
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
}

.blogger-template .main .blog-grid-style .entry-title {
    font-weight: 400;
}

.blogger-template .main .blog-grid-style .post-thumbnail img {
    width: 100%;
}

.entry-content table tr td,
.entry-content table tr th {
    border: 1px solid #e2e2e2;
    padding: 5px 10px;
}

.entry-content .page-links a {
    padding: 5px 10px;
    display: inline-block;
}

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

.group-blog .byline,
.single .byline {
    display: inline;
}

.archive .format-aside .entry-title,
.blog .format-aside .entry-title {
    display: none;
}

.single.post--style--style02 .content .single-post-thumbnail {
    text-align: center;
}

@media (min-width: 769px) {
    .single.post--style--style02 .content .single-post-thumbnail {
        margin-left: -190px;
        margin-right: -190px;
    }
}

.single.post--style--style02 .content .single-post-thumbnail .insight-list-categories {
    position: static;
    margin-top: 45px;
}

.single.post--style--style02 .content .content-area {
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

.single.post--style--style02 .content .content-area .entry-title {
    font-size: 34px;
    text-align: center;
}

.single.post--style--style02 .content .content-area .meta {
    text-align: center;
}

.single .content article {
    margin-bottom: 30px;
}

.single .content .post-quote,
.single .content .post-video {
    margin-bottom: 25px;
}

.single .content .content-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

.single .content .content-area figure.alignleft {
    margin: 8px 50px 20px 0;
}

.single .content .content-area figure.alignright {
    margin: 8px 0 20px 50px;
}

.single .content .content-area figure .wp-caption-text {
    font-size: 14px;
    color: #ababab;
}

.single .content .content-area .single-post-thumbnail {
    margin-bottom: 35px;
}

.single .content .content-area .meta {
    margin-bottom: 15px;
}

.single .content .content-area .entry-title {
    margin-bottom: 15px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
}

.single .content .content-area .entry-content blockquote {
    font-size: 20px;
    line-height: 1.5;
    color: #ababab;
    font-style: italic;
    position: relative;
    margin-bottom: 50px;
    padding-top: 5px;
}

@media (min-width: 769px) {
    .single .content .content-area .entry-content blockquote {
        margin-right: 70px;
        margin-left: 70px;
    }
}

.single .content .content-area .entry-footer {
    margin-bottom: 20px;
}

.single .content .content-area .entry-footer .tags .tag-icon {
    color: #ababab;
    font-size: 16px;
    margin-right: 15px;
}

.single .content .content-area .entry-footer .tags a {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
    color: #ababab;
    margin-right: 5px;
    margin-bottom: 8px;
    display: inline-block;
}

.single .content .content-area .entry-footer .tags a:hover {
    color: #da0e2b;
}

.single .content .content-area .entry-footer .entry-share {
    text-align: right;
}

.single .content .content-area .entry-footer .entry-share span {
    margin-left: 10px;
}

.single .content .entry-author {
    padding: 40px 0;
    border-top: 1px solid #f4f4f4;
}

.single .content .entry-author img {
    border-radius: 50%;
    border: 5px solid #f2f2f2;
}

.single .content .entry-author .name {
    font-size: 14px;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.single .content .entry-author .desc {
    font-size: 15px;
    line-height: 1.6em;
    color: #696969;
}

.single .content .entry-nav {
    padding: 40px 30px;
    background: #f8f7f7;
    border: 1px solid #f4f4f4;
    font-size: 18px;
    font-weight: 700;
}

.single .content .entry-nav a {
    text-transform: none;
    color: #ababab;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
    display: inline-block;
    vertical-align: middle;
}

.single .content .entry-nav .left {
    text-align: left;
}

.single .content .entry-nav .left a {
    padding-left: 10px;
}

.single .content .entry-nav .center {
    text-align: center;
}

.single .content .entry-nav .right {
    text-align: right;
}

.single .content .entry-nav .right a {
    padding-right: 10px;
}

.single .content .entry-nav .left,
.single .content .entry-nav .right {
    overflow: hidden;
}

.single .content .entry-nav .left i,
.single .content .entry-nav .right i {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #ababab;
}

.single .content .entry-nav .left:hover a,
.single .content .entry-nav .right:hover a {
    color: #332b28;
}

.single .content .entry-nav .left:hover i,
.single .content .entry-nav .right:hover i {
    color: #da0e2b;
}

.single .content .comments-area {
    margin-top: 60px;
}

.single .content .comments-area .comment-reply-title,
.single .content .comments-area .comments-title {
    font-family: Merriweather;
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: bold;
}

.single .content .comments-area .comment-reply-title:after,
.single .content .comments-area .comments-title:after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    margin-top: 5px;
}

.single .content .comments-area .comment-list {
    padding-left: 0;
    list-style: none;
    margin: 40px 0;
}

.single .content .comments-area .comment-list li {
    padding: 20px 0;
}

.single .content .comments-area .comment-list li.comment {
    list-style-type: none;
}

.single .content .comments-area .comment-list li article {
    margin: 0;
    padding-left: 90px;
    position: relative;
}

.single .content .comments-area .comment-list li article .comment-author {
    display: inline-block;
    color: #333333;
}

.single .content .comments-area .comment-list li article .comment-author img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.single .content .comments-area .comment-list li article .comment-author .fn {
    letter-spacing: 0.05em;
    font-size: 16px;
    text-transform: capitalize;
}

.single .content .comments-area .comment-list li article .comment-author .says {
    display: none;
}

.single .content .comments-area .comment-list li article .comment-metadata {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    color: #ababab;
}

.single .content .comments-area .comment-list li article .comment-metadata a {
    color: #8e8b87;
}

.single .content .comments-area .comment-list li article .comment-metadata:before {
    content: '\f21b';
    font-family: Ionicons;
    color: #e0e0e0;
    font-style: normal;
    font-size: 5px;
    margin-right: 20px;
}

.single .content .comments-area .comment-list li article .comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #696969;
}

.single .content .comments-area .comment-list li article .comment-content table td,
.single .content .comments-area .comment-list li article .comment-content table th {
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.single .content .comments-area .comment-list li article .comment-content li {
    padding: 5px;
    border: none;
}

.single .content .comments-area .comment-list li article .reply {
    margin-top: -8px;
}

.single .content .comments-area .comment-list li article .reply a {
    color: #ccc;
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 12px;
}

.single .content .comments-area .comment-list li article .reply a:before {
    content: '\f21e';
    font-family: Ionicons;
    margin-right: 5px;
    font-size: 16px;
}

.single .content .comments-area .comment-list li article .reply a:hover {
    color: #da0e2b;
}

.single .content .comments-area .comment-list li .children {
    margin-top: 40px;
    padding-left: 0;
}

@media (min-width: 769px) {
    .single .content .comments-area .comment-list li .children {
        padding-left: 100px;
    }
}

.single .content .comments-area .comment-list li .children li {
    margin-top: 30px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
    border-bottom: none;
    border-left: 1px solid #ccc;
}

.single .content .comments-area .comment-list li .children li:last-child {
    padding-bottom: 0;
}

.single .content .comments-area .comment-list li:last-child {
    border-bottom: none;
}

.single .content .comments-area .comment-respond {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .single .content .comments-area .comment-form .col-md-4, .single .content .comments-area .comment-form .form-submit {
        margin-bottom: 20px;
    }
}

.single .content .comments-area .comment-form .logged-in-as {
    margin-bottom: 15px;
}

.single .content .comments-area .comment-form input[type="email"],
.single .content .comments-area .comment-form input[type="number"],
.single .content .comments-area .comment-form input[type="text"] {
    height: 40px;
    line-height: 38px;
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 15px;
    color: #8e8b87;
    width: 100%;
    outline: none;
}

.single .content .comments-area .comment-form input[type="email"]:focus,
.single .content .comments-area .comment-form input[type="number"]:focus,
.single .content .comments-area .comment-form input[type="text"]:focus {
    border-color: #da0e2b;
}

.single .content .comments-area .comment-form input[type="submit"] {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.single .content .comments-area .comment-form textarea {
    min-height: 150px;
    padding: 15px;
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 15px;
    color: #8e8b87;
    outline: none;
}

.single .content .comments-area .comment-form textarea:focus {
    border-color: #da0e2b;
}

.single .content .comments-area .comment-form p {
    margin: 0;
}

.single .content .comments-area .comment-form .row, .single .content .comments-area .comment-form .insight-carousel .slick-track, .insight-carousel .single .content .comments-area .comment-form .slick-track {
    margin-bottom: 30px;
}

.entry-title {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover .entry-title {
    color: #da0e2b;
}

.blog-list-v1 .post-thumbnail,
.blog-list-v1 .single-post-thumbnail,
.blog-list-v3 .post-thumbnail,
.blog-list-v3 .single-post-thumbnail,
.blog-grid-style .post-thumbnail,
.blog-grid-style .single-post-thumbnail,
.single-post .post-thumbnail,
.single-post .single-post-thumbnail {
    position: relative;
}

.blog-list-v1 .post-thumbnail .insight-list-categories,
.blog-list-v1 .single-post-thumbnail .insight-list-categories,
.blog-list-v3 .post-thumbnail .insight-list-categories,
.blog-list-v3 .single-post-thumbnail .insight-list-categories,
.blog-grid-style .post-thumbnail .insight-list-categories,
.blog-grid-style .single-post-thumbnail .insight-list-categories,
.single-post .post-thumbnail .insight-list-categories,
.single-post .single-post-thumbnail .insight-list-categories {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.blog-list-v2 .insight-list-categories {
    margin-top: -4px;
    margin-bottom: 10px;
}

.blog-list-v1 .entry-title {
    margin-top: 15px;
}

.blog-list-v1.blog-classic-style .meta {
    margin-top: 90px;
}

.blog-list-v1 .entry-desc {
    padding-left: 50px;
}

.insight-list-categories a {
    font-size: 12px;
    color: #fff !important;
    letter-spacing: 0.1em;
    background-color: #da0e2b;
    display: inline-block !important;
    width: auto;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
}

.blog-classic-style .meta,
.single-post .meta,
.blog-grid-style .meta {
    margin-top: 20px;
}

.blog-classic-style .meta > span,
.single-post .meta > span,
.blog-grid-style .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.blog-classic-style .meta > span.view:before,
.single-post .meta > span.view:before,
.blog-grid-style .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.blog-classic-style .meta > span.share:before,
.single-post .meta > span.share:before,
.blog-grid-style .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.blog-classic-style .meta > span.like a:before,
.single-post .meta > span.like a:before,
.blog-grid-style .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.blog-classic-style .meta > span.like a.liked:before,
.single-post .meta > span.like a.liked:before,
.blog-grid-style .meta > span.like a.liked:before {
    content: '\f388';
}

.blog-classic-style .meta > span.like a.loading:before,
.single-post .meta > span.like a.loading:before,
.blog-grid-style .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.blog-classic-style .meta > span.comment:before,
.single-post .meta > span.comment:before,
.blog-grid-style .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.single-ic_project .content-area blockquote {
    font-size: 20px;
    font-style: italic;
    color: #ababab;
    font-weight: 400;
    padding: 20px 60px;
    margin: 0;
}

.single-ic_project .content-area blockquote p {
    margin: 0 0 20px 0;
}

.single-ic_project .content-area blockquote p:last-child {
    margin: 0;
}

.project-list-style .project-list-item:nth-child(odd) .col-thumb {
    padding-right: 0;
}

.project-list-style .project-list-item:nth-child(odd) .col-info .info .title:before {
    content: '';
    width: 60px;
    height: 1px;
    display: block;
    background-color: #da0e2b;
    position: absolute;
    top: 50%;
    left: -80px;
}

.project-list-style .project-list-item:nth-child(even) .col-md-6:first-child {
    order: 1;
}

.project-list-style .project-list-item:nth-child(even) .col-thumb {
    padding-left: 0;
}

.project-list-style .project-list-item:nth-child(even) .col-info .info {
    text-align: right;
}

.project-list-style .project-list-item:nth-child(even) .col-info .info .title:after {
    content: '';
    width: 60px;
    height: 1px;
    display: block;
    background-color: #da0e2b;
    position: absolute;
    top: 50%;
    right: -80px;
}

.project-list-style .project-list-item .col-thumb .thumb {
    width: 100%;
    overflow: hidden;
}

.project-list-style .project-list-item .col-thumb .thumb img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.project-list-style .project-list-item .col-info .info {
    padding: 30px;
}

.project-list-style .project-list-item .col-info .info .title {
    font-size: 24px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
    display: block;
    position: relative;
}

.project-list-style .project-list-item .col-info .info .title a {
    color: #333333;
}

.project-list-style .project-list-item .col-info .info .title a:hover {
    color: #da0e2b;
}

.project-list-style .project-list-item .col-info .info .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.project-list-style .project-list-item .col-info .info .category a:last-child {
    margin-right: 0;
}

.project-list-style .project-list-item .col-info .info .category a:hover {
    color: #da0e2b;
}

.project-list-style .project-list-item .col-info .info .excerpt {
    display: block;
    margin-top: 20px;
}

.project-list-style .project-list-item .col-info .info .meta {
    margin-top: 20px;
    font-size: 14px;
    color: #696969;
}

.project-list-style .project-list-item .col-info .info .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.project-list-style .project-list-item .col-info .info .meta > span a {
    color: #696969;
}

.project-list-style .project-list-item .col-info .info .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-list-style .project-list-item .col-info .info .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-list-style .project-list-item .col-info .info .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.project-list-style .project-list-item .col-info .info .meta > span.like a.liked:before {
    content: '\f388';
}

.project-list-style .project-list-item .col-info .info .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.project-list-style .project-list-item .col-info .info .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-list-style .project-list-item .col-info .info .meta > span:last-child {
    margin-right: 0;
}

.project-list-style .project-list-item:hover .col-thumb .thumb img {
    transform: scale(1.1);
}

.project-grid-style .project-grid-item {
    margin-bottom: 30px;
}

.project-grid-style .project-grid-item .project-grid-item-inner {
    display: block;
    width: 100%;
    background-color: #fff;
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.project-grid-style .project-grid-item .project-grid-item-inner .thumb {
    overflow: hidden;
}

.project-grid-style .project-grid-item .project-grid-item-inner .thumb img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info {
    padding: 20px 30px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .title a {
    font-size: 18px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .title a:hover {
    color: #da0e2b;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .category a {
    font-size: 12px;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    color: #ccc;
    display: inline-block;
    margin-right: 20px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .category a:hover {
    color: #da0e2b;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta {
    margin-top: 20px;
    font-size: 14px;
    color: #696969;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span {
    display: inline-block;
    margin-right: 20px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span a {
    color: #696969;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.view:before {
    content: '\f133';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.share:before {
    content: '\f3ac';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.like a:before {
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
    display: inline-block;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.like a.liked:before {
    content: '\f388';
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.like a.loading:before {
    content: '\f3b1';
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span.comment:before {
    content: '\f11a';
    font-family: Ionicons;
    font-size: 16px;
    color: #da0e2b;
    margin-right: 10px;
}

.project-grid-style .project-grid-item .project-grid-item-inner .info .meta > span:last-child {
    margin-right: 0;
}

.project-grid-style .project-grid-item .project-grid-item-inner:hover .thumb img {
    -webkit-filter: grayscale(0%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
    transform: scale(1.1);
}

.project-grid-style .project-grid-item.insight-filter-item-featured .project-grid-item-inner .thumb {
    position: relative;
}

.project-grid-style .project-grid-item.insight-filter-item-featured .project-grid-item-inner .thumb:before {
    content: '';
    width: 24px;
    height: 42px;
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    background-image: url("assets/images/featured_label.png");
    background-repeat: no-repeat;
    z-index: 8;
}

@media (max-width: 768px) {
    .project-list-style .project-list-item:nth-child(odd) .col-thumb {
        padding-right: 15px;
    }

    .project-list-style .project-list-item:nth-child(even) .col-md-6:first-child {
        order: 0;
    }

    .project-list-style .project-list-item:nth-child(even) .col-thumb {
        padding-left: 15px;
    }

    .project-list-style .project-list-item:nth-child(even) .col-info .info {
        text-align: left;
    }

    .project-list-style .project-list-item .col-info .info {
        padding: 30px 0 60px 0;
    }

    .project-list-style .project-list-item .col-info .info .title:before, .project-list-style .project-list-item .col-info .info .title:after {
        display: none !important;
    }
}

.widget-area .widget {
    margin: 0 0 50px 0;
}

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

.widget-area .widget ul {
    margin: 0;
    padding: 0;
}

.widget-area .widget ul li {
    margin: 0;
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #f4f4f4;
}

.widget-area .widget ul li:first-child {
    padding-top: 0;
}

.widget-area .widget ul li:last-child {
    border-bottom: none;
}

.widget-area .widget .insight-social li {
    display: inline-block;
    border: none;
    margin-right: 10px;
}

.widget-area .widget .insight-social li a:hover {
    border-color: #fff;
    background-color: #fff;
    color: #da0e2b;
}

.widget-area .widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    font-family: Merriweather;
}

.widget-area .widget .widget-title:after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #da0e2b;
    margin-top: 5px;
}

.widget-area .widget.widget_search .search-form {
    position: relative;
}

.widget-area .widget.widget_search .search-form input[type="search"] {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #f4f4f4;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 400;
    box-sizing: border-box;
}

.widget-area .widget.widget_search .search-form input[type="search"]:focus {
    border-color: #da0e2b;
}

.widget-area .widget.widget_search .search-form input[type="submit"] {
    position: absolute;
    height: 40px;
    width: 40px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMkY0MjFCMjU1NjAxMUU2ODI5N0Q5NzgxMkM0RkYzRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMkY0MjFCMzU1NjAxMUU2ODI5N0Q5NzgxMkM0RkYzRSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUyRjQyMUIwNTU2MDExRTY4Mjk3RDk3ODEyQzRGRjNFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUyRjQyMUIxNTU2MDExRTY4Mjk3RDk3ODEyQzRGRjNFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+CwlOKQAAAUpJREFUeNrsmN9twjAQxn0VC2QFd4QyQhihK9BnUBHeoLaoynMzQjsCGSGswAqMYL5zjRCCNmogHA930umsOIafvvsTCMUYzT3bg7lzU0AFVEAFVEAFVEBZG1xyePnunxDmJprndIHg0QTEMHl1W1EFATcGTIPlejJzxI71I+AsYoN9ew1A6vJ7kJXDsYbIjKBUfbK/8B6gJfaGUgrOAVedg2ODmg6hSCoLAZbw75Z7apRAeXNAqFIgvQWWbU2wQZqLmwNyd9IPXNuXWyi4EUlx5PSZPFr+LoO1CCAaJCCMke7ylzLwuVkqkTGTIVjBL7hD2kO+xrPPp8FN6TYe2E4E8OhJckg312aVO5zhLT4+TGfdIamvP+5ZzVVqlguUpD7fLOCJYpHqPeQLIP9fkwzYp38s3iz8s+t50nczCqiACqiACqiAorYTYAC8LOYIsg7imAAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-color: transparent;
    box-shadow: none;
    font-size: 0;
    border: none;
    line-height: 40px;
    padding: 0;
    top: 0;
    right: 0;
}

.widget-area .widget.widget_tag_cloud a {
    padding: 8px 15px;
    background: #f6f7f7;
    border: 1px solid #f6f7f7;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px !important;
    display: inline-block;
    color: #ababab;
    margin-right: 5px;
    margin-bottom: 7px;
    line-height: 1;
    font-family: Montserrat;
}

.widget-area .widget.widget_tag_cloud a:hover {
    border-color: #da0e2b;
    background-color: #da0e2b;
    color: #fff;
}

.widget-area .widget.widget_insight_posts .item {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.widget-area .widget.widget_insight_posts .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-area .widget.widget_insight_posts .item .thumb {
    max-width: 120px;
    float: left;
    margin-right: 20px;
}

.widget-area .widget.widget_insight_posts .item .info {
    line-height: 1.6em;
    margin-top: -7px;
}

.widget-area .widget.widget_insight_posts .item .info .title {
    display: block;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.widget-area .widget.widget_insight_posts .item .info .date {
    display: block;
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.widget-area .widget.widget_insight_categories .item {
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}

.widget-area .widget.widget_insight_categories .item a {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 20px;
    z-index: 98;
    font-size: 14px;
}

.widget-area .widget.widget_insight_categories .item a:after {
    content: "";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid #f4f4f4;
    z-index: 98;
}

.widget-area .widget.widget_insight_categories .item a:before {
    content: "\f111";
    font-family: FontAwesome;
    font-size: 6px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #e2e2e2;
}

.widget-area .widget.widget_insight_categories .item a:hover:before {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #da0e2b;
}

.widget-area .widget.widget_insight_categories .item span {
    position: absolute;
    right: 0;
    top: -4px;
    height: 22px;
    background-color: #fff;
    z-index: 99;
    display: block;
    text-align: right;
    color: #696969;
    border-radius: 50%;
    min-width: 32px;
    min-height: 32px;
    line-height: 32px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.widget-area .widget.widget_insight_categories .item:last-child {
    margin-bottom: 0;
}

.widget-area .widget.widget_insight_categories .item:hover span {
    background-color: #da0e2b;
    color: #fff;
}

.widget .insight-aboutme .about-title {
    font-size: 56px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: .8;
    margin-top: -150px;
}

@media (max-width: 1199px) {
    .widget .insight-aboutme .about-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .widget .insight-aboutme .about-title {
        font-size: 30px;
    }
}

.widget .insight-aboutme .avatar img {
    width: 100%;
}

.widget .insight-aboutme .desc {
    margin-bottom: 10px;
}

.widget .insight-aboutme .desc h1, .widget .insight-aboutme .desc h2, .widget .insight-aboutme .desc h3, .widget .insight-aboutme .desc h4, .widget .insight-aboutme .desc h5, .widget .insight-aboutme .desc h6 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.widget .insight-aboutme .desc, .widget .insight-aboutme .desc * {
    color: #696969;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item {
    position: relative;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a .item-info {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a .item-info span {
    display: block;
    color: #fff;
    line-height: 1.2em;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a .item-info span.likes:before {
    content: '\f141';
    font-family: Ionicons;
    display: inline-block;
    margin-right: 5px;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a .item-info span.comments:before {
    content: '\f11e';
    font-family: Ionicons;
    display: inline-block;
    margin-right: 5px;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a:hover:before {
    opacity: 1;
    visibility: visible;
}

.widget.widget_insight_instagram .insight-instagram-wrap .insight-instagram-row .item a:hover .item-info {
    opacity: 1;
    visibility: visible;
}

.widget.widget_insight_instagram .insight-instagram-wrap .row, .widget.widget_insight_instagram .insight-instagram-wrap .insight-carousel .slick-track, .insight-carousel .widget.widget_insight_instagram .insight-instagram-wrap .slick-track {
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 16px;
}

.widget.widget_insight_instagram .insight-instagram-wrap .row [class*='col-'], .widget.widget_insight_instagram .insight-instagram-wrap .insight-carousel .slick-track [class*='col-'], .insight-carousel .widget.widget_insight_instagram .insight-instagram-wrap .slick-track [class*='col-'] {
    padding-left: 8px;
    padding-right: 8px;
}

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

.bypostauthor {
    display: block;
}

.insight-pagination {
    margin-top: 40px;
    text-align: center;
    text-transform: uppercase;
}

.insight-pagination a,
.insight-pagination span {
    width: 40px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
    display: inline-block;
}

.insight-pagination a.current,
.insight-pagination span.current {
    color: #da0e2b;
}

.insight-pagination a.prev,
.insight-pagination span.prev {
    border: none;
    margin-right: 10px;
    width: auto;
}

.insight-pagination a.prev:before,
.insight-pagination span.prev:before {
    content: '\f3d2';
    font-family: Ionicons;
    margin-right: 10px;
}

.insight-pagination a.next,
.insight-pagination span.next {
    border: none;
    margin-left: 10px;
    width: auto;
}

.insight-pagination a.next:after,
.insight-pagination span.next:after {
    content: '\f3d3';
    font-family: Ionicons;
    margin-left: 10px;
}

.insight-pagination a {
    font-size: 14px;
    border: none;
}

.insight-pagination a:hover {
    background: none;
    color: #da0e2b;
}

.insight-pagination .page-numbers.current {
    border-radius: 50%;
    height: 40px;
}

.blog-list-style {
    margin-bottom: 40px;
}

.blog-list-style .post-thumbnail {
    position: relative;
}

.blog-list-style .post-thumbnail img {
    width: 100%;
    height: auto;
    padding: 17px;
    border: 3px solid #f4f4f4;
    z-index: 97;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.blog-list-style .post-thumbnail:after, .blog-list-style .post-thumbnail:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.blog-list-style .post-thumbnail:before {
    border-top: 3px solid #da0e2b;
    border-bottom: 3px solid #da0e2b;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.blog-list-style .post-thumbnail:after {
    border-right: 3px solid #da0e2b;
    border-left: 3px solid #da0e2b;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.blog-list-style:hover .post-thumbnail:after, .blog-list-style:hover .post-thumbnail:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.blog-list-style:hover .post-thumbnail:after {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.blog-list-style .entry-meta {
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-list-style .entry-meta span {
    margin-right: 20px;
    color: #aaaaaa;
}

.blog-list-style .entry-meta span i {
    margin-right: 5px;
    font-size: 15px;
}

.blog-list-style .entry-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333333;
    position: relative;
}

.blog-list-style .entry-title:before {
    content: '';
    width: 60px;
    height: 1px;
    background: #da0e2b;
    display: block;
    position: absolute;
    left: -70px;
    top: 20px;
}

.blog-list-style .entry-content {
    font-size: 15px;
    color: #696969;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-list-style .entry-more a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #696969;
}

.blog-list-style .entry-more a:hover {
    color: #da0e2b;
}

.blog-list-style .no-thumbnail .entry-title:before {
    display: none;
}

.sticky .col-md-5,
.sticky .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
}

.sticky.blog-list-style .entry-title {
    font-size: 30px;
    border-left: 3px solid #da0e2b;
    padding-left: 14px;
}

.sticky.blog-list-style .entry-title:before {
    display: none;
}

.sticky .post-thumbnail {
    margin-bottom: 30px;
}

.no-results .entry-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    font-family: Montserrat;
}

.blog-grid .post,
.insight-blog.grid .post,
.insight-blog.grid_has_padding .post {
    width: 33.33%;
}

@media (max-width: 991px) {
    .blog-grid .post,
    .insight-blog.grid .post,
    .insight-blog.grid_has_padding .post {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .blog-grid .post,
    .insight-blog.grid .post,
    .insight-blog.grid_has_padding .post {
        width: 100%;
    }
}

.blog-grid .blog-grid-style,
.insight-blog.grid .blog-grid-style,
.insight-blog.grid_has_padding .blog-grid-style {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .blog-grid .blog-grid-style,
    .insight-blog.grid .blog-grid-style,
    .insight-blog.grid_has_padding .blog-grid-style {
        margin-bottom: 50px;
    }
}

.blog-grid .blog-grid-style .inner,
.insight-blog.grid .blog-grid-style .inner,
.insight-blog.grid_has_padding .blog-grid-style .inner {
    box-shadow: 5px 5px 20px #eee;
}

.blog-grid .blog-grid-style .post-thumbnail,
.insight-blog.grid .blog-grid-style .post-thumbnail,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.blog-grid .blog-grid-style .post-thumbnail:after, .blog-grid .blog-grid-style .post-thumbnail:before,
.insight-blog.grid .blog-grid-style .post-thumbnail:after,
.insight-blog.grid .blog-grid-style .post-thumbnail:before,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail:after,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    z-index: 97;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.blog-grid .blog-grid-style .post-thumbnail:before,
.insight-blog.grid .blog-grid-style .post-thumbnail:before,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail:before {
    left: -100%;
}

.blog-grid .blog-grid-style .post-thumbnail:after,
.insight-blog.grid .blog-grid-style .post-thumbnail:after,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail:after {
    right: -100%;
}

.blog-grid .blog-grid-style .post-thumbnail > a,
.insight-blog.grid .blog-grid-style .post-thumbnail > a,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail > a {
    display: block;
}

.blog-grid .blog-grid-style .post-thumbnail > a:before,
.insight-blog.grid .blog-grid-style .post-thumbnail > a:before,
.insight-blog.grid_has_padding .blog-grid-style .post-thumbnail > a:before {
    z-index: 98;
    content: '\f489';
    font-family: Ionicons;
    font-size: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0;
    margin-left: -20px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.blog-grid .blog-grid-style .entry-meta,
.insight-blog.grid .blog-grid-style .entry-meta,
.insight-blog.grid_has_padding .blog-grid-style .entry-meta {
    margin-bottom: 10px;
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: Montserrat;
}

.blog-grid .blog-grid-style .entry-meta span,
.insight-blog.grid .blog-grid-style .entry-meta span,
.insight-blog.grid_has_padding .blog-grid-style .entry-meta span {
    margin-right: 20px;
    color: #ccc;
}

.blog-grid .blog-grid-style .entry-meta span i,
.insight-blog.grid .blog-grid-style .entry-meta span i,
.insight-blog.grid_has_padding .blog-grid-style .entry-meta span i {
    margin-right: 5px;
    font-size: 15px;
}

.blog-grid .blog-grid-style .entry-title,
.insight-blog.grid .blog-grid-style .entry-title,
.insight-blog.grid_has_padding .blog-grid-style .entry-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    color: #333333;
    position: relative;
    font-weight: 400;
}

.blog-grid .blog-grid-style .entry-content,
.insight-blog.grid .blog-grid-style .entry-content,
.insight-blog.grid_has_padding .blog-grid-style .entry-content {
    font-size: 15px;
    color: #696969;
    line-height: 1.6;
    margin-bottom: 5px;
}

.blog-grid .blog-grid-style .entry-desc,
.insight-blog.grid .blog-grid-style .entry-desc,
.insight-blog.grid_has_padding .blog-grid-style .entry-desc {
    padding: 0 45px 25px 45px;
}

.blog-grid .blog-grid-style .entry-desc .entry-title,
.insight-blog.grid .blog-grid-style .entry-desc .entry-title,
.insight-blog.grid_has_padding .blog-grid-style .entry-desc .entry-title {
    margin-bottom: 0;
}

.blog-grid .blog-grid-style .entry-desc .entry-more,
.insight-blog.grid .blog-grid-style .entry-desc .entry-more,
.insight-blog.grid_has_padding .blog-grid-style .entry-desc .entry-more {
    margin-top: -10px;
}

.blog-grid .blog-grid-style .entry-desc .entry-more a,
.insight-blog.grid .blog-grid-style .entry-desc .entry-more a,
.insight-blog.grid_has_padding .blog-grid-style .entry-desc .entry-more a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 14px;
}

.blog-grid .blog-grid-style .entry-more a,
.insight-blog.grid .blog-grid-style .entry-more a,
.insight-blog.grid_has_padding .blog-grid-style .entry-more a {
    font-size: 15px;
    font-weight: 700;
    color: #696969;
    display: block;
    position: relative;
}

.blog-grid .blog-grid-style .entry-more a:hover,
.insight-blog.grid .blog-grid-style .entry-more a:hover,
.insight-blog.grid_has_padding .blog-grid-style .entry-more a:hover {
    color: #da0e2b;
}

.blog-grid .blog-grid-style:hover .post-thumbnail:before,
.insight-blog.grid .blog-grid-style:hover .post-thumbnail:before,
.insight-blog.grid_has_padding .blog-grid-style:hover .post-thumbnail:before {
    left: 0;
    opacity: 1;
}

.blog-grid .blog-grid-style:hover .post-thumbnail:after,
.insight-blog.grid .blog-grid-style:hover .post-thumbnail:after,
.insight-blog.grid_has_padding .blog-grid-style:hover .post-thumbnail:after {
    right: 0;
    opacity: 1;
}

.blog-grid .blog-grid-style:hover .post-thumbnail a:before,
.insight-blog.grid .blog-grid-style:hover .post-thumbnail a:before,
.insight-blog.grid_has_padding .blog-grid-style:hover .post-thumbnail a:before {
    opacity: 1;
    margin-top: -20px;
}

.insight-blog .blog-classic-style:first-child .post-thumbnail {
    position: relative;
}

.insight-blog .blog-classic-style:first-child .post-thumbnail img {
    position: relative;
    z-index: 2;
}

.insight-blog .blog-classic-style:first-child .post-thumbnail:before {
    display: block;
    content: '';
    border: 5px solid #f4f1e3;
    position: absolute;
    z-index: 1;
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
}

.blog-classic-style.format-video .post-thumbnail, .blog-classic-style.format-video .insight-light-video, .blog-classic-style .format-video .post-thumbnail, .blog-classic-style .format-video .insight-light-video, .single-post.format-video .post-thumbnail, .single-post.format-video .insight-light-video, .single-post .format-video .post-thumbnail, .single-post .format-video .insight-light-video {
    position: relative;
}

.blog-classic-style.format-video .post-thumbnail > a:before, .blog-classic-style.format-video .insight-light-video > a:before, .blog-classic-style .format-video .post-thumbnail > a:before, .blog-classic-style .format-video .insight-light-video > a:before, .single-post.format-video .post-thumbnail > a:before, .single-post.format-video .insight-light-video > a:before, .single-post .format-video .post-thumbnail > a:before, .single-post .format-video .insight-light-video > a:before {
    content: "\f488";
    font-family: "Ionicons";
    display: block;
    font-size: 28px;
    font-weight: 500;
    background-color: #da0e2b;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    text-align: center;
    padding-top: 15px;
    padding-left: 3px;
    position: absolute;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.blog-classic-style.format-video .post-thumbnail:after, .blog-classic-style.format-video .insight-light-video:after, .blog-classic-style .format-video .post-thumbnail:after, .blog-classic-style .format-video .insight-light-video:after, .single-post.format-video .post-thumbnail:after, .single-post.format-video .insight-light-video:after, .single-post .format-video .post-thumbnail:after, .single-post .format-video .insight-light-video:after {
    content: '';
    background: #da0e2b;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.2;
    height: 100px;
    width: 100px;
}

.blog-classic-style {
    margin-bottom: 50px;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 50px;
}

.blog-classic-style .post-thumbnail a {
    display: block;
}

.blog-classic-style .post-thumbnail a img {
    width: 100%;
}

.blog-classic-style .entry-desc {
    padding-top: 28px;
}

.blog-classic-style .entry-meta {
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-classic-style .entry-meta span {
    margin-right: 20px;
    color: #ccc;
}

.blog-classic-style .entry-meta span i {
    margin-right: 5px;
    font-size: 15px;
}

.blog-classic-style .entry-title {
    margin-bottom: 10px;
    color: #333333;
    position: relative;
    font-weight: 400;
    font-family: Merriweather;
}

.blog-classic-style .entry-content {
    font-size: 15px;
    color: #696969;
    line-height: 1.6;
}

.blog-classic-style .entry-share {
    align-self: center;
    text-align: right;
}

@media (max-width: 991px) {
    .blog-classic-style .entry-share {
        margin-top: 20px;
    }
}

.post-quote {
    background-color: #f6f7f7;
    padding: 30px 42px;
    display: block;
}

.blog-classic-style .post-quote {
    margin-top: -50px;
    margin-bottom: -50px;
}

.post-quote blockquote {
    margin: 0 0 25px;
    position: relative;
}

.post-quote blockquote h5 {
    line-height: 2em;
    letter-spacing: 0.1em;
}

.post-quote .quote-pos,
.post-quote blockquote h3, .post-quote blockquote h5 {
    font-weight: 400;
    color: #333;
}

.post-quote .quote-pos:before,
.post-quote blockquote h3:before, .post-quote blockquote h5:before {
    content: '«';
    display: inline-block;
    margin-right: 10px;
}

.post-quote .quote-pos:after,
.post-quote blockquote h3:after, .post-quote blockquote h5:after {
    content: '»';
    display: inline-block;
    margin-left: 10px;
}

.post-quote .quote-name {
    color: #333333;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.post-quote .quote-pos {
    font-size: 14px;
    line-height: 2em;
    letter-spacing: 0.05em;
}

.blog-list-v2 .blog-classic-style.style-02 .entry-desc {
    padding-top: 0;
}

.blog-list-v2 .blog-classic-style.style-02 .entry-desc .entry-title {
    margin-bottom: 0;
}

.blog-list-v2 .blog-classic-style.style-02 .entry-desc .entry-more {
    margin-top: -10px;
}

.blog-list-v2 .blog-classic-style.style-02 .entry-desc .entry-more a {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 14px;
}

.blog-grid.blog-masonry-v2 .post {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 768px) {
    .blog-grid.blog-masonry-v2 .post {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #sidebar {
        margin-top: 60px;
    }

    .container {
        padding-left: 45px;
        padding-right: 45px;
    }

    .copyright .copyright_text, .copyright .copyright_payment_img {
        text-align: center;
        margin-top: 10px;
    }

    .copyright .copyright-right {
        text-align: left !important;
    }

    .copyright .copyright-right ul {
        margin-top: 10px !important;
    }

    .copyright .copyright-right ul li {
        margin-left: 0 !important;
        margin-right: 5px !important;
    }

    body.admin-bar header.header-mobile.headroom--not-top {
        top: 0px;
    }

    .topbar {
        text-align: center;
        color: #ababab;
    }

    .topbar .topbar__text span {
        display: block;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .topbar .topbar__menu {
        text-align: center;
    }

    .topbar .topbar__menu ul li {
        padding: 0 10px;
        margin: 0;
    }

    .blog-list-style .post-thumbnail {
        margin-bottom: 30px;
    }
}

@media (max-width: 1000px) {
    .vc_column_container.vc_col-sm-4, .vc_column_container.vc_col-sm-8, .vc_column_container.vc_col-sm-6 {
        width: 100%;
    }

    .vc_column_container .slick-dots {
        display: none !important;
    }
}

@media (min-width: 767px) {
    body.admin-bar header.header-mobile.headroom--not-top {
        top: 46px;
    }
}

article.post {
    margin-bottom: 50px;
}

article.post .entry-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #392a25;
}

article.post .entry-meta {
    color: #aaaaaa;
}

article.post .entry-meta .posted-on, article.post .entry-meta .categories {
    margin-right: 20px;
}

article.post .entry-content pre {
    max-width: 600px;
}

article.post .entry-footer .share {
    text-align: right;
}

article.post a h1 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

article.post a:hover h1 {
    color: #da0e2b;
}

article.post .wp-caption.alignnone {
    margin-left: 0;
    margin-right: 0;
}

.blog-uni {
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 40px;
}

.blog-uni .post-thumbnail {
    margin-bottom: 20px;
}

.blog-uni .post-password-form input {
    margin-top: 10px;
}

.blog-uni .read-more {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.blog-uni .read-more:before {
    content: '/ ';
}

.post[class*='sticky'] .entry-title {
    border-left: 3px solid #da0e2b;
    padding-left: 10px;
}

.rtl .post[class*='sticky'] .entry-title {
    border-left: none;
    padding-left: 0;
    border-right: 3px solid #da0e2b;
    padding-right: 10px;
}

.post .gallery figure.gallery-item {
    margin: 0;
    margin-bottom: 20px;
    padding: 10px;
}

.vc_row.bg-center, .bg-center {
    background-position: center !important;
}

.vc_row.bg-center-top, .bg-center-top {
    background-position: center top !important;
}

.vc_row.bg-center-bottom, .bg-center-bottom {
    background-position: center bottom !important;
}

.vc_row.bg-left-bottom, .bg-left-bottom {
    background-position: left bottom !important;
}

.vc_row.bg-right-bottom, .bg-right-bottom {
    background-position: right bottom !important;
}

.bg-no-repeat, .bg-norepeat {
    background-repeat: no-repeat !important;
}

.bg-repeat-x {
    background-repeat: repeat-x !important;
}

.bg-repeat-y {
    background-repeat: repeat-y !important;
}

.wpb_single_image.has-shadow img {
    -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.wpb_single_image.has-bg .vc_single_image-wrapper {
    background-color: #f0f0f0;
}

.wpb_single_image.has-bg .vc_single_image-wrapper img {
    transform: translate(40px, 60px);
}

.wpb_single_image.img-w100 figure {
    width: 100%;
}

.wpb_single_image.img-w100 figure .vc_single_image-wrapper {
    width: 100%;
}

.wpb_single_image.img-w100 figure .vc_single_image-wrapper img {
    width: 100%;
    height: auto;
}

.wpb_single_image.img-o50 img {
    opacity: .5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.wpb_single_image.img-o50:hover img {
    opacity: 1;
}

.image-carousel-w100 img {
    width: 100%;
    height: auto;
}

.col-h100 {
    height: 100% !important;
}

.floating {
    -webkit-animation-name: floating;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: floating;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
}

.box_transparent {
    width: 90%;
    max-width: 768px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 auto !important;
}

.overflow_hidden {
    overflow: hidden !important;
}

.mw-480 {
    max-width: 480px !important;
    margin: 0 auto !important;
}

.mw-480-l {
    max-width: 480px !important;
}

.mw-500 {
    max-width: 500px !important;
    margin: 0 auto !important;
}

.mw-500-l {
    max-width: 500px !important;
}

.mw-560 {
    max-width: 560px !important;
    margin: 0 auto !important;
}

.mw-560-l {
    max-width: 560px !important;
}

.mw-560-r {
    max-width: 560px !important;
    float: right;
    margin-right: 0;
}

.mw-600 {
    max-width: 600px !important;
    margin: 0 auto !important;
}

.mw-670 {
    max-width: 670px !important;
    margin: 0 auto !important;
}

.mw-720 {
    max-width: 720px !important;
    margin: 0 auto !important;
}

.mw-790 {
    max-width: 790px !important;
    margin: 0 auto !important;
}

.mw-800 {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.h-100 .vc_column-inner {
    height: 100% !important;
}

.h-100 .vc_column-inner .wpb_wrapper {
    height: 100% !important;
}

.h-100 .vc_column-inner .wpb_wrapper > div {
    height: 100% !important;
}

.strong_white strong {
    color: #fff !important;
}

@media (max-width: 991px) {
    .wpb_single_image.img-m100 .vc_figure {
        width: 100% !important;
    }

    .wpb_single_image.img-m100 .vc_single_image-wrapper {
        width: 100% !important;
    }

    .wpb_single_image.img-m100 .vc_single_image-wrapper img {
        width: 100% !important;
        height: auto;
    }

    .m-center {
        text-align: center !important;
    }

    .m-center .wpb_single_image, .m-center .insight-button {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .mp-0 .vc_column-inner {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .mp-15 .vc_column-inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mp-30 .vc_column-inner {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .mm-0 {
        margin: 0 !important;
    }

    .mm-0.wpb_single_image {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .wpb_single_image.has-bg .vc_single_image-wrapper {
        background-color: transparent;
    }

    .wpb_single_image.has-bg .vc_single_image-wrapper img {
        transform: translate(0, 0);
    }

    .m-center {
        text-align: center !important;
    }

    .m-center .wpb_single_image, .m-center .insight-button {
        text-align: center !important;
    }
}

body.landing .header {
    border-bottom: none !important;
}

.landing_image_01 .vc_figure {
    position: relative;
}

.landing_image_01 .vc_figure img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.landing_image_01 .vc_figure:before {
    content: 'Live Preview';
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    height: 48px;
    line-height: 46px;
    color: #da0e2b;
    border: 1px solid #da0e2b;
    padding: 0 20px;
    display: inline-block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}

.landing_image_01:hover .vc_figure img {
    opacity: .1;
}

.landing_image_01:hover .vc_figure:before {
    top: 50%;
    opacity: 1;
}

/*
Trumps are overrides, helpers, utilities. They should only affect
one piece of DOM at a time and usually carry !important
*/
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '←';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -25px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '→';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    content: '';
    background-color: #222;
    opacity: .25;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

[class*="hint--"][aria-label]:after {
    text-shadow: none !important;
}

.content-area .entry-content > *.alignfull {
    position: relative;
    left: calc((1110px - 100vw) / 2);
    width: 100vw;
    max-width: 100vw;
    clear: both;
}

@media (max-width: 1199px) {
    .content-area .entry-content > *.alignfull {
        left: calc((910px - 100vw) / 2);
    }
}

@media (max-width: 991px) {
    .content-area .entry-content > *.alignfull {
        left: calc((486px - 100vw) / 2);
    }
}

@media (max-width: 543px) {
    .content-area .entry-content > *.alignfull {
        left: calc((285px - 100vw) / 2);
    }
}

.content-area .entry-content > *.alignwide {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

@media only screen and (min-width: 768px) {
    .content-area .entry-content > *.alignwide {
        width: 100%;
        max-width: 100%;
    }
}

.content-area .entry-content > *.alignleft {
    /*rtl:ignore*/
    float: left;
    max-width: calc(5 * (100vw / 12));
    margin-top: 0;
    margin-left: 0;
    /*rtl:ignore*/
    margin-right: 1rem;
}

@media only screen and (min-width: 768px) {
    .content-area .entry-content > *.alignleft {
        max-width: calc(4 * (100vw / 12));
        /*rtl:ignore*/
        margin-right: calc(2 * 1rem);
    }
}

.content-area .entry-content > *.alignright {
    /*rtl:ignore*/
    float: right;
    max-width: calc(5 * (100vw / 12));
    margin-top: 0;
    margin-right: 0;
    /*rtl:ignore*/
    margin-left: 1rem;
}

@media only screen and (min-width: 768px) {
    .content-area .entry-content > *.alignright {
        max-width: calc(4 * (100vw / 12));
        margin-right: 0;
        /*rtl:ignore*/
        margin-left: calc(2 * 1rem);
    }
}

.content-area .entry-content > *.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .content-area .entry-content > *.aligncenter {
        max-width: calc(8 * (100vw / 12) - 28px);
    }
}

@media only screen and (min-width: 1168px) {
    .content-area .entry-content > *.aligncenter {
        max-width: calc(6 * (100vw / 12) - 28px);
    }
}

@media only screen and (min-width: 768px) {
    .content-area .entry-content > *.aligncenter {
        margin-left: 0;
        margin-right: 0;
    }
}

/*
WooCommerce
*/
.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce table.shop_table thead tr th, .woocommerce table.shop_table thead tr td {
    text-align: left;
    background-color: rgba(0, 0, 0, 0.03);
    border: none;
}

.woocommerce table.shop_table tbody tr th, .woocommerce table.shop_table tbody tr td {
    text-align: left;
    border: none;
    padding: 10px;
}

.woocommerce table.shop_table tbody tr th img, .woocommerce table.shop_table tbody tr td img {
    width: 80px;
    height: auto;
}

.woocommerce table.shop_table tfoot tr th, .woocommerce table.shop_table tfoot tr td {
    text-align: left;
    background-color: rgba(0, 0, 0, 0.03);
    border: none;
}

.woocommerce a.button, .woocommerce a.button.alt, .woocommerce button.button.alt {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #333333;
    display: block;
}

.woocommerce a.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
    color: #fff;
    background-color: #da0e2b;
    border-color: #da0e2b;
}

.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 {
    max-width: none;
}

@media (max-width: 991px) {
    .woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2 {
        padding-left: 0;
        padding-right: 0;
    }
}

.woocommerce .woo-container:not(.container) {
    padding-left: 100px;
    padding-right: 100px;
}

.woocommerce .woo-filter {
    margin-bottom: 60px;
    align-items: center;
}

.woocommerce .woo-filter .woocommerce-result-count {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    color: #696969;
    margin-bottom: 0;
}

.woocommerce .woo-filter .woocommerce-ordering {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    float: none;
    text-align: right;
}

.woocommerce .woo-filter .woocommerce-ordering select {
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 0 20px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    border: none;
    display: inline-block;
    -webkit-appearance: none;
    background-color: #F8F8F8;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABGdBTUEAALGPC/xhBQAAAI9JREFUCB1jNDEx6f///3/D2bNnPzKgATMzM32gnAMTkNgOlFtvbGzMhawGqEDt379/c4B4PRPQhF2MjIxTgXhNaGgoG0ghUIMcUHIpExNTNFD+ESNMN9DaJCDbi52dPe/nz58bgJrSTp8+fQEkzwxT9OzZs/NSUlLSf/78WQJUkHTmzJnTMDkMGugWRXRBAE05O2t0kClQAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 991px) {
    .woocommerce .woo-filter .woocommerce-ordering select {
        width: 100%;
    }
}

.woocommerce .woo-products .product-category {
    margin-bottom: 30px;
}

.woocommerce .woo-products .product-category a {
    display: block;
}

.woocommerce .woo-products .product-category a img {
    width: 100%;
    height: auto;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 0 15px 0;
}

.woocommerce .woo-products .product-category a .woocommerce-loop-category__title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product-category a .woocommerce-loop-category__title mark {
    background-color: transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product-category a:hover .woocommerce-loop-category__title {
    color: #da0e2b;
}

.woocommerce .woo-products .product-category a:hover .woocommerce-loop-category__title mark {
    color: #da0e2b;
}

.woocommerce .woo-products .product {
    margin-bottom: 30px;
}

.woocommerce .woo-products .product .woo-thumb {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce .woo-products .product .woo-thumb img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    z-index: 7;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 8;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges .sale, .woocommerce .woo-products .product .woo-thumb .woo-badges .new, .woocommerce .woo-products .product .woo-thumb .woo-badges .hot, .woocommerce .woo-products .product .woo-thumb .woo-badges .outofstock {
    position: relative;
    display: block;
    margin-bottom: 10px;
    top: auto;
    right: auto;
    left: auto;
    color: #fff;
    font-family: Lato;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    min-width: 0;
    min-height: 0;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges .new {
    background-color: #FFC929;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges .hot {
    background-color: #D0021B;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges .sale {
    background-color: #6AC39B;
}

.woocommerce .woo-products .product .woo-thumb .woo-badges .outofstock {
    background-color: #333333;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 50px;
    background-color: #333333;
    position: absolute;
    transform: translate3d(0, 100%, 0);
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn {
    flex-grow: 1;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a {
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #fff;
    height: auto;
    text-align: left;
    border: none;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a:after {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a.add_to_cart_button:after {
    content: '\f30f';
    font-family: Ionicons;
    margin-left: 10px;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a.add_to_cart_button.loading {
    opacity: 1;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a.add_to_cart_button.loading:after {
    content: '\f49a';
    font-size: 16px;
    top: auto;
    right: auto;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a.add_to_cart_button.added:after {
    content: '\f383';
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a.added_to_cart {
    display: none;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a:hover {
    color: #da0e2b;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .add-to-cart-btn a:hover:after {
    color: #da0e2b;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .quick-view-btn {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    margin-left: 15px;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .quick-view-btn a {
    display: block;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .quick-view-btn a:before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    content: '\f2f5';
    color: #fff;
    font-family: Ionicons;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .quick-view-btn a:hover:before {
    color: #da0e2b;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .compare-btn {
    width: 16px;
    height: 16px;
    line-height: 16px;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    margin-left: 15px;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .compare-btn a {
    display: block;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .compare-btn a:before {
    width: 16px;
    height: 16px;
    content: '\f4a8';
    color: #fff;
    font-family: Ionicons;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-thumb .woo-actions .compare-btn a:hover:before {
    color: #da0e2b;
}

@media (max-width: 991px) {
    .woocommerce .woo-products .product .woo-thumb .woo-actions {
        transform: translate3d(0, 0, 0);
    }
}

.woocommerce .woo-products .product .woo-thumb .wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.woocommerce .woo-products .product .woo-thumb .wishlist-btn .woosw-btn {
    font-size: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    display: block;
    text-align: center;
}

.woocommerce .woo-products .product .woo-thumb .wishlist-btn .woosw-btn:before {
    display: block;
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

.woocommerce .woo-products .product .woo-thumb .wishlist-btn .woosw-btn.woosw-adding:before {
    content: '\f49a' !important;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.woocommerce .woo-products .product .woo-thumb .wishlist-btn .woosw-btn.woosw-added:before {
    content: '\f388';
}

.woocommerce .woo-products .product .woo-title .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 400;
    font-family: Merriweather;
    color: #696969;
    text-align: center;
    margin-bottom: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .woo-products .product .woo-price {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    font-family: Montserrat;
    color: #333333;
}

.woocommerce .woo-products .product .woo-price span.price {
    color: #333333;
    font-size: 14px;
    font-weight: 700;
}

.woocommerce .woo-products .product .woo-price del {
    color: #ccc;
    text-decoration: none;
    opacity: 1;
}

.woocommerce .woo-products .product .woo-price ins {
    color: #333333;
    text-decoration: none;
}

.woocommerce .woo-products .product:hover .woo-thumb img {
    transform: scale(1.1);
}

.woocommerce .woo-products .product:hover .woo-thumb .woo-actions {
    transform: translate3d(0, 0, 0);
}

.woocommerce .woo-pagination {
    margin-top: 40px;
    text-align: center;
    text-transform: uppercase;
}

.woocommerce .woo-pagination ul {
    list-style: none;
}

.woocommerce .woo-pagination ul li {
    display: inline-block;
}

.woocommerce .woo-pagination a,
.woocommerce .woo-pagination span {
    width: 40px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    margin: 0;
    font-family: Montserrat;
    font-weight: 700;
    display: inline-block;
}

.woocommerce .woo-pagination a.current,
.woocommerce .woo-pagination span.current {
    color: #da0e2b;
}

body.woocommerce-cart h1, body.woocommerce-cart h2, body.woocommerce-cart h3, body.woocommerce-cart h4, body.woocommerce-cart h5, body.woocommerce-cart h6, body.woocommerce-cart .h1, body.woocommerce-cart .h2, body.woocommerce-cart .h3, body.woocommerce-cart .h4, body.woocommerce-cart .h5, body.woocommerce-cart .h6 {
    font-weight: 500;
    font-family: Merriweather;
}

body.woocommerce-cart table.shop_table tr td a.remove {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    font-size: 0;
    background-color: transparent;
}

body.woocommerce-cart table.shop_table tr td a.remove:before {
    content: '\f2d7';
    font-size: 16px;
    color: #696969;
    font-family: Ionicons;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.woocommerce-cart table.shop_table tr td a.remove:hover:before {
    color: #D6372C;
}

body.woocommerce-cart table.shop_table tr td input, body.woocommerce-cart table.shop_table tr td button {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 20px !important;
    outline: none !important;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

body.woocommerce-cart table.shop_table tr td input[type="number"], body.woocommerce-cart table.shop_table tr td button[type="number"] {
    width: 60px;
    padding: 0 10px !important;
}

body.woocommerce-cart table.shop_table tr td input#coupon_code, body.woocommerce-cart table.shop_table tr td button#coupon_code {
    min-width: 160px;
    border: none;
}

body.woocommerce-cart table.shop_table tr td input.button, body.woocommerce-cart table.shop_table tr td button.button {
    outline: none;
}

body.woocommerce-cart table.shop_table tr td input.button:disabled[disabled], body.woocommerce-cart table.shop_table tr td button.button:disabled[disabled] {
    padding: 0 20px;
}

body.woocommerce-cart table.shop_table tr td.product-name {
    font-family: Merriweather;
}

body.woocommerce-cart .cart-collaterals .cart_totals table tr th, body.woocommerce-cart .cart-collaterals .cart_totals table tr td {
    border: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    margin-bottom: 0;
    padding-bottom: 0;
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
    margin-bottom: 0;
}

.woocommerce-checkout h1, .woocommerce-checkout h2, .woocommerce-checkout h3, .woocommerce-checkout h4, .woocommerce-checkout h5, .woocommerce-checkout h6, .woocommerce-checkout .h1, .woocommerce-checkout .h2, .woocommerce-checkout .h3, .woocommerce-checkout .h4, .woocommerce-checkout .h5, .woocommerce-checkout .h6 {
    font-weight: 500;
    font-family: Merriweather;
}

.woocommerce-checkout .woocommerce form.checkout_coupon, .woocommerce-checkout .woocommerce form.login, .woocommerce-checkout .woocommerce form.register {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #da0e2b;
}

.woocommerce-checkout form .form-row {
    padding: 0;
}

.woocommerce-checkout form input {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce-checkout form textarea {
    padding: 10px;
    min-height: 120px;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce-checkout form .select2 {
    margin: 0;
}

.woocommerce-checkout form .select2 span.select2-selection {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: none;
}

.woocommerce-checkout form .select2 span.select2-selection span.select2-selection__rendered {
    padding: 0;
    line-height: 40px;
}

.woocommerce-checkout form .select2 span.select2-selection span.select2-selection__arrow {
    height: 40px;
    line-height: 40px;
    width: 30px;
    text-align: center;
}

.woocommerce-checkout h3 {
    margin-bottom: 40px;
}

.woocommerce-checkout #customer_details {
    margin-bottom: 80px;
}

.woocommerce-checkout #payment {
    margin-top: 60px;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce-checkout #payment ul.wc_payment_methods {
    border: none;
    padding: 0;
}

.woocommerce-checkout #payment ul.wc_payment_methods li label {
    color: #333333;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}

.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box {
    background-color: #F4F4F4;
    padding: 20px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box:before {
    border-bottom-color: #F4F4F4;
}

.woocommerce-checkout #payment ul.wc_payment_methods li .payment_box p {
    margin: 0;
}

.woocommerce-checkout #payment .place-order {
    padding: 40px 0 0 0;
    margin: 0;
}

.woocommerce-checkout #payment div.form-row {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce-checkout .select2-dropdown {
    margin-top: -1px;
    border: 1px solid #da0e2b;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce-checkout .select2-dropdown input.select2-search__field {
    outline: none;
    border: 1px solid #da0e2b;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
}

body.woocommerce-order-received h2 {
    margin-bottom: 30px;
    margin-top: 80px;
}

body.woocommerce-order-received table.customer_details {
    margin-bottom: 80px;
}

body.woocommerce-order-received ul.woocommerce-order-overview {
    padding-left: 0;
}

body.woocommerce-order-received .woocommerce-customer-details address {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background-color: #f8f8f8;
}

#wooscp-area .wooscp-inner .wooscp-table .wooscp-table-inner {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

#wooscp-area .wooscp-inner .wooscp-table .wooscp-table-inner .wooscp-table-items table tbody tr.tr-image img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

#wooscp-area .wooscp-inner .wooscp-bar .wooscp-bar-btn {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #da0e2b !important;
}

#wooscp-area .wooscp-inner .wooscp-bar .wooscp-bar-items .wooscp-bar-item {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

#wooscp-area .wooscp-inner .wooscp-bar .wooscp-bar-items .wooscp-bar-item img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.mfp-woosq .mfp-preloader {
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
}

#woosw-area table tr td {
    border: none;
    text-align: left;
}

table.woosw-content-items tr td {
    border: none;
    text-align: left;
    line-height: 1.4;
}

table.woosw-content-items tr td .woosw-content-item--add p > a {
    padding: 10px;
    text-align: center;
    height: auto;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.woosw-list table tr td {
    border: none;
    text-align: left;
    line-height: 1.4;
}

.woosw-list .woosw-share a {
    font-size: 0;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.woosw-list .woosw-share a:before {
    font-family: Ionicons;
    font-size: 16px;
}

.woosw-list .woosw-share a.woosw-share-facebook:before {
    content: '\f231';
}

.woosw-list .woosw-share a.woosw-share-twitter:before {
    content: '\f243';
}

.woosw-list .woosw-share a.woosw-share-pinterest:before {
    content: '\f2b1';
}

.woosw-list .woosw-share a.woosw-share-google-plus:before {
    content: '\f235';
}

.woosw-list .woosw-share a.woosw-share-mail:before {
    content: '\f2eb';
}

.woosb-products .woosb-product .woosb-price ins {
    background: none;
}

.woosb-products .woosb-product .woosb-title .woosb-title-inner a {
    font-family: Merriweather;
    font-weight: 400;
}

.woosb-products .woosb-product .woosb-price {
    font-size: 14px;
    font-weight: 700;
    font-family: Montserrat;
}

.woosb-products .woosb-product .woosb-price ins {
    font-weight: 700;
}

.open-mini-cart-btn {
    position: relative;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
}

.open-mini-cart-btn .mini-cart {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.open-mini-cart-btn .mini-cart .mini-cart-icon {
    display: inline-block;
    font-size: 18px;
    color: #333333;
    position: relative;
}

header.header.color-light .open-mini-cart-btn .mini-cart .mini-cart-icon, [data-row-skin="light"] header.header .open-mini-cart-btn .mini-cart .mini-cart-icon {
    color: #fff;
}

header.header.headroom--not-top .open-mini-cart-btn .mini-cart .mini-cart-icon, [data-row-skin="dark"] header.header .open-mini-cart-btn .mini-cart .mini-cart-icon {
    color: #333333;
}

.open-mini-cart-btn .mini-cart .mini-cart-icon:before {
    content: '\f110';
    font-family: Ionicons;
    font-size: 18px;
}

.open-mini-cart-btn .mini-cart .mini-cart-icon:after {
    font-family: inherit;
    content: attr(data-count);
    font-size: 12px;
    font-weight: 700;
    font-family: Lato;
    text-align: center;
    position: absolute;
    top: -6px;
    right: -14px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #fff;
    background-color: #333;
}

header.header.color-light .open-mini-cart-btn .mini-cart .mini-cart-icon:after, [data-row-skin="light"] header.header .open-mini-cart-btn .mini-cart .mini-cart-icon:after {
    color: #fff;
}

header.header.headroom--not-top .open-mini-cart-btn .mini-cart .mini-cart-icon:after, [data-row-skin="dark"] header.header .open-mini-cart-btn .mini-cart .mini-cart-icon:after {
    color: #fff;
}

.open-mini-cart-btn .mini-cart .mini-cart-icon i {
    font-style: normal;
}

.woocommerce .sidebar .widget.widget_product_search form {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #F8F8F8;
    border: none;
    padding: 0 20px;
    overflow: hidden;
}

.woocommerce .sidebar .widget.widget_product_search form label {
    display: none;
}

.woocommerce .sidebar .widget.widget_product_search form input[type="search"] {
    box-sizing: border-box;
    height: 50px;
    line-height: 50px;
    border: none;
    background-color: transparent;
    outline: none;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.woocommerce .sidebar .widget.widget_product_search form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-size: 0;
    outline: none;
    cursor: pointer;
    z-index: 8;
}

.woocommerce .sidebar .widget.widget_product_search form:after {
    content: '\f2f5';
    font-family: Ionicons;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #333333;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 7;
}

.woocommerce .sidebar .widget.widget_product_categories ul.product-categories li {
    display: block;
    position: relative;
    padding: 0;
    border: none;
}

.woocommerce .sidebar .widget.widget_product_categories ul.product-categories li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: #696969;
    text-decoration: none;
}

.woocommerce .sidebar .widget.widget_product_categories ul.product-categories li a:hover {
    color: #333333;
}

.woocommerce .sidebar .widget.widget_product_categories ul.product-categories li.current-cat > a {
    color: #333333;
}

.woocommerce .sidebar .widget.widget_product_categories ul.product-categories li span.count {
    position: absolute;
    top: 10px;
    right: 0;
}

.woocommerce .sidebar .widget.widget_product_categories select {
    display: block;
    width: 100%;
}

.woocommerce .sidebar .widget.widget_products ul li {
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    min-height: 120px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #eee;
    display: flex;
    position: relative;
}

.woocommerce .sidebar .widget.widget_products ul li a {
    text-decoration: none;
}

.woocommerce .sidebar .widget.widget_products ul li img {
    width: 100px;
    height: auto;
    margin-left: 0;
    margin-right: 20px;
    float: left;
}

.woocommerce .sidebar .widget.widget_products ul li .product-title {
    color: #696969;
    font-family: Merriweather;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce .sidebar .widget.widget_products ul li .star-rating {
    float: none;
    display: block;
    font-size: 12px;
}

.woocommerce .sidebar .widget.widget_products ul li .star-rating span:before {
    color: #EFC720;
}

.woocommerce .sidebar .widget.widget_products ul li .amount {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

.woocommerce .sidebar .widget.widget_products ul li mark, .woocommerce .sidebar .widget.widget_products ul li ins {
    background-color: transparent;
    text-decoration: none;
    color: #333333;
}

.woocommerce .sidebar .widget.widget_products ul li mark .amount, .woocommerce .sidebar .widget.widget_products ul li ins .amount {
    color: #333333;
}

.woocommerce .sidebar .widget.widget_products ul li del {
    color: #ccc;
    text-decoration: none;
    opacity: 1;
}

.woocommerce .sidebar .widget.widget_products ul li del .amount {
    color: #ccc;
}

.woocommerce .sidebar .widget.widget_products ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-width: 0 0 0 0;
}

.woocommerce .sidebar .widget.widget_products ul li:last-child:after {
    display: none;
}

.woocommerce .sidebar .widget.widget_products ul li:hover .product-title {
    color: #da0e2b;
}

.woocommerce .sidebar .widget.widget_product_tag_cloud .tagcloud a {
    font-size: 16px !important;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.woocommerce .sidebar .widget.widget_price_filter .ui-slider {
    background-color: #EDEDED;
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.woocommerce .sidebar .widget.widget_price_filter .ui-slider .ui-slider-range {
    background-color: #333333;
}

.woocommerce .sidebar .widget.widget_price_filter .ui-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    top: -7px;
    margin-left: -9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    background-color: #333333;
}

.woocommerce .sidebar .widget.widget_price_filter .price_slider_amount .button {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce .sidebar .widget.widget_price_filter .price_slider_amount .price_label {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}

.woocommerce.single-product .product .woo-single-images {
    margin-bottom: 40px;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image {
    margin-bottom: 40px;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow {
    z-index: 9;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow:before {
    font-family: Ionicons;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow.slick-prev {
    left: 0;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow.slick-prev:before {
    content: '\f3d2';
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow.slick-next {
    right: 0;
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow.slick-next:before {
    content: '\f3d3';
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.woocommerce.single-product .product .woo-single-images .woocommerce-main-image .slick-arrow:hover:before {
    color: #fff;
}

.woocommerce.single-product .product .woo-single-images .thumbnails {
    padding: 0;
    margin: 0 -20px;
}

.woocommerce.single-product .product .woo-single-images .thumbnails img {
    margin: 0 20px;
    outline: none;
    cursor: pointer;
}

.woocommerce.single-product .product .summary {
    float: none;
    width: 100%;
    margin-bottom: 40px;
}

.woocommerce.single-product .product .summary .product_title {
    font-size: 40px;
    font-weight: 400;
    font-family: Merriweather;
    color: #333333;
    margin-bottom: 30px;
}

.woocommerce.single-product .product .summary .woocommerce-product-rating {
    margin-bottom: 30px;
    font-size: 14px;
}

.woocommerce.single-product .product .summary .woocommerce-product-rating span:before {
    color: #EFC720;
}

.woocommerce.single-product .product .summary .price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    font-family: Montserrat;
    margin: 0 0 30px 0;
    color: #333333;
}

.woocommerce.single-product .product .summary .price .sale, .woocommerce.single-product .product .summary .price .new, .woocommerce.single-product .product .summary .price .hot, .woocommerce.single-product .product .summary .price .outofstock {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: inline-block;
    float: left;
    margin: 0 10px 0 0;
    color: #fff;
    font-family: Lato;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    min-width: 0;
    min-height: 0;
}

.woocommerce.single-product .product .summary .price .new {
    background-color: #FFC929;
}

.woocommerce.single-product .product .summary .price .hot {
    background-color: #D0021B;
}

.woocommerce.single-product .product .summary .price .sale {
    background-color: #6AC39B;
}

.woocommerce.single-product .product .summary .price .outofstock {
    background-color: #333333;
}

.woocommerce.single-product .product .summary .price .amount {
    display: inline-block;
    font-weight: 700;
}

.woocommerce.single-product .product .summary .price del {
    display: inline-block;
    color: #ccc;
    opacity: 1;
}

.woocommerce.single-product .product .summary .price del .amount {
    color: #ccc;
}

.woocommerce.single-product .product .summary .price ins {
    display: inline-block;
    text-decoration: none;
}

.woocommerce.single-product .product .summary .woocommerce-product-details__short-description {
    margin-bottom: 30px;
}

.woocommerce.single-product .product .summary .woocommerce-product-details__short-description p {
    font-size: 16px;
    font-weight: 400;
    color: #696969;
    margin: 0;
}

.woocommerce.single-product .product .summary .woosb-wrap {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.woocommerce.single-product .product .summary .woosb-wrap .woosb-table tr td {
    text-align: left;
}

.woocommerce.single-product .product .summary p.stock {
    margin: 0 0 0 0;
}

.woocommerce.single-product .product .summary p.stock.out-of-stock {
    display: none;
}

.woocommerce.single-product .product .summary form.cart {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.woocommerce.single-product .product .summary form.cart .label {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    margin-right: 15px;
}

.woocommerce.single-product .product .summary form.cart .quantity {
    float: left;
    margin: 0 10px 0 0;
    display: inline-block;
}

.woocommerce.single-product .product .summary form.cart .quantity input {
    min-width: 80px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    background-color: #F8F8F8;
    border: none;
    outline: none;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    padding: 0 20px;
}

.woocommerce.single-product .product .summary form.cart table.variations {
    margin: 0 0 30px 0;
}

.woocommerce.single-product .product .summary form.cart table.variations tr td {
    text-align: left;
    background-color: transparent;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 10px 10px 0;
}

.woocommerce.single-product .product .summary form.cart table.variations tr td.label label {
    color: #333333;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0;
}

.woocommerce.single-product .product .summary form.cart table.variations tr td.value select {
    min-width: 0;
    height: 40px;
    line-height: 38px;
    margin: 0;
    padding: 0 15px;
    outline: none;
    color: #333333;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: transparent;
    display: inline-block;
    border: 1px solid #eee;
    -webkit-appearance: none;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAABGdBTUEAALGPC/xhBQAAAHBJREFUCB1djjsOgDAMQ5NerXdBYmRADCAmBhgZGBDcpO3N+sFBRAIiNXbsN5SdcwMzj0SUSikJGsU/L6ITfzAWhRD6nPMk/j8AT2ttdYNSAu4Az28Q0A6ohhajBYLFGNPqjXJTSLOP4s+N9379hDgux4UotvsoUK0AAAAASUVORK5CYII=");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
}

.woocommerce.single-product .product .summary form.cart table.variations tr td.value a.reset_variations {
    margin-left: 5px;
}

.woocommerce.single-product .product .summary form.cart table.variations tr:first-child td {
    padding-top: 0;
}

.woocommerce.single-product .product .summary form.cart table.variations tr:last-child td {
    padding-bottom: 0;
}

.woocommerce.single-product .product .summary form.cart button[type="submit"] {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    display: inline-block;
    text-align: center;
    background-color: #333333;
    color: #fff;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    border: none;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce.single-product .product .summary form.cart button[type="submit"]:hover {
    color: #fff;
    border-color: #da0e2b;
    background-color: #da0e2b;
}

.woocommerce.single-product .product .summary form.cart .wishlist-btn {
    display: inline-block;
    margin-left: 10px;
}

.woocommerce.single-product .product .summary form.cart .wishlist-btn .woosw-btn {
    font-size: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    line-height: 48px;
    text-align: center;
    display: block;
    overflow: hidden;
}

.woocommerce.single-product .product .summary form.cart .wishlist-btn .woosw-btn:before {
    display: block;
    content: '\f387';
    font-family: Ionicons;
    font-size: 16px;
    line-height: 48px;
    margin: 0;
}

.woocommerce.single-product .product .summary form.cart .wishlist-btn .woosw-btn.woosw-adding:before {
    content: '\f49a' !important;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.woocommerce.single-product .product .summary form.cart .wishlist-btn .woosw-btn.woosw-added:before {
    content: '\f388';
}

.woocommerce.single-product .product .summary form.cart .compare-btn {
    display: inline-block;
    margin-left: 10px;
}

.woocommerce.single-product .product .summary form.cart .compare-btn .wooscp-btn {
    font-size: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    line-height: 48px;
    text-align: center;
    display: block;
    overflow: hidden;
}

.woocommerce.single-product .product .summary form.cart .compare-btn .wooscp-btn:before {
    display: block;
    content: '\f4a8';
    font-family: Ionicons;
    font-size: 16px;
    line-height: 48px;
    margin: 0;
}

.woocommerce.single-product .product .summary .product_meta table {
    margin: 0;
}

.woocommerce.single-product .product .summary .product_meta table tr td {
    text-align: left;
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: #696969;
    padding: 10px 10px 10px 0;
}

.woocommerce.single-product .product .summary .product_meta table tr td a {
    color: #333333;
}

.woocommerce.single-product .product .summary .product_meta table tr td a:hover {
    color: #da0e2b;
}

.woocommerce.single-product .product .summary .product_meta table tr:first-child td {
    padding-top: 0;
}

.woocommerce.single-product .product .summary .product_meta table tr:last-child td {
    padding-bottom: 0;
}

.woocommerce.single-product .product .woocommerce-tabs {
    border-top: 1px solid #eee;
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.woocommerce.single-product .product .woocommerce-tabs ul.tabs {
    margin: 0 0 40px 0;
    padding: 0;
    overflow: visible;
    text-align: center;
}

.woocommerce.single-product .product .woocommerce-tabs ul.tabs:before, .woocommerce.single-product .product .woocommerce-tabs ul.tabs:after {
    display: none !important;
}

.woocommerce.single-product .product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: transparent;
    color: #333333;
    font-family: Merriweather;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    padding: 0;
    margin: 0px 15px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
}

.woocommerce.single-product .product .woocommerce-tabs ul.tabs li:before, .woocommerce.single-product .product .woocommerce-tabs ul.tabs li:after {
    display: none !important;
}

.woocommerce.single-product .product .woocommerce-tabs ul.tabs li a {
    padding: 0;
    line-height: 1;
    color: #ccc;
    font-size: 34px;
    font-weight: 700;
}

.woocommerce.single-product .product .woocommerce-tabs .panel {
    padding: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #696969;
}

.woocommerce.single-product .product .woocommerce-tabs .panel h2 {
    display: none;
}

.woocommerce.single-product .product .woocommerce-tabs .panel p {
    margin: 0 0 15px 0;
}

.woocommerce.single-product .product .woocommerce-tabs .panel p:last-child {
    margin: 0;
}

.woocommerce.single-product .product .woocommerce-tabs .panel .shop_attributes {
    margin-bottom: 0;
}

.woocommerce.single-product .product .woocommerce-tabs .panel .shop_attributes tr th, .woocommerce.single-product .product .woocommerce-tabs .panel .shop_attributes tr td {
    text-align: left;
    border-left: none;
    border-right: none;
}

.woocommerce.single-product .product .up-sells > h2, .woocommerce.single-product .product .related > h2 {
    display: block;
    text-align: center;
    padding: 60px 0 30px 0;
    margin: 0;
    font-family: Merriweather;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.woocommerce.single-product .product .up-sells .slick-slide, .woocommerce.single-product .product .related .slick-slide {
    outline: none;
    margin-bottom: 0;
}

.woocommerce.single-product .product .up-sells .slick-dots, .woocommerce.single-product .product .related .slick-dots {
    margin: 15px 0 0 0;
}

.woocommerce.single-product .product .up-sells .slick-dots li, .woocommerce.single-product .product .related .slick-dots li {
    margin: 0;
}

.woocommerce.single-product .product .up-sells .slick-slider .slick-list, .woocommerce.single-product .product .related .slick-slider .slick-list {
    width: 100%;
}

.woocommerce.single-product .product .up-sells .slick-slider .slick-list .slick-track, .woocommerce.single-product .product .related .slick-slider .slick-list .slick-track {
    width: 100%;
}

.woocommerce.single-product .product #reviews #comments ol {
    margin: 0;
    padding: 0;
}

.woocommerce.single-product .product #reviews #comments ol li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.woocommerce.single-product .product #reviews #comments ol li img.avatar {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    padding: 0;
    border: none;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text {
    border: none;
    border-radius: 0;
    font-size: 16px;
    margin: 0 0 0 120px;
    padding: 0;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text .star-rating {
    float: none;
    display: inline-block;
    font-size: 12px;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text .star-rating span:before {
    color: #EFC720;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text p.meta {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text p.meta .woocommerce-review__author {
    font-weight: 400;
    color: #333333;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text p.meta .woocommerce-review__published-date {
    font-size: 14px;
}

.woocommerce.single-product .product #reviews #comments ol li .comment-text .description p:last-child {
    margin: 0;
}

.woocommerce.single-product .product #reviews #review_form #reply-title {
    color: #333;
    font-weight: 700;
}

.woocommerce.single-product .product #reviews #review_form input[type="text"], .woocommerce.single-product .product #reviews #review_form input[type="email"], .woocommerce.single-product .product #reviews #review_form input[type="phone"] {
    height: 40px;
    display: inline-block;
    line-height: 38px;
    background-color: transparent;
    border: 1px solid #EEEEEE;
    outline: none;
    color: #696969;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.woocommerce.single-product .product #reviews #review_form input[type="submit"] {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    display: inline-block;
    text-align: center;
    background-color: #333333;
    color: #fff;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    border: none;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce.single-product .product #reviews #review_form input[type="submit"]:hover {
    color: #fff;
    border-color: #da0e2b;
    background-color: #da0e2b;
}

.woocommerce.single-product .product #reviews #review_form textarea {
    padding: 15px;
    border: 1px solid #EEEEEE;
    outline: none;
    color: #696969;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 991px) {
    .woocommerce.single-product .woo-wide .woo-single-info .woo-single-summary {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/*# sourceMappingURL=assets/scss/sourcemap/style.css.map */
