/* Table of Contents

	#1 - Import

	#2 - Main Body Containers

	#3 - Common Css

	#5 - Header

	#7 - Body
	   - homepage

	#8 - Footer

 */
/* --------------------------------------
/*  #1 - Variables
/* -------------------------------------- */
@import url(../vendors/slick/slick.css);
@import url(../vendors/slick/slick-theme.css);
.material-icons {
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga'; }

/*** Media Queries ***/
/* --------------------------------------
/*  Mixins
/* -------------------------------------- */
/* --------------------------------------
/*  Gradients
/* -------------------------------------- */
/* ---------------------
/* Mixins
/* --------------------- */
.remove-default-appearance {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

/* --------------------------------------
/*  SVGs
/* -------------------------------------*/
/* --------------------------------------
/*  Less Variables
/* -------------------------------------- */
/* ---------------------
/* Colours
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Padding / Margin
/* --------------------- */
/* ---------------------
/* Typography
/* --------------------- */
/* ---------------------
/* Css3 Rounded Corners
/* --------------------- */
.box-shadow {
  -webkit-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  -moz-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2); }

/* Table of Contents

	#1 - Import

	#2 - Bootstrap Reset

    #3 - Navigation CSS

	#4 - Bootstrap Dropdown Menu

    #5 - Menu Select

    #6 - Sidebar

    #7 - Bootstrap Ovverrides

    #8 - Footer Navigation

 */
/* --------------------------------------
/*  #1 - Import
/* -------------------------------------- */
/* --------------------------------------
/*  Less Variables
/* -------------------------------------- */
/* ---------------------
/* Colours
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Padding / Margin
/* --------------------- */
/* ---------------------
/* Typography
/* --------------------- */
/* ---------------------
/* Css3 Rounded Corners
/* --------------------- */
.box-shadow {
  -webkit-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  -moz-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2); }

/* --------------------------------------
/*  #3 - Navigation CSS
/* -------------------------------------- */
.navigation-section {
  float: right;
  margin-top: -27px; }
  .navigation-section .navbar {
    background: transparent;
    margin-bottom: 0;
    min-height: 1px;
    border: none; }
  .navigation-section .navbar .nav > li.active a {
    background: #eaeef1; }
  .navigation-section .navbar .nav > li > a {
    font-size: 14px;
    color: #184B6E;
    font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
    padding: 0px 13px;
    border-left: 1px solid #184B6E;
    text-transform: uppercase; }
    .navigation-section .navbar .nav > li > a:hover {
      background: #eaeef1; }
  .navigation-section .navbar .nav > li:first-child > a {
    border-left: 0px; }
  .navigation-section .navbar .nav > li:last-child > a {
    padding-right: 13px;
    margin-right: 0px; }

/* --------------------------------------
/*  #5 - Menu Select
/* -------------------------------------- */
.menu-select-container {
  padding: 10px;
  background: #dddddf;
  margin: 10px 0 0; }
  .menu-select-container .menu-select {
    width: 100%;
    margin-bottom: 0px;
    padding: 5px; }

/* --------------------------------------
/*  #9 - Mobile Nav
/* -------------------------------------- */
.mobile-side-menu {
  padding: 35px;
  font-family: "Open Sans", Arial, Helvetica, San-serif;
  position: fixed;
  height: 100%;
  right: -30%;
  top: 0px;
  z-index: 10000;
  background: #4D4D4F;
  background: rgba(0, 0, 0, 0.9);
  width: 30%;
  overflow-y: auto;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .mobile-side-menu .close-mobile-side-menu {
    display: block;
    margin: -35px -35px 15px;
    background: fade(#184B6E, 70%);
    padding: 16px;
    text-transform: uppercase;
    color: #e6e6e6;
    border-bottom: 1px solid #000;
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    text-transform: none;
    font-weight: normal;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
    .mobile-side-menu .close-mobile-side-menu i {
      border: 1px solid #fff;
      border-color: rgba(255, 255, 255, 0.4);
      padding: 5px;
      min-width: 20px;
      min-height: 20px;
      margin-right: 8px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      border-radius: 20px;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
    .mobile-side-menu .close-mobile-side-menu:hover, .mobile-side-menu .close-mobile-side-menu:focus {
      color: #184B6E;
      text-decoration: none; }
      .mobile-side-menu .close-mobile-side-menu:hover i, .mobile-side-menu .close-mobile-side-menu:focus i {
        color: #fff;
        background: #184B6E;
        border-color: #0f2e44;
        margin-right: 15px; }
  .mobile-side-menu.active {
    right: 0px; }
  .mobile-side-menu ul.menu {
    margin: 15px -35px 0;
    padding: 0;
    list-style-type: none; }
    .mobile-side-menu ul.menu li {
      border-bottom: 1px solid #4D4D4F;
      padding: 0; }
      .mobile-side-menu ul.menu li a {
        color: #EAEAEB;
        padding: 15px 35px;
        display: block;
        font-size: 12px;
        text-decoration: none;
        text-transform: none;
        font-weight: normal;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s; }
        .mobile-side-menu ul.menu li a:hover, .mobile-side-menu ul.menu li a:focus {
          text-decoration: none;
          color: #216898;
          background: #000; }
      .mobile-side-menu ul.menu li.current-menu-item:before, .mobile-side-menu ul.menu li:hover:before {
        border-color: #184B6E; }
  .mobile-side-menu ul.sub-menu {
    padding: 0px;
    margin: 0px;
    list-style-type: none; }
    .mobile-side-menu ul.sub-menu li {
      padding: 0px 0px 0px 10px;
      border: 0px;
      margin: 0px; }
      .mobile-side-menu ul.sub-menu li:before {
        display: none; }
      .mobile-side-menu ul.sub-menu li a {
        font-size: 11px;
        margin: 0px;
        padding: 0px; }

/* --------------------------------------
/*  #9 - Footer Navigation
/* -------------------------------------- */
.footer-navigation ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px; }
  .footer-navigation ul li {
    display: inline-block;
    float: left; }
    .footer-navigation ul li ul {
      display: none; }
    .footer-navigation ul li:first-child a {
      padding-left: 0px; }
    .footer-navigation ul li a {
      color: #184b6d;
      display: block;
      padding: 0 5px; }
      .footer-navigation ul li a:hover {
        text-decoration: none;
        color: #0a202e; }

/* Table of Contents

    CALL TO ACTIONS

    - Import
    - Headings
    - Copy

 */
/* --------------------------------------
/*  #1 - Import
/* -------------------------------------- */
/* --------------------------------------
/*  Less Variables
/* -------------------------------------- */
/* ---------------------
/* Colours
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Padding / Margin
/* --------------------- */
/* ---------------------
/* Typography
/* --------------------- */
/* ---------------------
/* Css3 Rounded Corners
/* --------------------- */
.box-shadow {
  -webkit-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  -moz-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2); }

/* --------------------------------------
/*  Headings
/* -------------------------------------- */
/* --------------------------------------
/*  #4 - Headings
/* -------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif; }

h1 {
  margin-top: 0px;
  text-align: center;
  position: relative;
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 51px;
  color: #184B6E;
  line-height: 64px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px; }
  h1 span {
    display: inline-block;
    padding: 0 46px;
    background: #fff;
    z-index: 5;
    position: relative; }
  h1:after {
    content: '';
    position: absolute;
    top: 45%;
    left: 0px;
    width: 100%;
    background: #184B6E;
    display: block;
    z-index: 4;
    height: 1px; }
  h1 + h4 {
    margin-top: 0px;
    margin-bottom: 45px; }

h2 {
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 51px;
  color: #184B6E;
  line-height: 64px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px; }

h3 {
  margin-top: 0px;
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 29px;
  color: #184B6E;
  line-height: 38px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px; }
  h3 + h5 {
    margin-bottom: 0px; }

h4 {
  margin: 40px 0 20px;
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 18px;
  color: #184B6E;
  line-height: 25px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px; }
  h4 a {
    text-decoration: none; }

h5 {
  margin: 0 0 20px;
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 16px;
  color: #184B6E;
  line-height: 25px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px; }

h6 {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, San-serif;
  font-size: 12px;
  color: #184B6E;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0px; }

/* --------------------------------------
/*  Copy
/* -------------------------------------- */
ul, ol {
  line-height: 20px;
  padding-left: 20px; }
  ul li, ol li {
    padding-bottom: 6px; }

p {
  line-height: 20px;
  font-family: "Open Sans", Arial, Helvetica, San-serif;
  font-size: 14px; }

/* --------------------------------------
/*  Import
/* -------------------------------------- */
/* --------------------------------------
/*  Colours
/* -------------------------------------*/
/* --------------------------------------
/*  Font Weights
/* -------------------------------------*/
.font-weight__normal {
  font-weight: 400; }

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

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

/* --------------------------------------
/*  Font Sizes
/* -------------------------------------*/
/* --------------------------------------
/*  Font Families
/* -------------------------------------*/
/* --------------------------------------
/*  Spacing
/* -------------------------------------*/
/* --------------------------------------
/*  Defaults
/* -------------------------------------*/
/* --------------------------------------
/*  Transitions
/* -------------------------------------*/
/* --------------------------------------
/*  Responsive Font sizes
/* -------------------------------------*/
/* --------------------------------------
/*  Variables
/* -------------------------------------- */
/* --------------------------------------
/*  Typography
/* -------------------------------------- */
.home-cta .nf-form-cont h3 {
  margin-bottom: 0px; }

.home-cta .nf-form-cont .nf-form-fields-required {
  display: none; }

.home-cta .nf-form-cont .nf-error-msg, .home-cta .nf-form-cont .ninja-forms-req-symbol {
  color: #184b6d; }

.home-cta .nf-form-cont .nf-error-msg {
  text-align: left; }

.home-cta .nf-form-cont .nf-field-label label {
  font-weight: normal;
  font-size: 12px; }

.home-cta .nf-form-cont .submit-container {
  margin: 0; }

.home-cta .nf-form-cont .nf-field-element {
  width: 100%; }

.home-cta .nf-form-cont .label-hidden .nf-field-label {
  height: 0;
  margin: 0 !important;
  width: 100%;
  visibility: hidden; }

.home-cta .nf-form-cont input[type=email], .home-cta .nf-form-cont input[type=text] {
  background: 0 0;
  border: 1px solid #184b6d;
  padding: 10px 8px;
  color: #184b6d;
  display: block; }

.home-cta .nf-form-cont ::-webkit-input-placeholder {
  color: #184b6d; }

.home-cta .nf-form-cont :-moz-placeholder {
  color: #184b6d; }

.home-cta .nf-form-cont ::-moz-placeholder {
  color: #184b6d; }

.home-cta .nf-form-cont :-ms-input-placeholder {
  color: #184b6d; }

.home-cta .nf-form-cont input[type=button] {
  text-align: center;
  margin: 0 auto;
  display: block;
  height: auto;
  background-color: #184b6d;
  color: #fff;
  padding: 0.81em 2.525em;
  width: 100%;
  border: none; }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden; }

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

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    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) ")"; }
  .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; }
  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; } }

[role="button"] {
  cursor: pointer; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
  background-clip: padding-box; }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

/* --------------------------------------
/*  Custom BS
/* -------------------------------------*/
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=25d49cea796819a13e3e2b6bb7887d7c)
 * Config saved to config.json and https://gist.github.com/25d49cea796819a13e3e2b6bb7887d7c
 */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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; }

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

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

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input {
  line-height: normal; }

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

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

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    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) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table td,
  .table th {
    background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #E0E0E0 !important; } }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #616161;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline; }

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

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

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

[role="button"] {
  cursor: pointer; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #21759b;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #616161;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #616161;
  background-color: #f5f5f5;
  border: 1px solid #BDBDBD;
  border-radius: 4px; }

pre code {
  padding: 0;
  font-size: inherit;
  color: #616161;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

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

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

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

.row {
  margin-left: -15px;
  margin-right: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.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 {
  float: left; }

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

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

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

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

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

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

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

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .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 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1200px) {
  .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 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #757575;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #dddddd; }

.table .table {
  background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #616161;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.btn:hover,
.btn:focus,
.btn.focus {
  color: #616161;
  text-decoration: none; }

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: #616161;
  background-color: #fff;
  border-color: #BDBDBD; }

.btn-default:focus,
.btn-default.focus {
  color: #616161;
  background-color: #E0E0E0;
  border-color: #8c8c8c; }

.btn-default:hover {
  color: #616161;
  background-color: #E0E0E0;
  border-color: #adadad; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #616161;
  background-color: #E0E0E0;
  border-color: #adadad; }

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #616161;
  background-color: #d4d4d4;
  border-color: #8c8c8c; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none; }

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #BDBDBD; }

.btn-default .badge {
  color: #fff;
  background-color: #616161; }

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent; }

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent; }

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #757575;
  text-decoration: none; }

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }

.nav > li.disabled > a {
  color: #757575; }

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #757575;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: rgba(0, 0, 0, 0.1); }

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #dddddd; }

.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #616161;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.nav-pills > li {
  float: left; }

.nav-pills > li > a {
  border-radius: 4px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li {
  float: none; }

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px; } }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none; }

.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .form-control-static {
    display: inline-block; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.navbar-default .navbar-brand {
  color: #757575; }

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #616161;
  background-color: transparent; }

.navbar-default .navbar-text {
  color: #757575; }

.navbar-default .navbar-nav > li > a {
  color: #757575; }

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

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #616161;
  background-color: #e7e7e7; }

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

.navbar-default .navbar-toggle {
  border-color: #dddddd; }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888; }

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }

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

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #757575; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #616161;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #616161;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #BDBDBD;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #757575; }

.navbar-default .navbar-link:hover {
  color: #616161; }

.navbar-default .btn-link {
  color: #757575; }

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #616161; }

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #BDBDBD; }

.navbar-inverse {
  background-color: #222222;
  border-color: #080808; }

.navbar-inverse .navbar-brand {
  color: #BDBDBD; }

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-text {
  color: #BDBDBD; }

.navbar-inverse .navbar-nav > li > a {
  color: #BDBDBD; }

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808; }

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #3B4044;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: #616161; }

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #616161; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #BDBDBD; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #3B4044;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #BDBDBD; }

.navbar-inverse .navbar-link:hover {
  color: #fff; }

.navbar-inverse .btn-link {
  color: #BDBDBD; }

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff; }

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #3B4044; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.modal-header:after,
.modal-footer:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/* --------------------------------------
/*  Hero
/* -------------------------------------*/
body.page-template-template-landing-page .hero-section .container h1.heading {
  line-height: 1;
  font-size: 2.753em;
  font-family: "Libre Baskerville", "Helvetica", Arial, Helvetica, Sans-serif;
  text-transform: uppercase;
  font-weight: 700; }
  @media (min-width: 400px) and (max-width: 1400px) {
    body.page-template-template-landing-page .hero-section .container h1.heading {
      font-size: calc( 2.753em + (43.092 - 38.542) * ( (100vw - 400px) / ( 1400 - 400) )); } }
  @media (min-width: 1400px) {
    body.page-template-template-landing-page .hero-section .container h1.heading {
      font-size: 3.078em; } }

body.page-template-template-landing-page .hero-section .container .blurb p {
  font-family: "Libre Baskerville", "Helvetica", Arial, Helvetica, Sans-serif;
  font-size: 24px;
  color: #616161;
  line-height: 1.2;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #fff; }
  body.page-template-template-landing-page .hero-section .container .blurb p a, body.page-template-template-landing-page .hero-section .container .blurb pa {
    color: #294C67; }
    body.page-template-template-landing-page .hero-section .container .blurb p a:hover, body.page-template-template-landing-page .hero-section .container .blurb p a:focus, body.page-template-template-landing-page .hero-section .container .blurb pa:hover, body.page-template-template-landing-page .hero-section .container .blurb pa:focus {
      text-decoration: underline;
      color: #1a3143; }

body.home .hero-section {
  height: 70vh; }
  body.home .hero-section .container {
    padding-bottom: 23%; }
  body.home .hero-section:after {
    background-color: rgba(13, 130, 223, 0.86); }
  body.home .hero-section .inner h1 {
    font-weight: 700; }
  body.home .hero-section .inner .blurb p {
    font-size: calc(1.333 * 14px);
    margin: 12px 0; }
  body.home .hero-section .inner .btn {
    -webkit-box-shadow: 6px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 6px 5px 10px rgba(0, 0, 0, 0.15);
    padding-left: 30px; }

.header-section.menu-transparent + .hero-section {
  height: 75vh; }

.hero-section {
  background-size: cover;
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .hero-section[data-pos="center-top"] {
    background-position: center top; }
  .hero-section[data-pos="center-center"] {
    background-position: center center; }
  .hero-section[data-pos="center-bottom"] {
    background-position: center bottom; }
  .hero-section[data-pos="left-top"] {
    background-position: left top; }
  .hero-section[data-pos="left-center"] {
    background-position: left center; }
  .hero-section[data-pos="left-bottom"] {
    background-position: left bottom; }
  .hero-section[data-pos="right-top"] {
    background-position: right top; }
  .hero-section[data-pos="right-center"] {
    background-position: right center; }
  .hero-section[data-pos="right-bottom"] {
    background-position: right bottom; }
  .hero-section:after {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(13, 130, 223, 0.82);
    content: "";
    width: 100%;
    height: 100%; }
  .hero-section .container {
    position: relative;
    padding-bottom: 28%; }
    @media (max-width: 991px) {
      .hero-section .container {
        padding-bottom: 50%;
        width: 100%; }
        .hero-section .container .inner {
          padding: 0 20px; } }
    .hero-section .container.hero-contained {
      background-size: cover;
      width: 100%;
      padding-bottom: 620px;
      max-width: 1170px; }
      @media (max-width: 1170px) {
        .hero-section .container.hero-contained {
          padding-bottom: 52.99145%; } }
  .hero-section.contained-image {
    background-color: #212121; }
  .hero-section .inner {
    width: 80%;
    position: absolute;
    left: 10%;
    text-align: center;
    z-index: 10;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .hero-section .inner .btn {
      margin-top: 10px; }
      .hero-section .inner .btn i {
        vertical-align: inherit; }
    .hero-section .inner h1, .hero-section .inner h2, .hero-section .inner h3,
    .hero-section .inner h4, .hero-section .inner h5, .hero-section .inner h6 {
      color: white;
      margin: 0; }
    .hero-section .inner p {
      color: white;
      font-size: 22px; }
    .hero-section .inner h1 {
      padding: 0;
      margin: 0;
      font-weight: bold;
      font-size: 22px; }
      @media (min-width: 400px) and (max-width: 1400px) {
        .hero-section .inner h1 {
          font-size: calc( 22px + (50 - 22) * ( (100vw - 400px) / ( 1400 - 400) )); } }
      @media (min-width: 1400px) {
        .hero-section .inner h1 {
          font-size: 50px; } }
      .hero-section .inner h1 span {
        color: #294C67; }

/* --------------------------------------
/*  hero-section-mobile-title
/* -------------------------------------*/
.hero-section-mobile-title {
  display: none;
  padding: 24px 0;
  background-color: #EEEEEE; }
  .hero-section-mobile-title h1:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #294C67;
    margin: 10px auto 0 auto; }
  .hero-section-mobile-title h1, .hero-section-mobile-title h2, .hero-section-mobile-title h3,
  .hero-section-mobile-title h4, .hero-section-mobile-title h5, .hero-section-mobile-title h6 {
    margin: 0;
    text-align: center;
    font-size: 20px; }
    @media (min-width: 400px) and (max-width: 1400px) {
      .hero-section-mobile-title h1, .hero-section-mobile-title h2, .hero-section-mobile-title h3,
      .hero-section-mobile-title h4, .hero-section-mobile-title h5, .hero-section-mobile-title h6 {
        font-size: calc( 20px + (50 - 20) * ( (100vw - 400px) / ( 1400 - 400) )); } }
    @media (min-width: 1400px) {
      .hero-section-mobile-title h1, .hero-section-mobile-title h2, .hero-section-mobile-title h3,
      .hero-section-mobile-title h4, .hero-section-mobile-title h5, .hero-section-mobile-title h6 {
        font-size: 50px; } }

/* --------------------------------------
/*  Hero Section
/* -------------------------------------*/
.minimal-hero-section {
  background: #333333;
  padding: 32px 0; }
  .minimal-hero-section h1 {
    margin: 0;
    padding: 0;
    color: white; }

/* --------------------------------------
/*  Landing Page Specific
/* -------------------------------------*/
.hero-section.landing-page:after {
  display: none;
  background-color: rgba(0, 0, 0, 0.5); }
  @media (max-width: 991px) {
    .hero-section.landing-page:after {
      display: block; } }

.hero-section.landing-page .inner {
  text-align: left;
  width: 100%;
  left: 0; }
  .hero-section.landing-page .inner p {
    font-family: "Libre Baskerville";
    line-height: 1.15;
    font-size: 45px;
    margin: 10px 0;
    font-weight: 700; }
    @media (max-width: 991px) {
      .hero-section.landing-page .inner p {
        font-size: calc(2.753 * 14px); } }
    @media (max-width: 767px) {
      .hero-section.landing-page .inner p {
        font-size: calc(1.625 * 14px); } }
  .hero-section.landing-page .inner h1 {
    background-color: transparent;
    font-family: "Libre Baskerville", "Helvetica", Arial, Helvetica, Sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.2;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: white;
    text-align: left;
    font-family: "Open Sans", sans-serif, "Helvetica", Arial, Helvetica, Sans-serif;
    text-transform: uppercase; }
    .hero-section.landing-page .inner h1 a, .hero-section.landing-page .inner h1a {
      color: #000; }
      .hero-section.landing-page .inner h1 a:hover, .hero-section.landing-page .inner h1 a:focus, .hero-section.landing-page .inner h1a:hover, .hero-section.landing-page .inner h1a:focus {
        text-decoration: underline;
        color: black; }
    .hero-section.landing-page .inner h1:after {
      display: none; }
    .hero-section.landing-page .inner h1 span {
      background-color: inherit;
      color: inherit;
      padding: 0; }

/* --------------------------------------
/*  Hero CTA (Project Specific)
/* -------------------------------------*/
.hero-cta {
  background-color: #8BA5B5;
  padding: 4vh 0; }
  .hero-cta .pull-up {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0; }
    @media (max-width: 1199px) {
      .hero-cta .pull-up {
        bottom: -50px; } }
    @media (max-width: 991px) {
      .hero-cta .pull-up {
        position: relative; } }
    .hero-cta .pull-up .cta-form {
      background-color: #294C67;
      text-align: center;
      position: relative;
      z-index: 12;
      padding: 10px; }
      .hero-cta .pull-up .cta-form p {
        margin: 0; }
      .hero-cta .pull-up .cta-form h4 {
        margin: 20px 0 0 0;
        font-size: 31px;
        line-height: 1.1; }
      .hero-cta .pull-up .cta-form .content {
        padding: 40px 15px 0px 15px; }
      .hero-cta .pull-up .cta-form .the-form {
        padding: 40px 40px 75px 40px; }
        .hero-cta .pull-up .cta-form .the-form .nf-error-msg {
          color: #ffffff;
          background: rgba(255, 255, 255, 0.1);
          padding: 5px;
          border: 1px solid red;
          font-size: 11px;
          font-weight: 700; }
        .hero-cta .pull-up .cta-form .the-form .nf-form-fields-required {
          display: none; }
        .hero-cta .pull-up .cta-form .the-form .nf-field-container {
          margin: 0 0 24px 0; }
        .hero-cta .pull-up .cta-form .the-form .nf-error-required-error {
          display: none; }
        .hero-cta .pull-up .cta-form .the-form .field-wrap.nf-error input {
          border-color: red; }
        .hero-cta .pull-up .cta-form .the-form input[type='email'], .hero-cta .pull-up .cta-form .the-form input[type='text'] {
          background-color: rgba(255, 255, 255, 0.05);
          color: white;
          text-align: center;
          padding: 20px;
          border: 1px solid rgba(255, 255, 255, 0.5); }
          .hero-cta .pull-up .cta-form .the-form input[type='email']::-webkit-input-placeholder, .hero-cta .pull-up .cta-form .the-form input[type='text']::-webkit-input-placeholder {
            color: currentColor;
            text-align: center;
            text-transform: uppercase; }
          .hero-cta .pull-up .cta-form .the-form input[type='email']:-moz-placeholder, .hero-cta .pull-up .cta-form .the-form input[type='text']:-moz-placeholder {
            color: currentColor;
            text-align: center;
            text-transform: uppercase; }
          .hero-cta .pull-up .cta-form .the-form input[type='email']::-moz-placeholder, .hero-cta .pull-up .cta-form .the-form input[type='text']::-moz-placeholder {
            color: currentColor;
            text-align: center;
            text-transform: uppercase; }
          .hero-cta .pull-up .cta-form .the-form input[type='email']:-ms-input-placeholder, .hero-cta .pull-up .cta-form .the-form input[type='text']:-ms-input-placeholder {
            color: currentColor;
            text-align: center;
            text-transform: uppercase; }
        .hero-cta .pull-up .cta-form .the-form input[type='button'] {
          width: 100%;
          background-color: #96acbc;
          border: 2px solid #fff;
          font-size: 16px;
          text-transform: uppercase;
          padding: 21px;
          -webkit-transition: background-color 0.2s linear;
          -o-transition: background-color 0.2s linear;
          transition: background-color 0.2s linear; }
          .hero-cta .pull-up .cta-form .the-form input[type='button']:hover, .hero-cta .pull-up .cta-form .the-form input[type='button']:focus, .hero-cta .pull-up .cta-form .the-form input[type='button']:active {
            background-color: #7793a8; }
      .hero-cta .pull-up .cta-form h1, .hero-cta .pull-up .cta-form h2, .hero-cta .pull-up .cta-form h3,
      .hero-cta .pull-up .cta-form h4, .hero-cta .pull-up .cta-form h5, .hero-cta .pull-up .cta-form h6,
      .hero-cta .pull-up .cta-form p, .hero-cta .pull-up .cta-form a, .hero-cta .pull-up .cta-form span,
      .hero-cta .pull-up .cta-form ul, .hero-cta .pull-up .cta-form ol, .hero-cta .pull-up .cta-form li,
      .hero-cta .pull-up .cta-form textarea,
      .hero-cta .pull-up .cta-form input, .hero-cta .pull-up .cta-form button, .hero-cta .pull-up .cta-form label {
        color: white; }
  .hero-cta h2 {
    font-size: 22px;
    line-height: 1.2; }

/* --------------------------------------
/*  Theme
/* -------------------------------------*/
.recent-projects {
  padding: 0;
  margin: 0; }
  .recent-projects .container-fluid {
    width: 100%; }
  .recent-projects .section-title {
    position: relative;
    text-align: center;
    padding: 8vh 0; }
    .recent-projects .section-title h2 {
      margin: 0;
      padding: 0 0 16px; }
  .recent-projects a:hover, .recent-projects a:focus, .recent-projects a a, .recent-projects a a:hover, .recent-projects a a:focus {
    text-decoration: none; }
  .recent-projects .item-container {
    text-align: center;
    padding: 8vh 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    color: #fff;
    min-height: 400px;
    text-decoration: none;
    width: 100%; }
    .recent-projects .item-container.last .title-container:after {
      background-color: transparent; }
    .recent-projects .item-container .title-container {
      margin-bottom: 20px;
      position: relative; }
      .recent-projects .item-container .title-container:after {
        content: '';
        display: inline-block;
        height: 4px;
        width: 40px;
        background-color: transparent;
        position: absolute;
        left: calc(50% - 20px);
        top: calc(100% + 7px); }
    .recent-projects .item-container h3 {
      margin: 0;
      padding: 0;
      color: inherit; }
    .recent-projects .item-container p {
      color: inherit; }
  .recent-projects .flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0; }
    @media (max-width: 991px) {
      .recent-projects .flex-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; } }
  .recent-projects .button-container {
    margin-top: 4px; }
  .recent-projects .is-icon {
    background: #0f2e44;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s; }
    .recent-projects .is-icon .inner-container .content-container {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0; }
    .recent-projects .is-icon .inner-container .icon-container {
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0; }
      .recent-projects .is-icon .inner-container .icon-container i {
        color: rgba(255, 255, 255, 0.5);
        font-size: 4em; }
        @media (min-width: 400px) and (max-width: 1400px) {
          .recent-projects .is-icon .inner-container .icon-container i {
            font-size: calc( 4em + (56 - 56) * ( (100vw - 400px) / ( 1400 - 400) )); } }
        @media (min-width: 1400px) {
          .recent-projects .is-icon .inner-container .icon-container i {
            font-size: 4em; } }
    .recent-projects .is-icon.has-button:hover, .recent-projects .is-icon.has-button:focus, .recent-projects .is-icon.has-button:active {
      background: #1a3143; }
  .recent-projects .is-image {
    position: relative;
    background-position: center center;
    background-size: cover;
    -webkit-transition: background-size 0.5s, opacity 0.5s;
    -o-transition: background-size 0.5s, opacity 0.5s;
    transition: background-size 0.5s, opacity 0.5s;
    overflow: hidden; }
    .recent-projects .is-image .image-container {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      -webkit-transition: -webkit-transform 0.5s;
      transition: -webkit-transform 0.5s;
      -o-transition: transform 0.5s;
      transition: transform 0.5s;
      transition: transform 0.5s, -webkit-transform 0.5s;
      background-position: center center;
      background-size: cover; }
    .recent-projects .is-image:before {
      content: '';
      background-color: rgba(0, 0, 0, 0.55);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 1;
      z-index: 5;
      -webkit-transition: background-color 0.2s;
      -o-transition: background-color 0.2s;
      transition: background-color 0.2s; }
    .recent-projects .is-image .inner-container {
      z-index: 10; }
    .recent-projects .is-image .content-container p {
      font-size: calc(0.9 * 14px); }
    .recent-projects .is-image .content-container i {
      opacity: 0.75; }
    .recent-projects .is-image .content-container,
    .recent-projects .is-image .title-container,
    .recent-projects .is-image .button-container {
      color: #fff;
      z-index: 5;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s; }
      .recent-projects .is-image .content-container h3,
      .recent-projects .is-image .title-container h3,
      .recent-projects .is-image .button-container h3 {
        color: inherit; }
    .recent-projects .is-image:hover, .recent-projects .is-image:focus, .recent-projects .is-image:active {
      background-size: 130%; }
      .recent-projects .is-image:hover .title-container:after, .recent-projects .is-image:focus .title-container:after, .recent-projects .is-image:active .title-container:after {
        background-color: white; }
      .recent-projects .is-image:hover .image-container, .recent-projects .is-image:focus .image-container, .recent-projects .is-image:active .image-container {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }

.projects-archive .single-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  border: 1px solid #eee;
  background-color: white;
  margin-bottom: 20px; }
  .projects-archive .single-project .img-wrap {
    height: auto;
    display: block;
    position: relative;
    width: 150px; }
    @media (max-width: 543px) {
      .projects-archive .single-project .img-wrap {
        display: none; } }
  .projects-archive .single-project .image {
    width: inherit;
    height: inherit;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%; }
  .projects-archive .single-project .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 25px; }
    .projects-archive .single-project .content .title h2 {
      margin: 0;
      line-height: 39px;
      font-size: 31px; }
      .projects-archive .single-project .content .title h2 a {
        text-transform: unset; }
    .projects-archive .single-project .content .bought {
      margin-top: 10px; }

@media (max-width: 767px) {
  .single-project.news.body-section {
    margin-top: 0; } }

.single-project .slick-dots {
  position: static; }

.single-project .project-gallery button.slick-next {
  right: 0; }

.single-project .project-gallery button.slick-prev {
  left: 0; }

.single-project .project-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: #f9f9f9;
  padding: 30px 0; }
  @media (max-width: 767px) {
    .single-project .project-info {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .single-project .project-info .info {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
        margin-bottom: 20px; } }
  .single-project .project-info .info {
    text-align: center; }
    .single-project .project-info .info .label {
      font-weight: bold;
      font-family: "Libre Baskerville";
      font-size: 19px; }

.briefs-nav {
  margin-bottom: 23px;
  margin-top: 25px;
  border-top: 1px solid #f3f3f3;
  padding-top: 25px; }
  .briefs-nav a {
    display: block;
    width: 100%;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    color: white !important;
    text-align: center;
    position: relative;
    text-decoration: none; }
    .briefs-nav a span {
      position: relative;
      z-index: 9; }
      .briefs-nav a span small {
        display: block;
        z-index: 9;
        position: relative;
        opacity: .8; }
    .briefs-nav a:before {
      content: '';
      display: block;
      z-index: 5;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(25, 75, 109, 0.49); }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../vendors/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

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

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-feed:before,
.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before,
.fa-users:before {
  content: "\f0c0"; }

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\f155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\f156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158"; }

.fa-won:before,
.fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251"; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255"; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256"; }

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

.fa-hand-spock-o:before {
  content: "\f259"; }

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before,
.fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

.fa-map:before {
  content: "\f279"; }

.fa-commenting:before {
  content: "\f27a"; }

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-handshake-o:before {
  content: "\f2b5"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-o:before {
  content: "\f2b7"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-book-o:before {
  content: "\f2ba"; }

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb"; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-circle-o:before {
  content: "\f2be"; }

.fa-user-o:before {
  content: "\f2c0"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2"; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3"; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-eercast:before {
  content: "\f2da"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-snowflake-o:before {
  content: "\f2dc"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-meetup:before {
  content: "\f2e0"; }

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

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

/* --------------------------------------
/*  Core
/* -------------------------------------*/
/* --------------------------------------
/*  Theme
/* -------------------------------------*/
.nucleo-acf-section.fancy_image_repeater_section .container .row.pull-up {
  margin-top: -50px; }
  @media (min-width: 544px) {
    .nucleo-acf-section.fancy_image_repeater_section .container .row.pull-up {
      margin-top: -15%; } }

.nucleo-acf-section.fancy_image_repeater_section.background-solid-primary {
  background-color: #90cc38; }
  .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary .content-container p, .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary .button-container p {
    color: white; }
  .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary .content-container a, .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary .button-container a {
    color: white; }
  .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary h2 {
    color: white; }
    .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary h2:after {
      background-color: white; }
  .nucleo-acf-section.fancy_image_repeater_section.background-solid-primary a h4 {
    color: white; }

.nucleo-acf-section.fancy_image_repeater_section .section-title {
  text-align: center; }
  .nucleo-acf-section.fancy_image_repeater_section .section-title h2 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1; }
  .nucleo-acf-section.fancy_image_repeater_section .section-title .blurb {
    margin: 0 0 60px 0;
    font-size: calc(2.753 * 14px);
    line-height: 1.2;
    font-family: "Libre Baskerville";
    font-weight: 700; }

.nucleo-acf-section.fancy_image_repeater_section h4 {
  font-size: 28px;
  color: #294C67;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0; }

.nucleo-acf-section.fancy_image_repeater_section .content-container p {
  margin-bottom: 10px;
  font-size: calc(1.333 * 14px);
  font-weight: 300; }

.nucleo-acf-section.fancy_image_repeater_section .button-container a {
  font-weight: bold;
  text-transform: capitalize; }

.nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container {
  position: relative;
  text-align: center; }
  @media (max-width: 767px) {
    .nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container {
      padding-left: 100px;
      padding-right: 100px; } }
  @media (max-width: 543px) {
    .nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container {
      padding-left: 0;
      padding-right: 0; } }
  .nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container .icon-container {
    width: 75px;
    height: 75px;
    border-radius: 75px;
    background: #EEEEEE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto; }
    .nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container .icon-container i {
      font-size: calc(1.625 * 14px);
      color: #294C67; }
  .nucleo-acf-section.fancy_image_repeater_section .is-icon .inner-container .title h3 {
    padding: 4px 0 16px;
    margin: 0; }

.nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center; }
  @media (max-width: 991px) {
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container {
      text-align: center; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container img {
        margin: 0 auto; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .content-container {
        padding-left: 100px;
        padding-right: 100px; } }
  @media (max-width: 543px) {
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .content-container {
      padding-left: 0;
      padding-right: 0; } }
  .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container a {
      position: relative;
      display: block; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container a:hover:before, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container a:focus:before, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .image-container a:active:before {
        opacity: 1; }
  .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title a:hover, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title a:focus, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title a a, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title a a:hover, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title a a:focus {
      text-decoration: none; }
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .title h3 {
      margin: 0;
      padding: 0; }
  .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .content-container {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .content-container p {
      margin-bottom: 10px; }
  .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 15px 0; }
    .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a {
      font-weight: bold; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:hover, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:focus, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a a, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a a:hover, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a a:focus {
        text-decoration: none; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:after {
        padding-left: 4px;
        -webkit-transition: padding-left 0.3s;
        -o-transition: padding-left 0.3s;
        transition: padding-left 0.3s;
        content: "\f054";
        font-family: FontAwesome; }
      .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:hover:after, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:focus:after, .nucleo-acf-section.fancy_image_repeater_section .is-image .inner-container .button-container a:active:after {
        padding-left: 16px; }

.nucleo-acf-section.form_call_to_action_section {
  background-color: #294C67;
  color: white;
  padding: 8vh 0; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h1, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h2, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h3,
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h4, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h5, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour h6,
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour p, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour a, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour span,
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour ul, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour ol, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour li,
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour textarea,
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour input, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour button, .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour label {
    color: white; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour label {
    color: white; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour input[type='button'], .nucleo-acf-section.form_call_to_action_section.background-colour__primary-colour input[type='submit'] {
    background-color: #212121;
    color: white; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h1, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h2, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h3,
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h4, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h5, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour h6,
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour p, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour a, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour span,
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour ul, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour ol, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour li,
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour textarea,
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour input, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour button, .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour label {
    color: white; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour label {
    color: white; }
  .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour input[type='button'], .nucleo-acf-section.form_call_to_action_section.background-colour__secondary-colour input[type='submit'] {
    background-color: #294C67;
    color: white; }
  .nucleo-acf-section.form_call_to_action_section .nf-form-content .submit-container {
    margin: 0; }
  .nucleo-acf-section.form_call_to_action_section .nf-form-content .field-wrap.nf-error input {
    border-color: red; }
  .nucleo-acf-section.form_call_to_action_section .nf-form-content .nf-error-required-error {
    display: none; }
  .nucleo-acf-section.form_call_to_action_section .nf-form-content textarea {
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.5); }
  .nucleo-acf-section.form_call_to_action_section .nf-form-content input {
    height: 50px;
    color: white;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5); }
    .nucleo-acf-section.form_call_to_action_section .nf-form-content input::-webkit-input-placeholder {
      color: currentColor;
      text-align: center;
      text-transform: uppercase; }
    .nucleo-acf-section.form_call_to_action_section .nf-form-content input:-moz-placeholder {
      color: currentColor;
      text-align: center;
      text-transform: uppercase; }
    .nucleo-acf-section.form_call_to_action_section .nf-form-content input::-moz-placeholder {
      color: currentColor;
      text-align: center;
      text-transform: uppercase; }
    .nucleo-acf-section.form_call_to_action_section .nf-form-content input:-ms-input-placeholder {
      color: currentColor;
      text-align: center;
      text-transform: uppercase; }
    .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='button'], .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='submit'] {
      width: 100%;
      background-color: #96acbc;
      border: 2px solid #fff;
      font-size: 16px;
      text-transform: uppercase;
      padding: 13px;
      -webkit-transition: background-color 0.2s linear;
      -o-transition: background-color 0.2s linear;
      transition: background-color 0.2s linear; }
      .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='button']:hover, .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='button']:focus, .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='button']:active, .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='submit']:hover, .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='submit']:focus, .nucleo-acf-section.form_call_to_action_section .nf-form-content input[type='submit']:active {
        background-color: #7793a8; }
  .nucleo-acf-section.form_call_to_action_section h1, .nucleo-acf-section.form_call_to_action_section h2, .nucleo-acf-section.form_call_to_action_section h3,
  .nucleo-acf-section.form_call_to_action_section h4, .nucleo-acf-section.form_call_to_action_section h5, .nucleo-acf-section.form_call_to_action_section h6 {
    margin: 0; }
  .nucleo-acf-section.form_call_to_action_section h2 {
    margin-bottom: 9px; }
  .nucleo-acf-section.form_call_to_action_section .cta-content {
    text-align: center; }
    .nucleo-acf-section.form_call_to_action_section .cta-content * {
      color: white; }
  .nucleo-acf-section.form_call_to_action_section .nf-before-form-content {
    padding: 0 5px; }
  .nucleo-acf-section.form_call_to_action_section #ninja_forms_required_items, .nucleo-acf-section.form_call_to_action_section .nf-field-container {
    margin-bottom: 15px; }
  .nucleo-acf-section.form_call_to_action_section .nf-response-msg {
    text-align: center; }
  .nucleo-acf-section.form_call_to_action_section .nf-form-fields-required {
    margin-bottom: 5px; }
    .nucleo-acf-section.form_call_to_action_section .nf-form-fields-required span.ninja-forms-req-symbol {
      color: red; }
  .nucleo-acf-section.form_call_to_action_section .nf-error-wrap .nf-error-msg {
    color: red; }

.nucleo-acf-section.packages-section {
  overflow: hidden; }

.our-packages-section.body-section {
  overflow: hidden; }

.our-packages-section .packages-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .our-packages-section .packages-header .intro {
    -webkit-box-flex: 70%;
    -ms-flex: 70%;
    flex: 70%;
    padding: 0 15px; }
    .our-packages-section .packages-header .intro p {
      font-size: calc(1.625 * 14px);
      line-height: 1.2;
      font-family: "Libre Baskerville"; }
  .our-packages-section .packages-header .package-head {
    text-align: center;
    padding: 25px 15px;
    position: relative;
    -webkit-box-flex: 33%;
    -ms-flex: 33%;
    flex: 33%; }
    .our-packages-section .packages-header .package-head h3 {
      font-size: calc(1.625 * 14px); }
    .our-packages-section .packages-header .package-head:nth-child(2) {
      background-color: #E0E5EA; }
      .our-packages-section .packages-header .package-head:nth-child(2):before {
        content: '';
        position: absolute;
        top: -100%;
        background: #E0E5EA;
        width: 100%;
        left: 0;
        height: 100%; }
    .our-packages-section .packages-header .package-head:nth-child(3) {
      background-color: #D3DBE2; }
      .our-packages-section .packages-header .package-head:nth-child(3):before {
        content: '';
        position: absolute;
        top: -100%;
        background: #D3DBE2;
        width: 100%;
        left: 0;
        height: 100%; }
    .our-packages-section .packages-header .package-head:nth-child(4) {
      background-color: #C7D2DA; }
      .our-packages-section .packages-header .package-head:nth-child(4):before {
        content: '';
        position: absolute;
        top: -100%;
        background: #C7D2DA;
        width: 100%;
        left: 0;
        height: 100%; }
    .our-packages-section .packages-header .package-head:nth-child(5) {
      background-color: #BACAD3; }
      .our-packages-section .packages-header .package-head:nth-child(5):before {
        content: '';
        position: absolute;
        top: -100%;
        background: #BACAD3;
        width: 100%;
        left: 0;
        height: 100%; }

.our-packages-section .inclusion-table .inc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #294C67; }
  .our-packages-section .inclusion-table .inc-row.actions .inc-cell {
    position: relative;
    padding: 37px 14.5px 15px 14.5px; }
    .our-packages-section .inclusion-table .inc-row.actions .inc-cell a.btn {
      width: auto;
      color: white;
      text-decoration: none;
      background-color: #96acbc;
      border: 2px solid currentColor;
      font-size: 16px;
      text-transform: uppercase;
      padding: 14px 25px;
      -webkit-transition: background-color .2s linear;
      -o-transition: background-color .2s linear;
      transition: background-color .2s linear; }
      .our-packages-section .inclusion-table .inc-row.actions .inc-cell a.btn:hover, .our-packages-section .inclusion-table .inc-row.actions .inc-cell a.btn:focus, .our-packages-section .inclusion-table .inc-row.actions .inc-cell a.btn:active {
        background-color: #7793a8; }
    .our-packages-section .inclusion-table .inc-row.actions .inc-cell:nth-child(2):after {
      background: #E0E5EA;
      content: '';
      position: absolute;
      width: 100%;
      height: 200%;
      top: 100%; }
    .our-packages-section .inclusion-table .inc-row.actions .inc-cell:nth-child(3):after {
      background: #D3DBE2;
      content: '';
      position: absolute;
      width: 100%;
      height: 200%;
      top: 100%; }
    .our-packages-section .inclusion-table .inc-row.actions .inc-cell:nth-child(4):after {
      background: #C7D2DA;
      content: '';
      position: absolute;
      width: 100%;
      height: 200%;
      top: 100%; }
    .our-packages-section .inclusion-table .inc-row.actions .inc-cell:nth-child(5):after {
      background: #BACAD3;
      content: '';
      position: absolute;
      width: 100%;
      height: 200%;
      top: 100%; }
  .our-packages-section .inclusion-table .inc-row .line-item {
    -webkit-box-flex: 70%;
    -ms-flex: 70%;
    flex: 70%;
    padding: 0 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left; }
    .our-packages-section .inclusion-table .inc-row .line-item p {
      font-size: calc(1.333 * 14px); }
  .our-packages-section .inclusion-table .inc-row .inc-cell {
    -webkit-box-flex: 33%;
    -ms-flex: 33%;
    flex: 33%;
    padding: 0 15px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .our-packages-section .inclusion-table .inc-row .inc-cell i {
      font-size: calc(3.078 * 14px); }
      .our-packages-section .inclusion-table .inc-row .inc-cell i.not-included {
        opacity: .29; }
    .our-packages-section .inclusion-table .inc-row .inc-cell:nth-child(2) {
      background-color: #E0E5EA; }
    .our-packages-section .inclusion-table .inc-row .inc-cell:nth-child(3) {
      background-color: #D3DBE2; }
    .our-packages-section .inclusion-table .inc-row .inc-cell:nth-child(4) {
      background-color: #C7D2DA; }
    .our-packages-section .inclusion-table .inc-row .inc-cell:nth-child(5) {
      background-color: #BACAD3; }

@media (max-width: 1199px) {
  .our-packages-section .inclusion-table {
    display: none; }
  .our-packages-section .packages-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .our-packages-section .packages-header .package-head:before {
      display: none; } }

@media (max-width: 1399px) {
  .our-packages-section .packages-header .intro p {
    font-size: 14px; }
  .our-packages-section .packages-header .intro h2 {
    font-size: 35px; }
  .our-packages-section .packages-header .package-head h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1; }
  .our-packages-section .packages-header .package-head p {
    font-size: calc(0.9 * 14px); }
  .our-packages-section .inclusion-table .inc-row.actions .inc-cell a.btn {
    padding: 9px 13px; }
  .our-packages-section .inclusion-table .inc-row .line-item p {
    font-size: 14px; } }

.nucleo-acf-section.testimonials_slider .sub-heading {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  position: relative;
  font-size: calc(1.333 * 14px); }

.nucleo-acf-section.testimonials_slider .main-heading {
  font-weight: 700;
  font-size: calc(2.753 * 14px); }

/* Table of Contents

	#1 - Import

	#2 - Bootstrap Reset

    #3 - Navigation CSS

	#4 - Bootstrap Dropdown Menu

    #5 - Menu Select

 */
/* --------------------------------------
/*  #1 - Import
/* -------------------------------------- */
/* --------------------------------------
/*  Less Variables
/* -------------------------------------- */
/* ---------------------
/* Colours
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Padding / Margin
/* --------------------- */
/* ---------------------
/* Typography
/* --------------------- */
/* ---------------------
/* Css3 Rounded Corners
/* --------------------- */
.box-shadow {
  -webkit-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  -moz-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2); }

/* --------------------------------------
/*  #2 - Bootstrap Reset
/* -------------------------------------- */
#wrap .search {
  display: inline-block;
  float: right;
  margin-right: 4px;
  width: 238px; }
  #wrap .search .form-control {
    height: 2.1em;
    max-width: 200px; }
  #wrap .search .btn {
    font-size: 12px;
    padding: 8px 13px; }

/* Table of Contents

	#1 - Import

	#2 - Custom Variables

    #3 - Social CSS

 */
/* --------------------------------------
/*  #1 - Import
/* -------------------------------------- */
/* --------------------------------------
/*  Less Variables
/* -------------------------------------- */
/* ---------------------
/* Colours
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Borders
/* --------------------- */
/* ---------------------
/* Padding / Margin
/* --------------------- */
/* ---------------------
/* Typography
/* --------------------- */
/* ---------------------
/* Css3 Rounded Corners
/* --------------------- */
.box-shadow {
  -webkit-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  -moz-box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2);
  box-shadow: 1px 8px 10px 0px rgba(54, 50, 50, 0.2); }

/* --------------------------------------
/*  #2 - Custom Variables
/* -------------------------------------- */
/* -- DEFAULT SOCIAL COLOURS -- */
/* --------------------------------------
/*  #3 - Social CSS
/* -------------------------------------- */
.social {
  float: right;
  margin-right: 15px; }
  .social a:first-child {
    margin-right: 10px; }
  .social a i {
    font-size: 29px; }
  .social img {
    width: 28px;
    height: 28px; }
  .social ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px; }
    .social ul li {
      padding: 0px;
      margin: 0px;
      display: block;
      float: left;
      margin: 0px 2px; }
      .social ul li a {
        display: block;
        width: 29px;
        height: 29px;
        background: #184b6d;
        text-align: center;
        float: left;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
        border-radius: 30px; }
        .social ul li a i {
          font-size: 20px;
          padding: 5px 0;
          color: #fff; }
        .social ul li a:hover {
          background: #0a202e; }
      .social ul li.facebook a:hover {
        background: #3B5998; }
      .social ul li.twitter a:hover {
        background: #00A0D1; }
      .social ul li.youtube a:hover {
        background: #C4302B; }
      .social ul li.linkedin a:hover {
        background: #4875B4; }
      .social ul li.google-plus a:hover {
        background: #C63D2D; }
      .social ul li.pinterest a:hover {
        background: #910101; }
      .social ul li.android a:hover {
        background: #A4C739; }

/* Large desktop */
/* Portrait tablet to landscape and desktop */
/* Landscape phone to portrait tablet */
/* Landscape phones and down */
body.pink_month .staff-information h2 span {
  background-color: #E63F78; }

body.pink_month .dark-blue-section {
  background-color: #a9214f; }

body.pink_month .light-blue-section {
  background-color: #E63F78; }
  body.pink_month .light-blue-section * {
    color: white; }

body.pink_month .mobile-header-small {
  background-color: #E63F78; }

body.pink_month .contact-us__holder .nf-form-cont {
  background-color: #E63F78; }

body.pink_month .social a i {
  color: #E63F78; }

body.pink_month .blue-section {
  background-color: #E63F78; }
  body.pink_month .blue-section h1 span {
    background-color: #E63F78; }

body.pink_month .header-section {
  border-color: #E63F78; }

body.pink_month .navigation-section .navbar .nav > li > a {
  color: #E63F78; }

body.pink_month .header-details {
  color: #E63F78; }
  body.pink_month .header-details .contact-details a {
    color: #E63F78; }

/* --------------------------------------
/*  #2 - Main Body Containers
/* -------------------------------------- */
html, body {
  padding: 0px;
  margin: 0px;
  line-height: 20px;
  font-family: "Open Sans", Arial, Helvetica, San-serif;
  font-size: 14px;
  color: #184b6d; }

body.page-template-landing-page-template .container {
  max-width: unset !important;
  position: relative; }

.container {
  max-width: 1000px; }

.container-fluid {
  width: 1400px; }
  @media (max-width: 1399px) {
    .container-fluid {
      width: 100%; } }

.light-blue-section, .white-section, .dark-blue-section, .blue-section {
  padding: 60px 0; }
  .light-blue-section a, .white-section a, .dark-blue-section a, .blue-section a {
    text-transform: uppercase;
    font-weight: bold; }

.light-blue-section {
  background: #EAEFF2; }

.dark-blue-section {
  background: #184B6E;
  text-align: center; }
  .dark-blue-section * {
    color: #fff; }
  .dark-blue-section a:hover {
    color: #fff; }

.blue-section {
  background: #8CA5B6; }
  .blue-section h1 span {
    background: #8CA5B6; }
  .blue-section h1:after {
    background: #fff; }
  .blue-section img + h4 {
    margin-top: 20px; }
  .blue-section * {
    color: #fff; }
  .blue-section a:hover {
    color: #fff; }
  .blue-section.subpage h4 {
    margin-bottom: 0px; }

/* --------------------------------------
/*  #3 - Common Css
/* -------------------------------------- */
.slider-section {
  margin-top: 199px; }

.blue-section.subpage {
  margin-top: 199px; }

hr {
  border-top-color: #184B6E;
  margin-top: 30px;
  margin-bottom: 30px; }

a {
  color: #184b6d;
  font-weight: bold;
  text-decoration: underline;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  a[href*="mailto:"] {
    text-transform: none;
    font-weight: normal; }
  a:hover {
    color: #216897; }

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

address {
  padding-left: 15px;
  font-style: italic; }

img {
  display: block;
  max-width: 100%;
  height: auto; }

#sidebar ul li a {
  text-decoration: none; }

/* --------------------------------------
/*  #5 - Header
/* -------------------------------------- */
body.page-template-landing-page-template .header-section {
  position: relative; }

.header-section {
  background: #fff;
  line-height: normal;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  border-bottom: 9px solid #184b6d;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  .header-section.fadeOut {
    opacity: 0; }
  .header-section.fadeIn {
    opacity: 1; }
  .header-section.active {
    position: fixed;
    height: 110px;
    overflow: hidden;
    top: 0;
    opacity: 1; }
    .header-section.active .navigation-section {
      margin-top: -92px; }
    .header-section.active .logo {
      padding: 8px 0; }
    .header-section.active .header-details {
      margin-top: 0px; }
  .header-section a {
    text-transform: none;
    text-decoration: none;
    font-weight: normal; }
  .header-section .logo {
    float: left;
    padding: 25px 0 0; }
    .header-section .logo img {
      width: calc(252px / 2);
      height: auto; }
  .header-section .header-details {
    margin-top: 50px;
    float: right; }
    .header-section .header-details .contact-details {
      font-size: 14px;
      float: right;
      padding: 4px 15px;
      display: block;
      font-weight: normal; }
      .header-section .header-details .contact-details span.separator {
        display: inline-block;
        padding: 0 5px; }
  .header-section .blog-button {
    float: right; }
    .header-section .blog-button img {
      width: 28px;
      height: 28px;
      float: left; }
    .header-section .blog-button a {
      color: #184b6d;
      font-size: 12px;
      text-transform: uppercase;
      font-family: "Libre Baskerville", Arial, Helvetica, San-serif; }
      .header-section .blog-button a:hover, .header-section .blog-button a:focus {
        text-decoration: none; }
    .header-section .blog-button span {
      vertical-align: bottom;
      display: inline-block;
      margin-bottom: -5px;
      padding: 0 15px;
      font-weight: bold; }
  .header-section .header-section-main {
    padding: 22px 0 18px; }

/* --------------------------------------
/*  Mobile Header
/* -------------------------------------*/
.mobile-header {
  background: url(../images/AA_mobileheader.png) top left;
  padding: 35px 45px 30px;
  color: #fff; }
  .mobile-header .mobile-header-logo {
    max-width: 125px;
    margin: 0 auto;
    display: block; }
  .mobile-header .contact-details {
    padding-top: 30px;
    color: #fff;
    font-size: 14px;
    text-align: center; }
    .mobile-header .contact-details .separator {
      display: none; }
    .mobile-header .contact-details a {
      color: #fff;
      text-decoration: none; }
      .mobile-header .contact-details a:before {
        content: '';
        display: table; }
  .mobile-header ul {
    list-style-type: none;
    margin: 30px 0 0;
    padding: 0;
    text-align: left; }
    .mobile-header ul li a {
      color: #fff;
      text-transform: uppercase;
      border-bottom: 1px solid #fff;
      display: block;
      padding: 1px 0 8px;
      text-decoration: none;
      font-weight: normal; }

.top-ctas {
  float: left;
  width: 100%;
  display: none; }
  @media (max-width: 767px) {
    .top-ctas {
      display: block; } }
  .top-ctas a {
    width: 50%;
    display: inline-block;
    float: left;
    text-align: center;
    padding: 15px;
    max-width: 50%;
    text-decoration: none;
    color: #184B6E;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 14px; }
    .top-ctas a:first-child {
      background-color: #EAEFF2;
      border-right: 1px solid; }
    .top-ctas a:last-child {
      background-color: #EAEFF2; }
    .top-ctas a i {
      font-size: 20px;
      vertical-align: bottom; }

.mobile-header-small {
  position: static;
  height: 62px;
  background: #184B6E;
  z-index: 9999;
  padding: 15px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  @media (max-width: 767px) {
    .mobile-header-small {
      position: -webkit-sticky !important;
      position: sticky !important;
      top: 0 !important;
      clear: both; } }
  .mobile-header-small a {
    color: #fff;
    text-decoration: none;
    text-transform: none;
    cursor: pointer; }
  .mobile-header-small .contact-details {
    float: left;
    margin-top: -4px;
    display: block; }
  .mobile-header-small .mobile-header-scrolling-logo {
    max-width: 38px;
    float: left;
    display: block; }
    .mobile-header-small .mobile-header-scrolling-logo img {
      max-width: 38px;
      padding-right: 8px; }
  .mobile-header-small.scrolling {
    top: 0px; }
  .mobile-header-small .menu-button {
    float: right;
    display: block; }
    .mobile-header-small .menu-button i {
      font-size: 30px;
      color: fade(#fff, 80%);
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
      .mobile-header-small .menu-button i:hover, .mobile-header-small .menu-button i:focus {
        color: #fff; }

/* --------------------------------------
/*  #7 - Body
/* -------------------------------------- */
.image-section {
  background: #EAEAEB; }

.gray-section {
  background: #EAEAEB;
  padding: 60px 0; }

.body-section {
  padding: 60px 0; }

/* --------------------------------------
/*  - homepage
/* -------------------------------------- */
.home .white-section .aligncenter {
  margin: 35px 0 0; }
  @media (max-width: 767px) {
    .home .white-section .aligncenter {
      margin: 0 auto; } }

.home .light-blue-section {
  text-align: center;
  padding: 80px 0; }
  .home .light-blue-section a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-top: 25px;
    display: block; }

.home .blue-section p {
  font-size: 17px;
  line-height: 21px; }

/* --------------------------------------
/*  - About Us
/* -------------------------------------- */
.staff-information h2 {
  font-family: "Libre Baskerville", Arial, Helvetica, San-serif;
  font-size: 32px;
  color: #184b6d;
  line-height: 42px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0px;
  text-align: center;
  position: relative; }
  .staff-information h2 span {
    display: inline-block;
    padding: 0 46px;
    background: #EAEFF2;
    z-index: 5;
    position: relative; }
  .staff-information h2:after {
    content: '';
    position: absolute;
    top: 45%;
    left: 0px;
    width: 100%;
    background: #184B6E;
    display: block;
    z-index: 4;
    height: 1px; }
  .staff-information h2 + h5 {
    margin-top: -10px;
    margin-bottom: 50px; }

.staff-information .staff-image {
  margin-top: -27px; }

/* --------------------------------------
/*  Custom
/* -------------------------------------*/
.testimonials .slick-prev {
  padding-left: 49% !important; }

.testimonials .slick-prev {
  left: 0; }

.testimonials .slick-prev, .testimonials .slick-next {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  margin-top: 0;
  outline: medium none;
  padding: 0;
  position: relative;
  width: 20px;
  float: left;
  margin-right: 30px;
  margin-left: -15px;
  margin-top: 10px; }

.testimonials .slick-slider {
  margin-bottom: 0; }

.meet-founder h5 {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: relative; }
  .meet-founder h5.line {
    display: block;
    overflow: hidden; }
    .meet-founder h5.line:after {
      content: '';
      width: 100%;
      height: 5px;
      background: #294C67;
      display: inline-block;
      position: absolute;
      top: calc(50% - 2.5px);
      margin-left: 12px; }

.meet-founder h2 {
  margin-top: 0; }

a[name="one"],
a[name="two"],
a[name="three"],
a[name="buyer"],
a[name="seller"] {
  position: absolute; }

a[name="one"],
a[name="two"],
a[name="three"],
a[name="buyer"],
a[name="seller"] {
  top: -150px; }

/* --------------------------------------
/*  - Contact Us
/* -------------------------------------- */
.contact-us__holder {
  background: url(../images/Contact.jpg) center center;
  background-size: cover;
  padding: 20px 15px;
  position: relative; }
  .contact-us__holder .contact-information {
    position: absolute;
    top: 40px;
    left: 500px; }
    .contact-us__holder .contact-information p, .contact-us__holder .contact-information a {
      font-size: 12px;
      margin: 0;
      padding: 0;
      text-decoration: none;
      color: #fff;
      line-height: normal; }
  .contact-us__holder .nf-form-cont {
    width: 50%;
    background: #6d8da2;
    padding: 20px; }
    .contact-us__holder .nf-form-cont h3 {
      color: white;
      font-size: 18px; }
    .contact-us__holder .nf-form-cont .field-wrap input[type=button] {
      background: #184b6d;
      border: 0px;
      padding: 4px 27px;
      color: #fff;
      font-size: 12px;
      float: right;
      margin-top: -31px;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
      .contact-us__holder .nf-form-cont .field-wrap input[type=button]:hover {
        background: #0f2e43; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap input[type="text"], .contact-us__holder .nf-form-cont .ninja-forms-form-wrap textarea, .contact-us__holder .nf-form-cont .ninja-forms-form-wrap select {
      border-color: #fff;
      border-style: solid; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap label {
      font-weight: normal;
      color: #fff;
      font-size: 12px; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .nf-field-container {
      margin-bottom: 0; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .ninja-forms-req-symbol {
      color: #fff; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .nf-error-msg {
      color: #184b6d; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .nf-form-fields-required {
      display: none; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .field-wrap {
      margin-bottom: 5px; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .label-above .nf-field-label {
      margin: 0; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap select {
      width: 50%; }
    .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .textarea-wrap textarea {
      height: 115px; }

/* --------------------------------------
/*  News
/* -------------------------------------*/
.news.body-section {
  margin-top: 170px; }

.news h1 {
  font-size: 18px; }

.news h3 {
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 3px solid #184B6E;
  margin-bottom: 35px; }

.news a {
  text-transform: none;
  color: #184B6E; }

.news p a {
  text-decoration: underline; }

.news .news-item {
  border: 1px solid #EAEFF2; }
  .news .news-item .news-item-header {
    padding: 15px; }
    .news .news-item .news-item-header .news-item-header-details {
      font-size: 11px;
      color: #A7A9AC; }
      .news .news-item .news-item-header .news-item-header-details span.author:after,
      .news .news-item .news-item-header .news-item-header-details span.date:after,
      .news .news-item .news-item-header .news-item-header-details span.comments:after,
      .news .news-item .news-item-header .news-item-header-details span.category:after {
        margin: 0 5px;
        padding: 0 5px;
        content: 'I'; }
      .news .news-item .news-item-header .news-item-header-details span.author a,
      .news .news-item .news-item-header .news-item-header-details span.date a,
      .news .news-item .news-item-header .news-item-header-details span.comments a,
      .news .news-item .news-item-header .news-item-header-details span.category a {
        color: #808387; }
      .news .news-item .news-item-header .news-item-header-details span.author i,
      .news .news-item .news-item-header .news-item-header-details span.date i,
      .news .news-item .news-item-header .news-item-header-details span.comments i,
      .news .news-item .news-item-header .news-item-header-details span.category i {
        padding-right: 4px;
        font-size: 12px; }
      .news .news-item .news-item-header .news-item-header-details span.date:after {
        content: ''; }
  .news .news-item .news-item-content {
    padding: 15px;
    color: #6D6E71; }
    .news .news-item .news-item-content p {
      font-size: 13px; }
    .news .news-item .news-item-content a {
      color: #808387; }

.news h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 3px; }
  .news h4 a {
    color: #184B6E; }

/*** Sidebar ***/
.news-sidebar a {
  text-decoration: none;
  text-transform: none; }

.news-sidebar .search {
  margin-bottom: 10px;
  display: block;
  float: none;
  margin-right: 0px !important;
  width: auto !important; }
  .news-sidebar .search .form-control {
    height: 2.49em !important;
    max-width: 600px !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  .news-sidebar .search .btn {
    background: #BFBFBF;
    border-color: #BFBFBF;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
    .news-sidebar .search .btn i {
      color: #fff; }
    .news-sidebar .search .btn:hover {
      background: #ababab; }

.news-sidebar .recent-posts {
  border-top: 3px solid #184B6E;
  padding: 15px 0 20px; }
  .news-sidebar .recent-posts .title a {
    font-weight: normal;
    font-family: "Open Sans", Arial, Helvetica, San-serif;
    font-size: 15px;
    color: #4D4D56; }
  .news-sidebar .recent-posts .date,
  .news-sidebar .recent-posts .category a {
    font-size: 11px;
    color: #999999; }
  .news-sidebar .recent-posts .separator {
    display: inline-block;
    padding: 0 5px; }
  .news-sidebar .recent-posts h4 {
    text-transform: uppercase;
    margin: 5px 0 15px;
    font-size: 14px; }
  .news-sidebar .recent-posts .row {
    margin-left: -7px;
    margin-right: -7px;
    margin-bottom: 15px; }
  .news-sidebar .recent-posts .col-xs-1, .news-sidebar .recent-posts .col-sm-1, .news-sidebar .recent-posts .col-md-1, .news-sidebar .recent-posts .col-lg-1, .news-sidebar .recent-posts .col-xs-2, .news-sidebar .recent-posts .col-sm-2, .news-sidebar .recent-posts .col-md-2, .news-sidebar .recent-posts .col-lg-2, .news-sidebar .recent-posts .col-xs-3, .news-sidebar .recent-posts .col-sm-3, .news-sidebar .recent-posts .col-md-3, .news-sidebar .recent-posts .col-lg-3, .news-sidebar .recent-posts .col-xs-4, .news-sidebar .recent-posts .col-sm-4, .news-sidebar .recent-posts .col-md-4, .news-sidebar .recent-posts .col-lg-4, .news-sidebar .recent-posts .col-xs-5, .news-sidebar .recent-posts .col-sm-5, .news-sidebar .recent-posts .col-md-5, .news-sidebar .recent-posts .col-lg-5, .news-sidebar .recent-posts .col-xs-6, .news-sidebar .recent-posts .col-sm-6, .news-sidebar .recent-posts .col-md-6, .news-sidebar .recent-posts .col-lg-6, .news-sidebar .recent-posts .col-xs-7, .news-sidebar .recent-posts .col-sm-7, .news-sidebar .recent-posts .col-md-7, .news-sidebar .recent-posts .col-lg-7, .news-sidebar .recent-posts .col-xs-8, .news-sidebar .recent-posts .col-sm-8, .news-sidebar .recent-posts .col-md-8, .news-sidebar .recent-posts .col-lg-8, .news-sidebar .recent-posts .col-xs-9, .news-sidebar .recent-posts .col-sm-9, .news-sidebar .recent-posts .col-md-9, .news-sidebar .recent-posts .col-lg-9, .news-sidebar .recent-posts .col-xs-10, .news-sidebar .recent-posts .col-sm-10, .news-sidebar .recent-posts .col-md-10, .news-sidebar .recent-posts .col-lg-10, .news-sidebar .recent-posts .col-xs-11, .news-sidebar .recent-posts .col-sm-11, .news-sidebar .recent-posts .col-md-11, .news-sidebar .recent-posts .col-lg-11, .news-sidebar .recent-posts .col-xs-12, .news-sidebar .recent-posts .col-sm-12, .news-sidebar .recent-posts .col-md-12, .news-sidebar .recent-posts .col-lg-12 {
    padding-left: 7px;
    padding-right: 7px; }

.news-sidebar .archives {
  border-top: 3px solid #000;
  padding: 15px 0 20px; }
  .news-sidebar .archives h4 {
    text-transform: uppercase;
    margin: 5px 0 15px;
    font-size: 14px; }
  .news-sidebar .archives select {
    padding: 5px;
    width: 100%;
    font-size: 12px; }

.news-sidebar .categories {
  border-top: 3px solid #000;
  padding: 15px 0 20px; }
  .news-sidebar .categories h4 {
    text-transform: uppercase;
    margin: 5px 0 15px;
    font-size: 14px; }
  .news-sidebar .categories ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .news-sidebar .categories ul li a {
      font-weight: normal;
      font-family: "Open Sans", Arial, Helvetica, San-serif;
      font-size: 14px;
      color: #4D4D56;
      display: block;
      margin-bottom: 11px; }

.post-categories {
  list-style-type: none;
  padding: 0 0 0 7px;
  margin: 0;
  display: inline-block; }
  .post-categories a {
    color: #184b6d; }

/*** Four oh four ***/
.fourofour {
  margin-top: 190px; }
  .fourofour h1 {
    line-height: normal; }

/* --------------------------------------
/*  #8 - Footer
/* -------------------------------------- */
.footer-section {
  display: block;
  padding: 0px;
  font-size: 11px;
  line-height: 14px;
  font-weight: 100;
  height: auto !important; }
  .footer-section .footer-white-section {
    padding: 30px 0;
    font-weight: 500;
    line-height: 18px; }
  .footer-section .logo-image {
    display: inline-block;
    padding-right: 15px; }
  .footer-section p, .footer-section a {
    padding: 0px;
    margin: 0px;
    font-size: 11px !important;
    line-height: 14px;
    font-weight: 100;
    text-transform: none; }
  .footer-section .footer-details {
    margin-top: 20px; }

/* --------------------------------------
/*  #9 - Sticky Footer
/* -------------------------------------- */
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
  height: 100%;
  /* The html and body elements cannot have any padding or margin. */ }

/* Wrapper for page content to push down footer */
#wrap {
  min-height: 100%;
  height: auto;
  /* Negative indent footer by its height */
  margin: 0 auto 0;
  /* Pad bottom by footer height */
  padding: 0 0 50px; }
  @media (max-width: 767px) {
    #wrap {
      float: left;
      width: 100%; } }

/* Set the fixed height of the footer here */
#footer {
  height: 50px; }
  @media (max-width: 767px) {
    #footer {
      clear: both; } }

.column {
  display: inline-block; }
  .column.half {
    width: 50%; }
  .column.third {
    width: 33%; }
  .column.quarter {
    width: 25%; }

.panel-group {
  width: 100%; }

.panel-group {
  margin-bottom: 10px; }

/* Large desktop */
@media (min-width: 1200px) {
  .navigation-section {
    margin-top: -35px; }
  .header-section .logo {
    padding: 15px 0; }
  /* --------------------------------------
    /*  - Packages
    /* -------------------------------------- */
  .packages .col-sm-1 {
    width: 7%;
    padding-right: 0px; }
  .packages .col-sm-11 {
    padding: 0px; } }

/* --------------------------------------
/*  - Blog Updates
/* -------------------------------------- */
body.single-post h1.blog-title, .body-section.news h1.blog-title {
  border-bottom: 3px solid #184b6e;
  font-size: 18px;
  margin-bottom: 35px;
  text-transform: uppercase;
  text-align: left;
  line-height: 38px; }
  body.single-post h1.blog-title:after, .body-section.news h1.blog-title:after {
    background-color: transparent;
    display: none; }

body.single-post h2 {
  font-size: 26px;
  line-height: 37px; }

blockquote {
  border-left: 0 none;
  margin: 20px 0;
  padding: 0; }
  blockquote p {
    font-style: italic; }

/* --------------------------------------
/*  - Mailchimp Form
/* -------------------------------------- */
.signup-form {
  background: #EAEAEB;
  padding: 35px; }
  .signup-form input.submit {
    background-color: #184B6E;
    border: 0 none;
    color: #fff;
    display: block;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px;
    text-transform: uppercase;
    width: 120px;
    -webkit-transition: all 0.4s ease 0.1s;
    -o-transition: all 0.4s ease 0.1s;
    transition: all 0.4s ease 0.1s; }
    .signup-form input.submit:hover {
      background-color: #06121a; }
  .signup-form input#mc4wp_email {
    border: 1px solid #dadadb;
    margin: 20px auto;
    padding: 10px; }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us .nf-form-cont {
    width: 100%; }
  .contact-us .contact-information {
    display: none; }
  .contact-us input[type="submit"] {
    float: none; }
  .header-section .header-details {
    margin-top: 45px; }
  .header-section .search {
    margin-top: -41px; }
  .header-section .menu-select-container {
    margin: 0px 0 0; }
  .header-section .logo {
    padding: 15px 0; }
  .mobile-side-menu {
    padding: 35px;
    width: 50%;
    right: -50%;
    text-align: left; }
  .menu-button {
    float: right;
    margin: -38px 15px 0 0; }
  .packages .col-sm-1 {
    width: 8.333333333333332%;
    padding: 0px; }
  .packages .col-sm-11 {
    padding-left: 5px;
    padding-right: 5px; }
  .navigation-section {
    margin-top: -31px; }
    .navigation-section .navbar .nav > li > a {
      font-size: 11px;
      padding: 0 10px; } }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  img {
    display: block;
    max-width: 100%;
    height: auto; }
  .white-section img.alignnone {
    margin: 0 auto 15px; }
  h1 span {
    padding: 0 15px; }
  .contact-us .contact-us__holder .nf-form-cont {
    width: 100%; }
    .contact-us .contact-us__holder .nf-form-cont .ninja-forms-form-wrap select {
      width: 100%; }
    .contact-us .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .field-wrap input[type=button] {
      margin-top: 0px; }
    .contact-us .contact-us__holder .nf-form-cont .ninja-forms-form-wrap .phone {
      width: 100%; }
  .contact-us .contact-information {
    display: none; }
  .header-section {
    text-align: center; }
    .header-section .logo {
      float: none;
      display: block;
      padding: 15px 0; }
      .header-section .logo img {
        margin: 0 auto;
        max-width: 100%;
        height: auto; }
    .header-section .header-details {
      margin-top: 25px;
      float: none; }
      .header-section .header-details .blog-button {
        float: right;
        display: none; }
        .header-section .header-details .blog-button img {
          float: none;
          margin: 0 auto; }
      .header-section .header-details .contact-details {
        float: none; }
        .header-section .header-details .contact-details span.separator {
          content: ' ';
          display: block;
          height: 1px;
          color: #fff; }
  .mobile-side-menu {
    padding: 35px;
    width: 100%;
    right: -100%;
    text-align: left; }
  #footer {
    min-height: 50px; } }

.share-buttons > h3 {
  float: left;
  width: 100%; }

.sharing-buttons {
  float: right;
  margin-top: -70px; }

.sharing-buttons li {
  float: left;
  list-style: outside none none;
  margin-top: 0;
  padding: 0 10px;
  font-size: 16px; }

@media screen and (max-width: 400px) {
  .sharing-buttons {
    clear: both;
    float: none;
    margin: -20px auto 10px;
    width: 210px; }
  .share-buttons > h3 {
    float: none; } }

.signup-form {
  background: #eaeaeb;
  padding: 25px; }

.sidebar-contact {
  background-color: #184B6D;
  color: #fff;
  padding: 25px;
  margin-bottom: 20px; }
  .sidebar-contact .nf-form-fields-required {
    display: none; }
  .sidebar-contact h3 {
    border-bottom: 3px solid #fff;
    color: #fff; }
  .sidebar-contact .nf-field-label label {
    display: block;
    width: 100%;
    font-size: 10px;
    font-weight: normal;
    margin-top: -20px; }
  .sidebar-contact .nf-field-element input, .sidebar-contact textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    margin-bottom: 5px;
    padding: 5px; }
  .sidebar-contact .nf-field-element input[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
    display: block;
    width: 100% !important;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    background-color: #8CA5B6;
    color: #184B6D;
    font-weight: bold;
    -webkit-transition: all 0.4s ease 0.1s;
    -o-transition: all 0.4s ease 0.1s;
    transition: all 0.4s ease 0.1s; }
    .sidebar-contact .nf-field-element input[type="button"]:hover {
      background-color: #fff; }
  .sidebar-contact .nf-after-field .nf-error-msg {
    font-size: 10px;
    padding: 3px 5px;
    background-color: #720000;
    color: #fff; }

.sidebar-contact .ninja-forms-req-symbol, .nf-error-msg {
  color: #fff; }

.sidebar-contact .textarea-wrap textarea {
  height: 90px; }

.sidebar-profile {
  position: relative;
  background-color: #EAEAEB;
  padding: 25px;
  margin: 20px 0; }

.sidebar-profile img {
  max-width: 150px;
  margin: 15px auto;
  opacity: 0.5; }

.sidebar-profile a.linkedin {
  /*     position: absolute; */
  padding-top: 37px;
  padding-left: 37px;
  font-size: 40px;
  color: #fff;
  background-color: #184B6D;
  width: 100%;
  height: 100%;
  top: 40px;
  left: 0;
  height: 150px;
  width: 150px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 50em;
  color: #fff;
  opacity: 1; }

.ninja-forms-field-error p, .ninja-forms-response-msg {
  font-size: 10px;
  padding: 3px 5px;
  background-color: #720000; }

.ninja-forms-response-msg {
  margin-bottom: 30px;
  background: transparent; }

.sidebar-profile a.linkedin:hover {
  opacity: 1;
  background-color: #8ca5b6; }

.sidebar-profile i {
  font-size: 40px;
  height: 80px;
  width: 80px;
  display: block;
  border: 3px solid #fff;
  padding: 21px;
  border-radius: 51em; }

.sidebar-profile a.linkedin:hover i {
  color: #fff;
  border-color: #fff; }
