<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Author: Matthijs Molhoek, 66Themes
 * URL: http://themeforest.net/user/66themes
 *
 * Project Name: Coffea - Site Template
 * Version: 1.0
 * Date: 06-02-2014
 * Last update: 06-02-2014
 * URL: -
 */

 /*------------------------------------------------------------------
[Table of contents]

1. Base Styles
2. General Styles
3. Header Styles
4. Main/Layout Styles
5. Footer Styles
6. Plugin Styles
7. Widget Styles
8. Helper Classes
9. Media Queries
10. Print Styles
-------------------------------------------------------------------*/

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #0f6256;
    color: #4accb9;
    text-shadow: none;
}

::selection {
    background: #0f6256;
    color: #4accb9;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

a,
a:focus {
   outline: 0;
}

:focus {outline:0;}
::-moz-focus-inner {border:0;}

/* ==========================================================================
   General styles
   ========================================================================== */
body {
    position: relative;
    font-family: 'Inika', serif;
    font-size: 14px;
    color: #555;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

hr {
    border-color: #eee;
    margin: 50px 0;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #333;
}

.hero {
    font-family: 'Roboto Slab', serif;
    color: #aaa;
    font-weight: 300;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    padding: 0 15%;
    line-height: 36px;
    word-wrap: break-word;
}

.subtitle {
    font-family: 'Inika', serif;
    font-weight: 700;
    font-size: 18px;
    color: #555;
}

.title-tinted {
    font-family: 'Inika', serif;
    color: #219b89;
    font-weight: normal;
    font-size: 32px;
    text-align: center;
}

.detail-title,
.detail-title a  {
    font-family: 'Inika', serif;
    font-weight: 700;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    border: none;
    line-height: 18px;
}

.page-title {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 72px;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 82px;
}

.page-subtitle {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 30px;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 5%;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    color: #555;
    font-weight: 300;
    font-size: 28px;
    text-transform: uppercase;

    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: " ";
    position: absolute;
    bottom: -18px;
    left: 46.4%;

    height: 2px;
    width: 7%;

    background: #555;
}

.paragraph-title {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    text-transform: uppercase;
}

.overlay-title,
.overlay-subtitle {
    font-family: 'Roboto Slab', serif;
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.overlay-subtitle {
    font-weight: 300;
}

.service-title {
    font-family: 'Inika', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.article-title {
    font-weight: 300;
    margin: 0 0 20px 0;
}

.blog-full .article-title {
    margin: 0 0 5px 0;
}

/* Paragraph &amp; Typographic */
p {
    line-height: 22px;
    margin-bottom: 25px;
}

strong {
    font-weight: 700;
}

em {
    font-weight: 300;
}

pre {
    background: #ebebeb;
    border: none;
    font-family: "Monaco", "Consolas";
    font-size: 16px;
    color: #666;
    padding: 20px;
    line-height: 28px;
}

small {
    font-size: 12px;
}

img {
    max-width: 100%;
}

iframe {
    max-width: 100%;
    border: none;
}

.paragraph-lead {
    font-size: 18px;
    color: #219b89;
    line-height: 32px;
}

/* Links */
a {
    border-bottom: 1px solid #219b89;
    color: #219b89;
    word-wrap: break-word;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

a:hover,
a:focus {
    background: #219b89;
    color: white;
    text-decoration: none;
    outline: 0;
}

a img {
    position: relative;
    background: white;
}

.page-content .section-split a img {
    background: #f8f8f8;
}

.page-content .section-split.tinted a img {
    background: #e1f1ef;
}

.article-title a {
    border: none;
    line-height: normal;
}

/* Buttons */
.button,
.button,
button,
input[type="button"] {
    -webkit-appearance: none;
    display: inline-block;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    background-color: #219b89;
    border: 1px solid #219b89;
    padding: 10px 13px 10px 14px;
    cursor: pointer;
    margin: 0 5px 10px 0;
    border-radius: 5px;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.button.large,
button.large,
input[type="button"].large {
    font-size: 21px;
}

.button.small,
button.small,
input[type="button"].small {
    font-size: 11px;
}

.button [class*="icon-"]:before {
    position: relative;
    top: 1px;
    margin-left: 3px;
}

/* Lime button */
.button.lime {
    background-color: #219b89;
    border: 1px solid #219b89;
}

.button.lime:hover {
    color: #219b89;
}

/* Green button */
.button.green {
    background-color: #329357;
    border: 1px solid #329357;
}

.button.green:hover {
    color: #329357;
}

/* Red button */
.button.red {
    background-color: #b85252;
    border: 1px solid #b85252;
}

.button.red:hover {
    color: #b85252;
}

/* Blue button */
.button.blue {
    background-color: #528eb8;
    border: 1px solid #528eb8;
}

.button.blue:hover {
    color: #528eb8;
}

/* Yellow button */
.button.yellow {
    background-color: #d5b32b;
    border: 1px solid #d5b32b;
}

.button.yellow:hover {
    color: #d5b32b;
}

/* Orange button */
.button.orange {
    background-color: #e67e22;
    border: 1px solid #e67e22;
}

.button.orange:hover {
    color: #e67e22;
}

/* Purple button */
.button.purple {
    background-color: #9b59b6;
    border: 1px solid #9b59b6;
}

.button.purple:hover {
    color: #9b59b6;
}

/* Brown button */
.button.brown {
    background-color: #9b6c21;
    border: 1px solid #9b6c21;
}

.button.brown:hover {
    color: #9b6c21;
}

/* Grey button */
.button.grey {
    background-color: #9E9E9E;
    border: 1px solid #9E9E9E;
}

.button.grey:hover {
    color: #9E9E9E;
}

.button:hover,
button:hover,
input[type="button"]:hover {
    color: #219b89;
    background-color: white;
}

.button-inverted {
    display: inline-block;
    background: none;
    color: white;
    font-size: 18px;
    border: 2px solid white;
    border-radius: 40px;
    line-height: normal;
    padding: 10px 25px;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.button-inverted:hover {
    background: white;
    color: #333;
    text-decoration: none;
}

/* List */
.link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-list li {
    margin-bottom: 20px;
}

.bordered-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.bordered-list strong {
    text-transform: uppercase;
    margin-right: 5px;
}

.bordered-list li {
    line-height: normal;
    padding: 18px 0;
    border-top: 1px solid #eee;
}

/* Dropcaps */
.dropcap {
    float: left;
    font-size: 46px;
    margin: 12px 6px 0 0;
    font-weight: bold;
    text-transform: uppercase;
}

.dropcap.rounded,
.dropcap.rectangle {
    border-radius: 100%;
    background: #555;
    color: white;
    padding: 8px 11px;
    font-size: 26px;
    margin-top: 6px;
}

.dropcap.rectangle {
    border-radius: 3px;
}

.dropcap.color {
    background-color: #219b89;
}

/* Quotes */
blockquote,
blockquote.pull-left,
blockquote.pull-right {
    border-color: #219b89;
}

blockquote p {
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
}

blockquote cite {
    font-size: 12px;
    color: #aaa;
    font-style: italic;
}

blockquote cite:before {
    content: "- "
}

blockquote.colored {
    background-color: #219b89;
    color: white;
    border: none;
}

blockquote.pull-left,
blockquote.pull-right {
    width: 30%;
}


blockquote.colored p,
blockquote.colored cite {
    color: white;
}

blockquote.quotes {
    position: relative;
    border: none;
}

blockquote.quotes:before {
    content: "��";
    position: absolute;
    top: -10px;
    left: -10px;
    color: #219b89;
    font-size: 74px;
}

blockquote.quotes:after {
    content: "��";
    position: absolute;
    bottom: -50px;
    right: 0;
    color: #219b89;
    font-size: 74px;
}

.testimonial blockquote {
    border: none;
    margin: 0 0 35px 0;
    padding: 0;
}

.testimonial blockquote p {
    font-size: 13px;
    line-height: 22px;
    color: #999;
}

.testimonial img {
    border-radius: 100%;
}

.testimonial blockquote p:before {
    content: "��";
}

.testimonial blockquote p:after {
    content: "��";
}

.testimonial blockquote cite {
    font-size: 14px;
    color: #999;
    font-weight: 700;
    font-style: normal;
}

.testimonial blockquote cite span {
    font-style: italic;
}

.testimonial blockquote cite:before {
    content: "";
}

/* Form Input fields etc */
form {
    margin-bottom: 30px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    width: 100%;
    height: 50px;

    font-family: "Inika";
    font-size: 13px;
    color: #333;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    margin-bottom: 25px;

    -webkit-appearance: none;
    box-shadow: 3px 3px 0 #eee;
    border-radius: 0;
    border: 1px solid #eee;
    padding: 0 45px 0 15px;
}

textarea {
    min-height: 200px;
    padding-top: 18px;
}

::-webkit-input-placeholder {
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
}

:-moz-placeholder { /* Firefox 18- */
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
}

::-moz-placeholder {  /* Firefox 19+ */
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
}

input:-ms-input-placeholder {
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
}

.input-field .placeholder {
    font-size: 11px;
    color: #aaa;
    font-weight: 300;
    font-style: italic;
}

.input-field {
    position: relative;
    margin: 0;
    cursor: text;
}

.input-field:before {
    position: absolute;
    right: 13px;
    top: 13px;
    color: #ddd;
    font-size: 21px;
}

input.error,
textarea.error {
    border: 1px solid #ec3a33;
    box-shadow: none;
}

input.valid,
textarea.valid {
    border: 1px solid #7ec0f0;
}

label.error {
    position: absolute;
    bottom: 2px;
    left: 0;
    color: #c57c7e;
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
}

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
    box-shadow: none;
    color: white;
    pointer-events: none;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

.submit-button {
    margin-left: 15px;
}

.feedback-text {
    margin-bottom: 0;
    line-height: 24px;
    font-size: 13px;
    font-style: italic;
}

.js.csstransitions #top,
.js.csstransitions #side,
.js.csstransitions #main {
    opacity: 0;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.js.csstransitions .loaded #top,
.js.csstransitions .loaded #side,
.js.csstransitions .loaded #main {
    opacity: 1;
}

/* Helpers etc. */
.highlight {
    color: #219b89;
    font-weight: bold;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.centered {
    text-align: center;
}

address {
    margin-bottom: 40px;
}

address .address-item {
    font-family: 'Inika', serif;
    position: relative;
    display: block;
    margin-bottom: 25px;
    line-height: 22px;
    padding-left: 14%;
}

address .address-item:before {
    font-family: 'icomoon';
    position: absolute;
    top: 1px;
    left: 0;
    color: #bbb;
    font-size: 24px;
}

.social-icons a {
    display: inline-block;
    font-size: 24px;
    text-decoration: none;
    margin: 0 15px 15px 0;
    color: #bbb;
}

.social-icons a:hover {
    background: none;
}

.callout {
    text-align: center;
    font-size: 24px;
    line-height: 42px;
}

.huge {
    margin: 50px 0 -50px 0;
    display: block;
    font-size: 420px;
    color: #F5F5F5;
}

.box {
    text-align: center;
    font-size: 15px;
    background: #f8f8f8;
    padding: 50px 20px;
    margin-bottom: 25px;
}

.icon-box {
    color: #bbb;
    width: 85%;
    margin: 0 auto;
}

.icon-box p {
    font-size: 13px;
    font-style: italic;
}

.icon-box .icon {
    display: inline-block;
    font-size: 48px;
    margin-bottom: 10px;
}

.spinner-holder {
    float: right;
    position: relative;
    left: -30px;
    top: 4px;
}

.section-split .box {
    background: white;
}

.box &gt; *:last-child,
.box &gt; *:last-child &gt; *:last-child,
.box &gt; *:last-child &gt; *:last-child &gt; *:last-child {
  margin-bottom: 0;
}

.box &gt; *:first-child,
.box &gt; *:first-child &gt; *:first-child,
.box &gt; *:first-child &gt; *:first-child &gt; *:first-child {
  margin-top: 0;
}

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

.icon-overview span {
    font-size: 25px;
    display: inline-block;
    margin: 10px;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.icon-overview span:hover {
    color: #333;
}

/* Re-used transitions */
body,
.head-top,
.nav-trigger,
.head-top .background-blur,
.page-top .toggle-side,
.page-top .toggle-side:before,
.side-meta,
.portfolio-item .item-description,
.portfolio-item .item-description:after,
.main-nav,
.main-nav ul li ul {
    -webkit-transition: all 0.2s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -moz-transition: all 0.2s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -o-transition: all 0.2s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -ms-transition: all 0.2s cubic-bezier(0.712, 0.0376, 0.392, 1);
    transition: all 0.2s cubic-bezier(0.712, 0.0376, 0.392, 1);
}


/* ==========================================================================
   Header styles
   ========================================================================== */

.page-top {
    position: relative;
    padding-bottom: 65px;
}

/* Header Top Bar */
.head-top {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    background: black;
    background: rgba(0, 0, 0, 0.3);

    padding: 35px 0;
    z-index: 9999;
}

.head-top.shrink {
    padding: 17px 0;
}

.head-top.darken {
    background: rgba(0, 0, 0, 0.5);
}

.head-top.shrink .background-blur {
    visibility: hidden;
    opacity: 0;
}

.head-top a,
.head-top a:hover,
.head-logo img,
.head-top:hover img {
    border: none;
    background: none;
}

.nav-trigger {
    display: none;

    position: absolute;
    top: 26%;
    left: 25px;

    background: white;
    cursor: pointer;
    color: #555;
    line-height: normal;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 0;
    z-index: 99999;
}

.shrink .nav-trigger {
    top: 20%;
}

.nav-trigger.active {
    color: #219b89;
}

.head-top .background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;

    /* WebKit bug, no background-attachment + transform3d :( */
    /*background-attachment: fixed;*/

    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='80');
}

.head-top .background-blur:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Main navigation */
.main-nav {
    position: relative;
    z-index: 9999;
}

.main-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav ul li a {
    position: relative;
}

.main-nav ul .has-subnav &gt; a:after {
    font-family: 'icomoon';
    content: "\e25e";

    position: absolute;
    top: 7px;
    right: 8px;
    margin-left: 6px;

    speak: none;
    color: #ddd;
    font-size: 8px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

/* Page Header */
.page-head {
    position: relative;
    height: 525px;
    background: #2c2e37;
    display: table;
    width: 100%;
    text-align: center;

    background-repeat: no-repeat;
    background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.page-head:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-radial-gradient(center, ellipse cover,  rgba(16,24,61,0) 0%, rgba(0,0,0,0.75) 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(16,24,61,0)), color-stop(100%,rgba(0,0,0,0.75))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(16,24,61,0) 0%,rgba(0,0,0,0.75) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  rgba(16,24,61,0) 0%,rgba(0,0,0,0.75) 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  rgba(16,24,61,0) 0%,rgba(0,0,0,0.75) 100%); /* IE10+ */
    background: radial-gradient(ellipse at center,  rgba(16,24,61,0) 0%,rgba(0,0,0,0.75) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0010183d', endColorstr='#bf000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.page-head .container {
    position: relative;
    top: 20px;
    z-index: 999;
    width: 100%;
    display: table-cell;
    vertical-align: middle;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    padding: 15px;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-head.typography {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.features {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.product {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.team {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.services {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.faq {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.columns {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.pricing {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.icons {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.lost {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.work-two {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.work-three {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.work-four {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.grid {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.work-single {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.blog {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.blog-full {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.blog-grid {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.blog-single {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.blog-single-full {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.archive {
    background-image: url("http://placehold.it/1400x525");
}

.page-head.contact {
    background-image: url("http://placehold.it/1400x525");
}

.page-top .toggle-side {
    position: absolute;
    top: 0;
    right: -60px;

    background: #24282a;
    width: 60px;
    height: 100%;

    cursor: pointer;
    font-size: 28px;
    color: #aaa;
}

.shrink .toggle-side {
    right: 0;
}

.page-top .toggle-side:before {
    position: absolute;
    top: 27%;
    padding: 0 15px;
}

.page-top .toggle-side:hover:before,
.side-active .toggle-side:before {
    color: white;

    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.shrink .toggle-side:before {
    padding: 0 15px;
}


/* ==========================================================================
   Main/Layout Styles
   ========================================================================== */

/* Section Split */
.section-split {
    background-color: #f8f8f8;
    padding: 40px 0;
    margin: 70px 0;

    background-repeat: no-repeat;
    background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.section-split.tinted {
    background-color: #e1f1ef;
}

.section-split.stick {
    margin-bottom: -70px;
}

.section-split.embed {
    height: 450px;
}

.section-split:last-child {
    margin-bottom: -100px;
    padding-bottom: 110px;
    border-top: 2px solid #f3f3f3;
}

.section-split.parallax {
    display: table;
    min-height: 450px;
    height: 450px;
    width: 100%;
}

.section-split.parallax .container {
    display: table-cell;
    vertical-align: middle;
}

.section-split.clients {
    background-image: url("http://placehold.it/1400x800");
}

.section-split.product {
    background-image: url("http://placehold.it/1400x800");
}

/* Side Meta Area */
.side-meta {
    position: fixed;
    top: 0;
    right: -275px;

    width: 275px;
    height: 100%;
    padding: 40px 30px;

    background: #24282a;
    color: #eee;

    cursor: pointer;
    overflow-y: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    z-index: 999999;
}

.side-active .side-meta {
    right: 0;
    cursor: default;
}

.side-meta .close-side {
    position: absolute;
    top: -8px;
    right: 0;
    cursor: pointer;
    font-size: 12px;
    padding: 30px;
    padding-right: 23px;
    z-index: 999;
}

.side-meta .close-side:hover {
    color: white;
}

.side-meta .meta-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.side-page-description {
    margin-bottom: 50px;
}

.breadcrumbs {
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    list-style: none;
}

.breadcrumbs:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 40%;
    height: 1px;
    background: white;
}

.breadcrumbs li {
    display: inline-block;
    font-size: 12px;
    font-style: italic;
}

.breadcrumbs li a {
    display: block;
    position: relative;

    border: none;
    background: none;

    margin-right: 6px;
    padding-right: 6px;

    color: #eee;
    text-decoration: underline;
}

.breadcrumbs li a:after {
    content: "/";
    font-size: 11px;
    text-decoration: none;
    position: absolute;
    right: -4px;
    top: 1px;
}

.block-button {
    display: block;
    line-height: normal;
    color: white;
    background: #141719;
    font-size: 14px;
    border: none;
    text-align: center;
    padding: 15px 5px;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.social-blocks {
    margin: 30px 0 30px 0;
    padding: 0;
    list-style: none;
}

.social-blocks li {
    float: left;
    width: 25%;
}

.social-blocks a {
    display: block;
    border: none;
    text-align: center;
    color: white;
    background: #141719;
    line-height: normal;
    padding: 13px 0;
    font-size: 16px;
    border: 1px solid #24282a;
}

/* Side meta active layout transition */
body {
    left: 0;
}

.side-active,
.side-active .head-top {
    left: -275px;
}

/* Service Box */
.service-box {
    text-align: center;
}

.service-box:before {
    font-size: 68px;
    color: #219b89;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

/* Feature Box */
.feature-box {
    position: relative;
    padding-left: 60px;
    margin-bottom: 35px;
}

.feature-box:before {
    position: absolute;
    left: 0;
    top: 4px;
    color: #999;
    font-size: 32px;
}

.feature-box:hover:before {
    color: #219b89;

    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.feature-title {
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    font-size: 12px;
    color: #219b89;
    font-weight: 700;
}

.circle-stats {
    display: inline-block;
    position: relative;
    z-index: 99;
    padding: 0 3%;
    width: 200px;
}

.circle-stats p {
    position: relative;
    display: inline-block;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    color: white;
    font-weight: 300;
    font-size: 20px;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
}

.circle-stats p:before {
    content: " ";
    position: absolute;
    top: -24%;
    left: -10%;
    background: #219b89;
    width: 0;
    height: 0;
    padding: 60%;
    border-radius: 100%;
    z-index: -1;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.circle-stats .stat {
    display: block;
    font-style: normal;
    font-size: 72px;
    line-height: normal;
}

/* Employee */
.employee {
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 15px;
    border-radius: 5px;
    background-color: #f8f8f8;
    margin-bottom: 30px;
}

.employee .employee-image {
    border-radius: 100%;
    border: 2px solid white;
}

.employee .employee-name {
    font-family: 'Roboto Slab', serif;
    color: #555;
    text-transform: uppercase;
    font-weight: 700;
}

.employee .employee-title {
    font-family: 'Inika', serif;
    font-style: italic;
    color: #999;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.employee .employee-social {
    margin: 0;
}

.employee .employee-social a {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 5px 0 3px;
    border-right: 1px solid #aaa;
    border-bottom: 0;
    font-weight: 700;
    line-height: normal;
}

.employee .employee-social a:first-child {
    padding-left: 0;
}

.employee .employee-social a:last-child {
    padding-right: 0;
    border: none;
}

.employee .employee-social a:hover {
    background: none;
    color: #111;
}

/* Image Overlay */
.image-overlay {
    position: relative;
    margin-bottom: 10px;
}

.image-overlay .overlay-text {
    position: absolute;
    z-index: 19;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 27% 0;

    font-family: 'Inika', serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    text-transform: uppercase;
}

.image-overlay .overlay-text:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.image-overlay img {
    position: relative;
    display: block;
    z-index: 9;
}

/* Pricing Tables */
.pricing-table {
    margin: 0 0 45px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.pricing-table li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    background: #f4f4f4;
    margin: 0 0 3px 0;
    line-height: normal;
    padding: 33px 15px;
    font-size: 18px;
}

.pricing-table .pricing-edition {
    position: relative;
    background: #1c1d23;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 20px 15px;
}

.pricing-table .pricing-edition .special-lead {
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;

    margin: 0;
    padding: 2px 0;
    background: #219b89;

    font-family: 'Inika', serif;
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 11px;
    letter-spacing: normal;
}

.special .pricing-edition {
    background: #0a0b0f;
}

.pricing-table .pricing-edition span {
    display: block;
    font-size: 26px;
}

.pricing-table .pricing-price {
    background: none;
    color: #aaa;
    font-size: 90px;
    padding: 65px 5px 95px 5px;
    line-height: 1px;
    white-space: nowrap;
    background: white;
}

.special .pricing-price {
    color: #5e5e5e;
}

.pricing-table sup {
    position: relative;
    font-size: 32px;
    top: -38px;
    left: 23px;
}

.pricing-table sub {
    position: relative;
    right: 25px;
    bottom: -15px;
    font-size: 20px;
}

.pricing-table .signup {
    padding: 0;
}

.pricing-table .signup .button {
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
    padding: 15px 0;
    display: block;
    margin: 0;
}

/* Portfolio */
.portfolio-item {
    position: relative;
    display: block;
    border: none;
    color: white;
    margin-bottom: 30px;
}

.portfolio-item:hover {
    color: white;
}

.portfolio-item .item-image {
    width: 100%;
}

.portfolio-item .item-description {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: black;
    background: rgba(0, 0, 0, 0.75);

    text-align: center;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.portfolio-item:hover .item-description {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

/* Tap as hover on touch devices DO NOT work with visibility, use display property instead */
.touch .portfolio-item .item-description {
    display: none;
}

.touch .portfolio-item:hover .item-description {
    display: block;
}

.portfolio-item .item-description:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0 solid rgba(255, 255, 255, 0.75);
}

.portfolio-item:hover .item-description:after {
    border-width: 10px;
}

.portfolio-item .inner-content {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    padding: 0 30px;
}

.portfolio-item .inner-content span {
    display: block;
}

.portfolio-item .item-description .item-title {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 3px;
}

.portfolio-item .item-description .item-tags {
    font-style: italic;
    font-size: 12px;
    color: #eee;
    margin-top: 3px;
}

.portfolio-container.grid {
    margin-bottom: 50px;
}

.grid .portfolio-item {
    float: left;
    margin: 0;
    max-width: 24.9%;
}

/* Portfolio filter */
.portfolio-filter {
    margin: 0 0 45px 0;
    padding: 30px 0 20px 0;
    list-style: none;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.portfolio-filter li {
    display: inline-block;
}

.portfolio-filter li a {
    display: block;
    margin: 0 12px 10px 12px;
    border: none;

    font-family: 'Inika', serif;
    line-height: normal;
    font-size: 18px;
    color: #bbb;
    text-transform: uppercase;
    font-weight: bold;
}

.portfolio-filter li .selected,
.portfolio-filter li a:hover {
    color: #222;
    background: none;
}

/* Portfolio Navigation */
.portfolio-nav {
    border-bottom: 1px solid #eee;
    padding-bottom: 28px;
    margin-bottom: 70px;
}

.portfolio-nav a {
    display: inline-block;
    border: none;
    color: #555;

    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: lowercase;
    padding: 0 20px 0 0;
}

.portfolio-nav .pull-right a {
    border-right: 1px solid #eee;
}

.portfolio-nav .pull-right a:last-child {
    border-right: none;
    padding-right: 0;
}

.portfolio-nav a:before {
    font-family: 'icomoon';
    content: "\e2ad";

    speak: none;
    font-size: 11px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;
    font-style: normal;

    margin: 0 5px 0 0;
    position: relative;
    top: 2px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.portfolio-nav a:hover {
    color: #222;
    background: none;
}

.portfolio-nav .nav-next {
    padding: 0 0 0 20px;
}

.portfolio-nav .nav-next:before {
    content: "\e2a9";
    float: right;
    margin: 0 0 0 5px;
    top: 4px;
}

.portfolio-nav .nav-overview:before {
    content: "\e1c1";
    top: 1px;
    margin: 0 9px 0 0;
}

/* Pagination */
.pagination {
    display: block;
    text-align: center;
    color: #ccc;
    border-top: 1px solid #eee;
    padding-top: 35px;
}

.pagination a {
    display: inline-block;
    border: none;
    color: #555;
}

.pagination .paging-link {
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin: 0 20px 0 0;
}

.pagination .paging-link:before {
    font-family: 'icomoon';
    content: "\e2ad";

    speak: none;
    font-size: 11px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;
    font-style: normal;

    margin: 0 5px 0 0;
    position: relative;
    top: 2px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pagination a.paging-link:hover {
    color: #222;
    background: none;
}

.pagination .next {
    margin: 0 0 0 20px;
}

.pagination .next:before {
    content: "\e2a9";
    float: right;
    margin: 0 0 0 5px;
    top: 4px;
}

.pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li a {
    display: block;
    width: 40px;
    height: 40px;

    margin: 0 5px;
    padding: 9px 0 11px 1px;

    background: white;
    border: 1px solid #ccc;
    border-radius: 100%;

    font-family: 'Roboto Slab', serif;
    text-align: center;
    color: #333;
    font-weight: 700;
    line-height: normal;
}

.pagination ul .current,
.pagination ul li a:hover {
    background: #888;
    color: white;
    border-color: #888;
}

.blog-full .pagination {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px dotted #eee;
}

/* Blog */
.article-post {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dotted #eee;
}

.article-post:last-of-type {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.article-container .article-post {
    width: 30%;
    margin: 15px;
    background: #fafafa;
    padding: 0;
    border: none;
}

.article-container .article-title {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px;
}

.article-post .article-content {
    padding: 10px 18px;
}

.blog-full .article-post {
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
}

.article-post .article-image,
.article-post .article-embed,
.article-post .fluid-width-video-wrapper {
    margin-bottom: 20px;
}

.article-embed {
    width: 100%;
    height: auto;
}

.article-meta {
    font-size: 12px;
    color: #777;
    font-style: italic;
}

.article-meta span {
    display: block;
    margin-bottom: 10px;
}

.article-container .article-meta {
    margin-bottom: 20px;
    line-height: 18px;
}

.article-container .article-meta span {
    display: inline;
    margin-bottom: 5px;
}

.article-meta .meta-author-image {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.article-meta .meta-author-bio {
    position: relative;
    font-size: 14px;
    color: #777;
    margin-bottom: 22px;
    padding-bottom: 20px;
}

.article-meta .meta-author {
    position: relative;
    font-family: 'Inika', serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.article-meta .meta-author:before,
.article-meta .meta-author-bio:before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    border-bottom: 1px solid #eee;
}

.article-full .article-meta {
    text-align: right;
}

.article-full .article-meta .meta-author {
    margin-bottom: 10px;
    padding-bottom: 0;
}

.article-full .article-meta .meta-author:before {
    content: none;
}

.article-full .article-meta .meta-author:before,
.article-full .article-meta .meta-author-bio:before {
    left: auto;
    right: 0;
}

.article-tags {
    color: #aaa;
    text-transform: uppercase;
    font-size: 12px;
}

.article-tags a {
    color: #aaa;
    margin-right: 7px;
    border: none;
}

.article-tags a:hover {
    color: white;
}

/* Article Navigation */
.article-nav {
    padding: 25px 0;
    line-height: normal;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 0 0 60px 0;
}

.article-nav a {
    display: block;
    font-size: 13px;
    color: #999;
    border: none;
    padding: 0 10px;
}

.article-nav .col-xs-6 {
    border-right: 1px solid #eee;
}

.article-nav &gt; div:last-child {
    border: none;
}

.article-nav .article-post-date {
    font-style: italic;
}

.article-nav .prev-article {
    text-align: right;
}

.article-nav a .nav-label {
    display: inline-block;
    text-transform: uppercase;
    color: #666;
    font-size: 11px;
    font-weight: bold;
}

.article-nav .prev-article .nav-label:before {
    font-family: 'icomoon';
    content: "\e2ad";
    margin-right: 5px;
    font-size: 10px;

    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.article-nav .next-article .nav-label:after {
    font-family: 'icomoon';
    content: "\e2a9";
    margin-left: 5px;
    font-size: 10px;

    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.article-nav .post-title {
    font-family: 'Roboto Slab', serif;
    color: #219b89;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    margin: 8px 0 3px 0;
}

.article-nav a:hover {
    background: none;
}

.article-nav a:hover .post-title {
    color: #333;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

/* Comments */
.comments {
    margin-top: 70px;
}

.comments ul {
    list-style: none;
}

.comments .comment-count {
    margin: 0 0 35px 0;
    font-size: 26px;
}

.comment-count .count-bubble {
    display: inline-block;
    position: relative;
    top: -12px;
    font-family: 'Roboto Slab', serif;
    color: white;
    line-height: 14px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 5px;
    text-align: center;
    width: 32px;
}

.comment-count .count-bubble:before {
    position: absolute;
    top: -6px;
    left: 0;
    z-index: -1;
    color: #404040;
    font-size: 32px;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-container {
    position: relative;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.comment-container .comment-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.comment-container .comment-image img {
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 100%;
}

.comment-container .comment-image:hover {
    background: none;
}

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

.comment-container .comment-author {
    display: inline-block;
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
    line-height: normal;
    border: none;
}

.bypostauthor .comment-container .comment-author {
    color: #219b89;
}

.comment-container .is-author {
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    color: #aaa;
    line-height: 28px;
    margin-left: 10px;
}

.comment-container .comment-author:hover {
    color: #555;
    background: none;
}

.comment-container .comment-date {
    margin-bottom: 10px;
    font-size: 12px;
    color: #8b8b8b;
    font-style: italic;
    line-height: normal;
}

.comment-container .comment-body {
    color: #555;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.comment-container .reply-button {
    position: relative;
    display: none;

    font-size: 11px;
    color: #555;
    line-height: normal;
    margin-left: 11px;

    border-bottom: 1px solid transparent;
}

.comment-container .reply-button:before {
    content: " ";
    position: absolute;
    top: 5px;
    left: -8px;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 100%;
}

.comment-container:hover .reply-button {
    display: inline-block;
}

.comment-container .reply-button:hover {
    color: #333;
    background: none;
    border-bottom: 1px solid #333;
}

/* Nested Comments */
.children {
    margin-left: 60px;
}

/* ==========================================================================
   Footer styles
   ========================================================================== */

.page-footer {
    position: relative;
    margin-top: 100px;
    padding: 75px 0 30px 0;
    background: #2c2e37;
    color: #eee;
    font-size: 16px;
}

.page-footer .to-top {
    position: absolute;
    left: 47%;
    background: #2c2e37;
    top: -37px;
    border-radius: 100%;
    text-align: center;
    padding: 32px 33px 32px 32px;

    cursor: pointer;
    font-size: 28px;
}

.page-footer .to-top:before {
    position: relative;
    top: -15px;
}

.page-footer .to-top:hover {
    color: white;
    text-decoration: none;
}

.page-footer a {
    color: #a5a5a5;
    border: none;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.page-footer a:hover {
    color: white;
}

.page-footer a img {
    background: #2c2e37;
}

.page-footer h1,
.page-footer h2,
.page-footer h3,
.page-footer h4,
.page-footer h5,
.page-footer h6 {
    color: white;
}

.page-footer .widget {
    border-top: 1px solid #ccc;
    padding-top: 30px;
}

.page-footer .widget-title {
    font-family: 'Inika', serif;
    font-weight: normal;
    font-size: 22px;
    margin-bottom: 20px;
}

.page-footer .disclaimer {
    border-top: 1px solid #ccc;
    padding-top: 50px;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
}

/* ==========================================================================
   Plugin styles
   ========================================================================== */

/* Superslides plugin */
.superslides {
    position: relative;
    height: 100%;
}

.superslides .slides-container {
    display: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.superslides .slides-pagination {
    position: absolute;
    left: 0;
    bottom: 45px;
    width: 100%;
    text-align: center;
    z-index: 999;
}

.superslides .slides-pagination a {
    display: inline-block;
    color: white;
    margin: 0 4px;
    width: 15px;
    height: 15px;
    border: 1px solid white;
    background: none;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.superslides .slides-pagination a:hover,
.superslides .slides-pagination .current {
    width: 15px;
    height: 15px;
    background: white;
}

.superslides .slide-content {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
}

.superslides .slide-content .container {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15%;
    background: rgba(0, 0, 0, 0.4);
}

.superslides h1,
.superslides h2,
.superslides h3,
.superslides h4,
.superslides h5,
.superslides h6 {
    color: white;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {padding: 0 0 80px 0; margin: 0; position: relative;}
.flexslider .slides &gt; li {position: relative; display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides &gt; li:first-child {display: block;}

.flex-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-container .slides {
    position: relative;
    z-index: 99;
}

.flex-container li iframe {
    width: 100%;
    height: 100%;
}

.flex-container .slides li .flex-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    background: black;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
}

.flex-direction-nav {
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 999;
    width: 100%;
}

.flex-direction-nav li a {
    position: absolute;
    left: 25px;
    opacity: 0;
    visibility: hidden;

    display: block;
    cursor: pointer;

    border: none;
    text-decoration: none;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.flex-container:hover .flex-direction-nav li a {
    opacity: 0.6;
    visibility: visible;
}

.flex-direction-nav li a:hover {
    background: none;
    opacity: 1 !important;
}

.flex-direction-nav li a:before {
    font-family: 'icomoon';
    content: "\e2d1";

    speak: none;
    color: white;
    font-size: 36px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.flex-direction-nav li .flex-next {
    left: auto;
    right: 25px;
}

.flex-direction-nav li .flex-next:before {
    content: "\e2cf";
}

.flex-control-nav {
    position: absolute;
    bottom: 35px;
    left: 0;

    width: 100%;
    text-align: center;

    list-style: none;
    padding: 0;
    margin: 0;
}

.flex-control-nav li {
    display: inline-block;
    text-indent: -9999px;
}

.flex-control-nav li a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #999;
    cursor: pointer;
    border: none;
    margin: 0 5px;
}

.flex-control-nav li .flex-active,
.flex-control-nav li a:hover {
    background: #219b89;
}

/* Tabs */
.tab-nav {
    margin: 0 0 5px 0;
    padding: 0;
    list-style: none;
}

.tab-nav li {
    display: inline-block;
}

.tab-nav li a {
    display: block;
    text-decoration: none;
    color: #555;
    background-color: #f4f4f4;
    padding: 8px 15px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    margin: 0 5px 10px 0;
    line-height: normal;
}

.tab-nav .active a,
.tab-nav li a:hover {
    background-color: #219b89;
    color: white;
}

.tab-content {
    background-color: #eee;
    border-radius: 10px;
    padding: 15px;
}

.tab-pane &gt; *:first-child,
.tab-pane &gt; *:first-child &gt; *:first-child,
.tab-pane &gt; *:first-child &gt; *:first-child &gt; *:first-child {
  margin-top: 0;
}

.tab-pane &gt; *:last-child,
.tab-pane &gt; *:last-child &gt; *:last-child,
.tab-pane &gt; *:last-child &gt; *:last-child &gt; *:last-child {
  margin-bottom: 0;
}

/* Vertical Tabs */
.vertical .tab-nav-container {
    text-align: right;
    border-right: 1px solid #eee;
    padding: 40px 0;
}

.vertical .tabs-title {
    text-transform: uppercase;
    margin-right: 13px;
    margin-top: 75px;
}

.vertical li:first-child h4 {
    margin-top: 0;
}

.vertical .tab-nav-container li {
    display: block;
}

.vertical .tab-nav-container a {
    display: block;
    background: none;
    font-weight: normal;
    color: #888;
    margin: 0;
    border-radius: 0;
}

.vertical .tab-nav-container .active a,
.vertical .tab-nav-container a:hover {
    background: #f5f5f5;
    color: #333;
}

.vertical .tab-nav-container .active a {
    font-weight: bold;
}

.vertical .tab-content {
    background: none;
    border-radius: 0;
    padding: 33px 0;
}

/* Collapsibles (toggle/accordion */
.collapsible {
    margin-bottom: 10px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.collapse-title {
    position: relative;
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    color: #333;
    background: #f1f1f1;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 15px 35px 15px 15px;
    background-color: #219b89;
    color: white;
    line-height: normal;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.collapse-title:after {
    font-family: 'icomoon';
    content: "\e25e";

    position: absolute;
    top: 32%;
    right: 15px;
    margin-left: 6px;

    speak: none;
    color: white;
    font-size: 16px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.collapse-title.collapsed {
    background: #f1f1f1;
    color: #333;
}

.collapse-title.collapsed:after {
    content: "\e25d";
    color: #555;
}

.collapse-title:hover {
    background-color: #219b89;
    color: white;
}

.collapse-title:hover:after {
    color: white;
}

.collapsible-pane {
    padding: 15px;
    background: #fafafa;
}

.collapsible-pane &gt; *:first-child,
.collapsible-pane &gt; *:first-child &gt; *:first-child,
.collapsible-pane &gt; *:first-child &gt; *:first-child &gt; *:first-child {
  margin-top: 0;
}

.collapsible-pane &gt; *:last-child,
.collapsible-pane &gt; *:last-child &gt; *:last-child,
.collapsible-pane &gt; *:last-child &gt; *:last-child &gt; *:last-child {
  margin-bottom: 0;
}

/* Alerts */
.close:hover, .close:focus {
    background: none;
}

/* Progress Bars */
.progress {
    height: 14px;
    border-radius: 7px;
    box-shadow: none;
    -webkit-box-shadow: none;
    background: #eee;
}

.progress-default {
    background: #219b89;
}

.progress-bar {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.progress-bar:last-child {
    border-radius: 0 7px 7px 0;
}

/**** Isotope Filtering ****/
.portfolio-container .col-sm-3 {
    margin-right: -1px;
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
    -webkit-transition: all 0.8s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -moz-transition: all 0.8s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -o-transition: all 0.8s cubic-bezier(0.712, 0.0376, 0.392, 1);
    -ms-transition: all 0.8s cubic-bezier(0.712, 0.0376, 0.392, 1);
    transition: all 0.8s cubic-bezier(0.712, 0.0376, 0.392, 1);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure {
    /* The shadow behind the image */ }
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0; }
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content,
.mfp-fade.mfp-wrap .mfp-arrow {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content,
.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content,
.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/* Google Maps */
.gm-style img {
    max-width: none;
    background: none;
}

.gm-style a {
    border: none;
}

.gm-style a:hover {
    background: none;
}

/* ==========================================================================
   Widget styles
   ========================================================================== */

/* Sidebar widgets*/
.sidebar .widget {
    margin-bottom: 70px;
}

.sidebar .widget-title {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #f0f0f0;
    padding: 6px;
    margin: 0 0 15px 0;
    background: #1F2125;
}

.searchform input {
    margin: 0;
}

.searchform .input-field:before {
    font-size: 12px;
    right: 17px;
    top: 19px;
}

/* Latest posts */
.latest-posts,
.categories {
    line-height: normal;
}

.latest-posts ul,
.categories ul,
.latest-comments ul,
.links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.latest-posts ul li,
.categories ul li,
.latest-comments ul li {
    margin-bottom: 15px;
}

.latest-posts em {
    font-size: 12px;
    color: #999;
}

.latest-posts a {
    font-weight: 700;
    color: #555;
    border: none;
}

.latest-posts a {
    font-weight: 700;
    color: #555;
    border: none;
}

.latest-posts a:hover,
.categories a:hover {
    color: white;
}

/* Categories */
.categories a {
    color: #555;
    border: none;
}

/* Tags */
.tags a {
    display: inline-block;
    background: #888;
    color: white;
    border: none;
    line-height: 1;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    margin: 0 3px 7px 0;
}

.tags a:hover {
    background: white;
    color: #219b89;
}

/* Latest Comments */
.latest-comments li {
    line-height: 22px;
}

.latest-comments a {
    border: none;
}

/* Links */
.links li {
    margin-bottom: 15px;
}

.links a {
    border: none;
}

.links a:after {
    content: "\e2a1";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    margin-left: 10px;
    font-size: 8px;

    position: relative;
    top: -1px;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}













/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

/* Larger than desktop 1200 (devices and browsers) */
@media only screen and (min-width: 1200px) {

}

/* Dekstop sizes (devices and browsers) */
@media only screen and (min-width: 992px) {
    .head-logo {
        float: left;
    }

    .head-top .container {
        position: relative;
        display: table;
    }

    /* Main Navigation */
    .main-nav {
        text-align: right;
        display: table-cell;
        vertical-align: middle;
    }

    .main-nav &gt; ul {
        display: inline-block;
    }

    .main-nav ul li {
        position: relative;
        display: inline-block;
        text-align: left;

        -webkit-perspective: 600;
        -moz-perspective: 600px;
        -o-perspective: 600;
        -ms-perspective: 600;
        perspective: 600;
    }

    .main-nav ul li a {
        display: block;
        padding: 2px 20px 3px 20px;

        font-family: 'Roboto Slab', serif;
        font-size: 15px;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        line-height: normal;
        border: none;

        -webkit-transition: all 0.1s ease-in;
        -moz-transition: all 0.1s ease-in;
        -ms-transition: all 0.1s ease-in;
        -o-transition: all 0.1s ease-in;
        transition: all 0.1s ease-in;
    }

    .main-nav ul li:hover &gt; a:after {
        text-decoration: none;
        color: white;

        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .main-nav ul .has-subnav.active &gt; a:after {
        top: 7px;
        color: #222;
    }

    .main-nav &gt; ul &gt; .active &gt; a {
        color: white;
        padding: 1px 12px 2px 12px;
        margin: 1px 8px 1px 8px;
        border: 1px solid white;
        background: white;
        color: #222;
        text-shadow: none;
        border-radius: 3px;
    }

    .main-nav &gt; ul &gt; .has-subnav.active &gt; a {
        padding-right: 20px;
        margin-right: 0;
    }

    .main-nav ul li ul .active &gt; a {
        color: #219b89;
    }

    /* subnav */
    .main-nav ul li ul {
        position: absolute;
        top: 24px;
        left: 20px;
        white-space: nowrap;
        visibility: hidden;

        padding: 10px 0;

        background: white;
        border-radius: 10px;
        box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.3);

        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;

        -moz-transform: translate3d(-15px, 0, -300px);
        -webkit-transform: translate3d(-15px, 0, -300px);
        -o-transform: translate3d(-15px, 0, -300px);
        -ms-transform: translate3d(-15px, 0, -300px);
        transform: translate3d(-15px, 0, -300px);

        -webkit-transform-style: preserve-3d;
           -moz-transform-style: preserve-3d;
            -ms-transform-style: preserve-3d;
             -o-transform-style: preserve-3d;
                transform-style: preserve-3d;
    }

    .main-nav ul .active ul {
        left: 8px;
        border-radius: 0 10px 10px 10px;

        -moz-transform: translate3d(-27px, 0, -300px);
        -webkit-transform: translate3d(-27px, 0, -300px);
        -o-transform: translate3d(-27px, 0, -300px);
        -ms-transform: translate3d(-27px, 0, -300px);
        transform: translate3d(-27px, 0, -300px);
    }

    .main-nav ul li:hover &gt; ul {
        display: block;
        visibility: visible;

        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;

        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    /* Tap as hover on touch devices DO NOT work with visibility, use display property instead */
    .touch .main-nav ul li ul {
        display: none;
    }

    .touch .main-nav ul li:hover &gt; ul {
        display: block;
    }

    .main-nav ul li ul li {
        display: block;
    }

    .main-nav ul li ul li a {
        display: block;
        margin: 0;
        padding: 10px 20px 10px 12px;
        color: #aaa;
    }

    .main-nav ul li ul li a:hover {
        color: #219b89;
    }

    /* sub-subnav */
    .main-nav ul li ul li ul {
        left: auto;
        top: 0;
        right: -178px;
        padding: 0;
    }

    /* Animation */
    .csstransitions .animated {
        visibility: hidden;
    }

    .csstransitions .animated.visible {
        visibility: visible;
    }

    .no-js .animated {
        visibility: visible;
    }

    .csstransitions span.animated {
        display: inline-block;
    }
}

/* Smaller than desktop 1200 (devices and browsers) */
@media only screen and (max-width: 1200px) {
    .circle-stats {
        width: 170px;
    }

    .circle-stats .stat {
        font-size: 56px;
    }

    .circle-stats p {
        font-size: 18px;
    }

    .overlay-title, .overlay-subtitle {
        font-size: 28px;
    }

    .article-container .article-post {
        width: 45%;
        margin: 10px;
    }
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 992px) {
    .head-top .container {
        text-align: center;
    }

    .nav-trigger {
        display: inline-block;
    }

    .overlay-title, .overlay-subtitle {
        font-size: 24px;
    }

    /* Main Navigation */
    .main-nav {
        opacity: 0;
        visibility: hidden;
        text-align: left;
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        max-height: 90%;
        background: white;
        padding: 0 25px 15px 25px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);

        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;

        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .shrink .main-nav {
        top: 60px;
    }

    .side-active .main-nav {
        left: -275px;
    }

    .trigger-active {
        visibility: visible;
        opacity: 1;

        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .main-nav ul li a {
        display: block;
        color: #777;
        text-decoration: none;
        padding: 15px 0;
        text-transform: uppercase;
        border-bottom: 1px dotted #bbb;
        font-weight: 300;
        font-size: 12px;
        pointer-events: auto;
    }

    .main-nav ul li a:hover {
        border-bottom: 1px dotted #bbb;
    }

    .main-nav ul li &gt; ul {
        padding-left: 30px;
    }

    .main-nav &gt; ul:hover &gt; .active &gt; a,
    .main-nav ul li:hover &gt; a {
        color: #219b89;
        background: none;
    }

    .main-nav ul .has-subnav &gt; a:after {
        top: 40%;
        color: #bbb;
    }

    .main-nav ul .active &gt; a,
    .main-nav ul .active &gt; a:after {
        font-weight: bold;
        color: #219b89;
    }

    .main-nav ul .active a:after {
        font-weight: normal;
    }

    .main-nav ul li:hover &gt; a:after {
        text-decoration: none;
        color: #219b89;

        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    /* subnav */
    .main-nav ul li &gt; ul {
        display: none;
    }

    .main-nav ul li:hover &gt; ul {
        display: block;
    }

    /* Footer */
    .page-footer .to-top {
        left: 45%;
    }

    /* Flexslider */
    .flex-direction-nav {
        display: none;
    }
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    address .address-item {
        padding-left: 22%;
    }

    .portfolio-item .item-description {
        padding: 25% 20px;
    }

    .employee .employee-social a {
        padding: 0;
        display: block;
        border: none;
        margin-bottom: 10px;
    }

    .col-sm-3 .portfolio-item .inner-content {
        top: 20%;
    }

    .nav-trigger {
        top: 30%;
    }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 768px) {
    .paragraph-title {
        font-size: 22px;
    }

    .paragraph-lead {
        font-size: 16px;
        line-height: 26px;
    }

    .page-top {
        padding-bottom: 32px;
    }

    .section-split {
        padding: 20px 0;
        margin: 35px 0;
    }

    .hero {
        font-size: 18px;
        line-height: normal;
        padding: 0 5%;
    }

    .huge {
        font-size: 210px;
    }

    blockquote.pull-left,
    blockquote.pull-right {
        width: 60%;
    }

    .section-title {
        font-size: 20px;
    }

    .overlay-title,
    .overlay-subtitle {
        font-size: 20px;
    }

    .service-box:before {
        font-size: 48px;
    }

    address .address-item {
        padding-left: 35px;
    }

    .testimonial {
        text-align: center;
    }

    .section-split.stick {
        margin-bottom: -35px;
    }

    .icon-box {
        margin-bottom: 25px;
    }

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

    .children {
        margin-left: 10px;
    }

    .circle-stats {
        width: 140px;
        margin: 40px 0;
    }

    .circle-stats .stat {
        font-size: 36px;
    }

    .circle-stats p {
        font-size: 14px;
    }

    .employee .employee-image {
        width: 80px;
    }

    .grid .portfolio-item {
        max-width: 50%;
    }

    /* Header Top Bar */
    .head-top {
        padding: 25px 0;
    }

    .page-head {
        height: 300px;
    }

    .page-head .page-title {
        font-size: 36px;
        line-height: 38px;
    }

    .page-head .page-subtitle {
        font-size: 18px;
    }

    /* Superslides */
    .superslides .slides-pagination {
        bottom: 15px;
    }

    .superslides .slide-content .container {
        padding: 0 8%;
    }

    .page-title {
        font-size: 26px;
        line-height: normal;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0;
    }

    .button-inverted {
        font-size: 12px;
        padding: 6px 15px;
    }

    .article-container .article-post {
        width: 43%;
    }
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .circle-stats {
        width: 155px;
    }

    /* Footer */
    .page-footer .to-top {
        left: 43%;
    }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
    .pagination .paging-link {
        display: none;
    }

    .portfolio-nav span {
        display: none;
    }

    /* Footer */
    .page-footer .to-top {
        left: 35%;
    }

    .article-container .article-post {
        width: 100%;
        margin: 0 0 30px 0;
    }
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
</pre></body></html>