@charset "UTF-8";
/* CSS Document */
/***********************************
    Normalise, Variables and Mixins
*************************************/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url('includes/plugins/boxsizing/boxsizing.htc');
}
/***********
    Basic Colours
************/
/**********/
/**************
    Primary Colours
*********************/
/********************
    Default Text Colours
********************/
/******************
    Nav Colours
*******************/
/*******************
    Form Styles
********************/
/*********************
    Borders/Shadows/Wrappers
***********************/
/*********************
    Breadcrumbs
***********************/
/*************
    Mixins
**************/
/*****************
    Layouts
******************/
/* Used for indenting text out of box ready for background image */
.rep-style {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}
.inline-style,
form .control-group.inline-control .controls,
form .control-group.inline-control button,
form .control-group .customSelect .customSelectInner,
form .form-submit,
.btn,
.homepage-slider .thumbnail-blocks ul li,
.homepage-slider .thumbnail-blocks ul li span.title,
.homepage-slider .thumbnail-blocks ul li .table .cell .cell-inner,
.homepage-slider .thumbnail-blocks ul li .overlay img,
header .header-text,
header .nav-box,
header .nav-box .trigger,
header .nav-box nav ul li,
header .logo,
footer .footer-logo,
footer .footer-social li {
  display: inline-block;
  *display: inline;
  /* ie7 fix */
  *zoom: 1;
  /* hasLayout ie7 trigger */
}
/* Sets box-sizing:content-box */
.content-box-style,
.wrapper {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  *behavior: none;
}
/* Sets box-sizing:border-box */
.border-box-style {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: none;
}
/***************
    Fixes/Resets
*****************/
/* Removes all default styling from list ready for unique layout */
.clean-list-style,
.homepage-slider .main-slider ul.bxslider,
.homepage-slider .thumbnail-blocks ul,
header .nav-box nav ul,
footer .footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list-style-li,
.homepage-slider .main-slider ul.bxslider li,
.homepage-slider .thumbnail-blocks ul li,
header .nav-box nav ul li,
footer .footer-social li {
  margin: 0;
  padding: 0;
  background: none;
  line-height: 120%;
}
/* Smooths fonts. Use warily as it is resource intensive, and only supported on webkit */
.smooth-style,
html,
body {
  -webkit-font-smoothing: antialiased;
}
/* Fixes the flash on elements that occurs due to bxSlider turning on hardware rendering */
/****************
    CSS3 Misc
*****************/
/******************
    Shadows
********************/
/*******************
    Transforms
*********************/
/*****************
    Transitions
****************/
/********************
    Gradients/Backgrounds
*********************/
/*****************
    Forms/Btns
 *****************/
/****************
    Fonts
*****************/
/***************
    Animations
****************/
/******************
    For
*****************/
/****************
    Fonts
*****************/
/****************
    Fonts
*****************/
html,
body {
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
/****************
    Text Styles
*****************/
.defaultUl {
  padding-left: 30px;
  list-style: disc;
  margin: 15px 0;
}
.defaultUl li {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 140%;
  margin: 0 0 25px 0;
  margin: 0;
}
.defaultUl li strong {
  font-weight: 700;
}
.defaultUl li em {
  font-style: italic;
}
.defaultUl li.intro {
  font-size: 22px;
  line-height: 135%;
  color: #232323;
}
.defaultOl {
  list-style: decimal;
  padding-left: 30px;
  margin: 15px 0;
}
.defaultOl li {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 140%;
  margin: 0 0 25px 0;
  margin: 0;
}
.defaultOl li strong {
  font-weight: 700;
}
.defaultOl li em {
  font-style: italic;
}
.defaultOl li.intro {
  font-size: 22px;
  line-height: 135%;
  color: #232323;
}
/*
 *  Print Styles are declaring them
 */
h1 {
  margin: 40px 0;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  text-align: left;
  display: block;
  color: #d84e72;
}
h2 {
  color: #d84e72;
  margin: 20px 0;
  font-size: 18px;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
h3 {
  color: #232323;
  font-size: 25px;
  margin: 30px 0 20px;
  font-weight: bold;
}
h4 {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
h5 {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
h6 {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
p {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 140%;
  margin: 0 0 25px 0;
}
p strong {
  font-weight: 700;
}
p em {
  font-style: italic;
}
p.intro {
  font-size: 22px;
  line-height: 135%;
  color: #232323;
}
a {
  text-decoration: none;
  color: #232323;
  -webkit-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  -ms-transition: color 0.1s;
  transition: color 0.1s;
}
a:hover {
  color: #3d3d3d;
}
a:active {
  color: #d84e72;
}
ul {
  padding-left: 30px;
  list-style: disc;
  margin: 15px 0;
}
ul li {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 140%;
  margin: 0 0 25px 0;
  margin: 0;
}
ul li strong {
  font-weight: 700;
}
ul li em {
  font-style: italic;
}
ul li.intro {
  font-size: 22px;
  line-height: 135%;
  color: #232323;
}
ol {
  list-style: decimal;
  padding-left: 30px;
  margin: 15px 0;
}
ol li {
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 140%;
  margin: 0 0 25px 0;
  margin: 0;
}
ol li strong {
  font-weight: 700;
}
ol li em {
  font-style: italic;
}
ol li.intro {
  font-size: 22px;
  line-height: 135%;
  color: #232323;
}
table {
  width: 100%;
}
/***********
    Forms
***********/
form {
  /*******************
        Control Groups
    ********************/
  /****************
        Form Submit
    ****************/
}
form .control-group {
  width: 100%;
  margin: 0 0 15px;
  position: relative;
  /********************
            Custom Select
        ********************/
}
form .control-group.error input.text,
form .control-group.error textarea {
  border-color: #ff0000 !important;
}
form .control-group.inline-control .controls {
  vertical-align: top;
}
form .control-group.inline-control button {
  vertical-align: top;
  margin: 0 0 0 6px!important;
  float: none;
}
form .control-group.half {
  width: 46%;
  float: left;
  margin-right: 4%;
}
form .control-group label {
  text-transform: none;
  color: #232323;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin: 0 0 10px;
  display: block;
}
form .control-group input.text,
form .control-group textarea {
  font-size: 14px;
  color: #2d2d2d;
  background: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #cccccc;
  padding: 8px;
  line-height: 120%;
  width: 100%;
}
form .control-group input.text::-webkit-input-placeholder,
form .control-group textarea::-webkit-input-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:-moz-placeholder,
form .control-group textarea:-moz-placeholder {
  color: #d6d4cd;
}
form .control-group input.text::-moz-placeholder,
form .control-group textarea::-moz-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:-ms-input-placeholder,
form .control-group textarea:-ms-input-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:focus,
form .control-group textarea:focus {
  outline: none;
  border-color: #00c0f2 !important;
}
form .control-group input.text:focus::-webkit-input-placeholder,
form .control-group textarea:focus::-webkit-input-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:focus:-moz-placeholder,
form .control-group textarea:focus:-moz-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:focus::-moz-placeholder,
form .control-group textarea:focus::-moz-placeholder {
  color: #d6d4cd;
}
form .control-group input.text:focus:-ms-input-placeholder,
form .control-group textarea:focus:-ms-input-placeholder {
  color: #d6d4cd;
}
form .control-group textarea {
  height: 120px;
  clear: both;
}
form .control-group select {
  width: 100%;
}
form .control-group .customSelect {
  border: 1px solid #cccccc;
  line-height: 120%;
  width: 100%;
  font-size: 14px;
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
form .control-group .customSelect .customSelectInner {
  width: auto!important;
  padding: 8px;
}
form .control-group .customSelect .arrow {
  float: right;
  display: block;
  text-align: center;
  width: 25px;
}
form .control-group .customSelect.customSelectDisabledOption {
  color: #d6d4cd;
}
form .form-submit {
  clear: both;
  outline: none;
  border: none;
  overflow: visible;
  cursor: pointer;
  line-height: 33px;
  text-transform: uppercase;
  padding: 0 17px;
  font-size: 13px;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
  text-align: center;
  background: #d84e72;
  color: #ffffff;
}
form .form-submit:hover {
  color: #ffffff;
  background: #e17893;
}
form .form-submit:active {
  color: #ffffff;
  background: #c72c54;
}
form .form-submit:disabled {
  color: #cccccc;
  background: #f4cbd6;
}
/**********************
    Chosen/Select2
********************/
.chosen-container {
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #2d2d2d;
}
.chosen-container.chosen-container-active .chosen-single {
  border: 1px solid #00c0f2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.chosen-container .chosen-single {
  height: 45px;
  line-height: 45px;
  background: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #cccccc;
}
.chosen-container .chosen-single div b {
  background-position: 0 12px;
}
.chosen-container .chosen-drop {
  border: 1px solid #00c0f2;
}
.chosen-container .chosen-drop ul.chosen-results li {
  background: none;
}
.chosen-container .chosen-drop ul.chosen-results li.highlighted {
  background: #e68da4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e68da4), color-stop(100%, #d84e72));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #e68da4 0%, #d84e72 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e68da4', endColorstr='#d84e72',GradientType=0 );
  /* IE6-9 */
}
.select2-container {
  font-family: 'Proxima Nova W01','Helvetica Neue','Helvetica',Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #2d2d2d;
}
.select2-container.select2-container-active .select2-choice {
  border-color: #00c0f2;
}
.select2-container .select2-choice {
  height: 42px;
  line-height: 42px;
  padding-top: 3px;
  background: #ffffff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #cccccc;
}
.select2-container .select2-choice .select2-arrow {
  background: #ffffff;
  border: none;
}
.select2-container .select2-choice .select2-arrow b {
  background-position: 0 10px;
}
.select2-drop {
  border-color: #00c0f2;
}
.select2-drop .select2-results li {
  margin: 0;
  padding-left: 0;
}
.select2-drop .select2-results li.select2-highlighted {
  background: #e68da4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e68da4), color-stop(100%, #d84e72));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e68da4 0%, #d84e72 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #e68da4 0%, #d84e72 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e68da4', endColorstr='#d84e72',GradientType=0 );
  /* IE6-9 */
}
/**********************
    Common Styles
***********************/
/*****************
    Common Styles
*****************/
/****************
    Wrappers/Layouts
*****************/
.wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
.wrapper.flexi {
  max-width: 100%;
  padding: 0 70px;
}
.block.padded {
  padding-top: 50px;
  padding-bottom: 50px;
}
section.window {
  height: calc(100vh - 100px);
  width: 100%;
  position: relative;
  min-height: 560px;
}
.full-height {
  height: calc(100vh - 100px);
  min-height: 560px;
}
.third-height {
  height: calc((100vh - 100px) / 3);
  min-height: 180px;
}
.centred-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
h1.black-center {
  text-align: center;
  color: #232323;
  font-size: 25px;
  margin: 30px 0 20px;
  font-weight: bold;
}
/****************
    Fonts
*****************/
/**********************
    Btn stylings
***********************/
.btn {
  outline: none;
  border: none;
  overflow: visible;
  cursor: pointer;
  line-height: 33px;
  text-transform: uppercase;
  padding: 0 17px;
  font-size: 13px;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
  text-align: center;
}
.btn-primary {
  background: #d84e72;
  color: #ffffff;
}
.btn-primary:hover {
  color: #ffffff;
  background: #e17893;
}
.btn-primary:active {
  color: #ffffff;
  background: #c72c54;
}
.btn-primary:disabled {
  color: #cccccc;
  background: #f4cbd6;
}
/**********************
    Homepage SLider
***********************/
.homepage-slider .main-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
.homepage-slider .main-slider ul.bxslider li {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d84e72;
  zoom: 1;
  background-color: transparent\9;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e0d84e72, endColorstr=#e0d84e72)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e0d84e72, endColorstr=#e0d84e72);
  background-color: rgba(216, 78, 114, 0.88);
  padding: 25px 45px 20px 55px;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay h2 {
  display: block;
  font-size: 25px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 15px;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay h2 i {
  margin-left: 15px;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay h2 a {
  color: #ffffff;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay h2 a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay h2 a:active {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.homepage-slider .main-slider ul.bxslider li .text-overlay p {
  line-height: 150%;
  color: #ffffff;
  font-size: 15px;
  margin: 0;
}
.homepage-slider .thumbnail-blocks {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
}
.homepage-slider .thumbnail-blocks ul {
  font-size: 0;
}
.homepage-slider .thumbnail-blocks ul li {
  width: 33%;
  width: calc(100% / 3);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.homepage-slider .thumbnail-blocks ul li span.title {
  text-transform: uppercase;
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
}
.homepage-slider .thumbnail-blocks ul li .table {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: table;
}
.homepage-slider .thumbnail-blocks ul li .table .cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
}
.homepage-slider .thumbnail-blocks ul li .title-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  zoom: 1;
  background-color: transparent\9;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 5;
}
.homepage-slider .thumbnail-blocks ul li .overlay {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #d84e72;
  zoom: 1;
  background-color: transparent\9;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e0d84e72, endColorstr=#e0d84e72)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e0d84e72, endColorstr=#e0d84e72);
  background-color: rgba(216, 78, 114, 0.88);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.homepage-slider .thumbnail-blocks ul li .overlay img {
  max-width: 100%;
}
.homepage-slider .thumbnail-blocks ul li .overlay a {
  color: #ffffff;
}
.homepage-slider .thumbnail-blocks ul li:hover .title-overlay,
.homepage-slider .thumbnail-blocks ul li.active .title-overlay {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.homepage-slider .thumbnail-blocks ul li:hover .overlay,
.homepage-slider .thumbnail-blocks ul li.active .overlay {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.homepage-slider .thumbnail-blocks ul li.dual {
  width: 66%;
  width: calc(200% / 3);
  background: #333333;
}
.homepage-slider .thumbnail-blocks ul li.dual h3 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 25px;
  line-height: 120%;
}
.homepage-slider .thumbnail-blocks ul li.dual p {
  color: #999999;
  font-size: 17px;
}
.homepage-slider .thumbnail-blocks ul li.dual p strong {
  font-weight: 700;
}
/**********************
    General Styles
***********************/
/* CSS Document */
/*********************
    Body
**********************/
/***********
    Sticky
************/
html,
body {
  height: 100%;
}
#wrap {
  min-height: 100%;
}
#main {
  overflow: auto;
  padding-bottom: 280px;
}
/* must be same height as the footer */
footer {
  position: relative;
  margin-top: -280px;
  /* negative value of footer height */
  height: 280px;
  clear: both;
}
body {
  overflow-x: hidden;
  padding-top: 100px;
}
/*********************
    Header
**********************/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #232323;
  padding: 18px 0 0;
  height: 100px;
}
header .left {
  float: left;
}
header .right {
  float: right;
  text-align: right;
  padding-top: 10px;
}
header .header-text,
header .nav-box {
  vertical-align: top;
}
header .header-text {
  text-align: right;
  padding-right: 17px;
  padding-top: 11px;
}
header .header-text p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}
header .header-text p br {
  display: none;
}
header .header-text p span {
  color: #d84e72;
}
header .nav-box {
  position: relative;
}
header .nav-box .trigger {
  width: 36px;
  text-align: center;
  font-size: 16px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  behavior: url('includes/plugins/pie/PIE.htc');
  padding-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
header .nav-box .trigger span {
  display: block;
  background: #292929;
  color: #ffffff;
  width: 100%;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  behavior: url('includes/plugins/pie/PIE.htc');
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
header .nav-box .trigger span i {
  line-height: 50px;
}
header .nav-box:hover .trigger,
header .nav-box.active .trigger {
  background: #ffffff;
}
header .nav-box:hover .trigger span,
header .nav-box.active .trigger span {
  color: #232323;
  background: none;
}
header .nav-box:hover nav,
header .nav-box.active nav {
  max-height: 1000px;
  padding: 12px 20px;
}
header .nav-box nav {
  overflow: hidden;
  position: absolute;
  background: #ffffff;
  right: 0;
  top: 60px;
  width: 475px;
  -webkit-border-radius: 2px 0 2px 2px;
  -moz-border-radius: 2px 0 2px 2px;
  border-radius: 2px 0 2px 2px;
  behavior: url('includes/plugins/pie/PIE.htc');
  max-height: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  z-index: 1000;
  padding: 0;
}
header .nav-box nav ul {
  font-size: 0;
}
header .nav-box nav ul li {
  width: 50%;
  vertical-align: top;
}
header .nav-box nav ul li a {
  display: block;
  padding: 6px 0;
  font-size: 17px;
  font-weight: 600;
}
header .logo-container {
  width: 320px;
  margin-left: -45px;
  position: relative;
  text-align: center;
}
header .logo-container:before,
header .logo-container:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -37px;
  border-top: 23px solid #232323;
  z-index: 1;
}
header .logo-container:before {
  left: 0;
  border-left: 160px solid transparent;
}
header .logo-container:after {
  right: 0;
  border-right: 160px solid transparent;
}
header .logo-container .gradient-overlay {
  display: block;
  position: absolute;
  bottom: -37px;
  left: 0;
  z-index: 5;
}
header .logo {
  width: 185px;
  position: relative;
  z-index: 10;
}
header .logo img {
  display: block;
  max-width: 100%;
}
/*********************
    Footer
**********************/
footer {
  background: #e3e3e3;
  padding-top: 66px;
  text-align: center;
}
footer .footer-logo {
  width: 140px;
  margin: 0 0 20px;
}
footer .footer-logo img {
  max-width: 100%;
}
footer p {
  font-size: 13px;
  color: #858585;
  margin: 0 0 25px;
}
footer .footer-social {
  font-size: 0;
  text-align: center;
}
footer .footer-social li {
  font-size: 22px;
  vertical-align: top;
}
footer .footer-social li a {
  color: #B7B7B7;
}
footer .footer-social li a:hover {
  color: #919191;
}
footer .footer-social li a:active {
  color: #d84e72;
}
/*********************
    Main
**********************/
/**********************
    Page Styles
***********************/
/*****************
    Pages
*****************/
/**********************
    Page Styles
***********************/
/* CSS Document */
/*********************
    max-width 979
**********************/
@media screen and (max-width: 1130px) {
  header .header-text p {
    font-size: 14px;
  }
  section.window,
  .full-height {
    height: auto;
    min-height: 1px;
  }
  .homepage-slider .main-slider {
    position: relative;
    width: 100%;
    height: auto;
  }
  .homepage-slider .main-slider ul.bxslider li {
    height: 550px;
  }
  .homepage-slider .thumbnail-blocks {
    position: relative;
    width: 100%;
    height: auto;
  }
  .homepage-slider .thumbnail-blocks ul li {
    height: 183px;
  }
}
/*********************
    max-width 1000
**********************/
@media screen and (max-width: 1000px) {
  .wrapper.flexi {
    padding: 0 30px;
  }
  header .header-text {
    padding-top: 5px;
  }
  header .header-text p br {
    display: block;
  }
  header .logo-container {
    width: auto;
    margin-left: 0;
  }
  header .logo-container:before,
  header .logo-container:after {
    display: none;
  }
  header .logo-container .gradient-overlay {
    display: none;
  }
  .homepage-slider .main-slider ul.bxslider li .text-overlay {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*********************
    max-width 767
**********************/
@media screen and (max-width: 767px) {
  body {
    padding-top: 85px;
  }
  header {
    height: 85px;
  }
  header .logo {
    width: 115px;
  }
  header .right {
    padding-top: 0;
  }
  header .header-text {
    display: none;
  }
  header .nav-box {
    position: static;
  }
  header .nav-box nav {
    width: 100%;
    top: 64px;
  }
  .homepage-slider .thumbnail-blocks ul:after {
    content: "";
    display: table;
  }
  .homepage-slider .thumbnail-blocks ul li {
    width: 50%;
    display: block;
    float: left;
  }
  .homepage-slider .thumbnail-blocks ul li.dual {
    width: 50%;
  }
}
/*********************
    max-width 560
**********************/
@media screen and (max-width: 560px) {
  header .nav-box nav li {
    width: 100%;
  }
  .homepage-slider .thumbnail-blocks ul li {
    width: 100%;
    min-height: 1px;
    float: none;
  }
  .homepage-slider .thumbnail-blocks ul li.dual {
    width: 100%;
  }
}
