/*
 * Abstractions like variables, mixins, etc...
 */
/* 
 * http://easings.net/nl 
 */
/* 
 * Wrapper 
 */
/* 
 * Media Queries 
 */
/* 
 * Font weights 
 */
/*
 * Font sizes
 */
/*
 * Colors
 */
/* Positions */
.relative {
  position: relative; }

.absolute {
  position: absolute; }

.stretch {
  width: 100%;
  height: 100%; }

/* Layout */
.inline-block {
  display: inline-block; }

.display-block {
  display: block; }

.table {
  display: table;
  width: 100%; }

.table-cell {
  display: table-cell; }

/* Alignment */
.align-left {
  text-align: left; }

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

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

.v-align-middle {
  vertical-align: middle; }

.v-align-top {
  vertical-align: top; }

.v-align-bottom {
  vertical-align: bottom; }

/* Weights */
.hairline {
  font-weight: 200; }

.light {
  font-weight: 300; }

.regular {
  font-weight: 400; }

.bold {
  font-weight: 700; }

.normal {
  font-style: normal; }

.italic {
  font-style: italic; }

/* Font sizes */
.small-font {
  font-size: 14px;
  font-size: 1.4rem; }

.normal-font {
  font-size: 18px;
  font-size: 1.8rem; }

/* Text decorations */
.underline {
  text-decoration: underline; }

.line-trough {
  text-decoration: line-through; }

/* Transform */
.uppercase {
  text-transform: uppercase; }

.no-margin {
  margin: 0; }

/* Overflow */
.overflow-hidden {
  overflow: hidden; }

.no-wrap {
  white-space: nowrap; }

/*
* Responsive helpers
*/
@media (min-width: 750px) {
  .mobile-only {
    display: none; } }

@media (max-width: 750px) {
  .hide-mobile {
    display: none; } }

/*
* Cursors
*/
.cursor--pointer {
  cursor: pointer; }

.mb-30 {
  margin-bottom: 30px; }

.border-bottom {
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd; }

.centered-title {
  padding: 0 0 30px;
  margin-bottom: 40px;
  position: relative; }
  .centered-title:after {
    background: #DE6623;
    content: "";
    display: block;
    width: 130px;
    height: 4px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto; }
  .centered-title h2 {
    color: #000;
    margin-bottom: 0; }

/**
 * @_clearfix.scss
 * Clearfix to automatically clear child elements
 */
.clearfix, .body-container-wrapper .cols-3, .header-container-wrapper .widget-type-menu ul {
  display: block; }
  .clearfix:after, .body-container-wrapper .cols-3:after, .header-container-wrapper .widget-type-menu ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }

/* Hides from IE-mac \*/
* html .clearfix, * html .body-container-wrapper .cols-3, .body-container-wrapper * html .cols-3, * html .header-container-wrapper .widget-type-menu ul, .header-container-wrapper .widget-type-menu * html ul {
  height: 1%; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes fadeInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(400px);
            transform: translateX(400px); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes fadeInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(400px);
            transform: translateX(400px); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

/*
 * Third party styles (sliders, lightbox, dropdown)
 */
/*! 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 */ }
  
  .hs-form-booleancheckbox-display input[type=checkbox]{
      float: left;
      margin: 5px 0 0 0;
      width: auto !important;
  }
  .hs-form-booleancheckbox-display input[type=checkbox] + span{
      float: none;
      display: block;
      padding: 0 0 0 20px;
  }

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

/*
 * Base styles (typography, grids, global styles, etc..)
 */
/**
 * @_boxmodel.css
 * The CSS box model is essentially a box that wraps around HTML elements,
 * and it consists of: margins, borders, padding, and the actual content.
 */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

/* Root typography */
/*
* http://css-tricks.com/rems-ems/
* Root document is the default 100% (can be scaled trough media queries)
* Components are declared with rems
* Components elements are declared with ems
*/
html {
  /*
   * Sets the base font to 10px for easier math
   */
  font-size: 62.5%; }

/*
 * Sets the default sizing to make sure nothing is actually 10px
 */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  /*
   * Force Anti-aliasing
   */
  -webkit-font-smoothing: antialiased; }
  @media only screen and (max-width: 960px) {
    body {
      font-size: 1.5rem; } }
  @media only screen and (max-width: 750px) {
    body {
      font-size: 1.4rem; } }

/*
 * Remove margin from first paragraph
 */
p, .body-container-wrapper li {
  color: #888381;
  line-height: 1.5; }

p {
  margin-top: 0; }
  p:only-child {
    margin: 0; }
  p:last-child {
    margin-bottom: 0; }

.body-container-wrapper .box ul {
  padding: 0;
  margin: 0 0 20px 20px; }
  @media only screen and (max-width: 960px) {
    .body-container-wrapper .box ul {
      margin: 0 0 20px 10px; } }
  .body-container-wrapper .box ul li {
    background: url(//cdn2.hubspot.net/hubfs/2214077/Urbicoon/arrow-right-orange.png) no-repeat 0 7px;
    list-style: none;
    padding-left: 15px;
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 0 5px; }

/*
 * Responsive image
 */
img {
  max-width: 100%;
  height: auto; }

/*
 * Heading styles
 */
h1, h2, h3, h4, h5, h6 {
  color: #DE6623;
  font-weight: 700;
  margin-top: 0;
  text-rendering: optimizeLegibility;
  margin-bottom: 15px; }

h1 {
  font-size: 24px;
  font-size: 2.4rem; }
  @media only screen and (max-width: 1100px) {
    h1 {
      font-size: 2rem; } }

h2 {
  font-size: 21px;
  font-size: 2.1rem; }
  @media only screen and (max-width: 960px) {
    h2 {
      font-size: 1.8rem; } }

.container-fluid {
  float: none !important;
  background: #fff;
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 30px; }
  @media only screen and (max-width: 1300px) {
    .container-fluid {
      max-width: 98%; } }
  @media only screen and (max-width: 960px) {
    .container-fluid {
      padding: 0 15px; } }

body {
  background: #efeee9; }
  body.open {
    background: #282D31;
    position: relative;
    left: 260px;
    overflow-x: hidden; }

/*
 * Components styles (specific reusable module styles)
 */
.body-container-wrapper .cols-3 {
  text-align: center; }
  .body-container-wrapper .cols-3 .box {
    background: #F5F5F5;
    display: inline-block;
    vertical-align: top;
    width: 33%;
    margin: 0;
    padding: 20px;
    float: none; }
    @media only screen and (max-width: 860px) {
      .body-container-wrapper .cols-3 .box {
        width: 32%; } }
    @media only screen and (max-width: 750px) {
      .body-container-wrapper .cols-3 .box {
        width: 100%;
        max-width: 340px;
        margin: 0 0 30px; } }
  .body-container-wrapper .cols-3 .widget-type-linked_image, .body-container-wrapper .cols-3 .widget-type-rich_text {
    margin: 0 0 20px; }
  .body-container-wrapper .cols-3 .widget-type-linked_image img {
    width: 100%;
    height: auto; }

.btn, .btn-cta, .btn-sec {
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none; }

.btn-cta {
  background: #DE6623;
  color: #fff;
  padding: 15px 20px; }
  .btn-cta:hover {
    opacity: .9;
    color: #fff !important; }

.btn-sec {
  background: #5C9494 !important;
  color: #fff;
  padding: 15px 0px !important;
  width: 100%; }
  @media only screen and (max-width: 480px) {
    .btn-sec {
      padding: 10px !important; } }
  .btn-sec:hover {
    opacity: .9; }
  .btn-sec span {
    font-size: 18px !important; }
    @media only screen and (max-width: 480px) {
      .btn-sec span {
        font-size: 16px !important; } }

.horizontal-list li, .horizontal-list a {
  display: inline-block; }

a {
  color: #DE6623; }

input, textarea {
  background-color: #FFF;
  border: 1px solid #e1e1e1;
  padding: 2.5px 5px;
  padding: .25rem .5rem;
  display: block; }

input[type=text], input[type=tel], input[type=email], .hs-form fieldset.form-columns-1 textarea.hs-input {
  padding: 10px 15px;
  width: 100%; }
  .basic-page input[type=text], .basic-page input[type=tel], .basic-page input[type=email], .basic-page .hs-form fieldset.form-columns-1 textarea.hs-input {
    padding: 5px 10px;
    font-size: 13px;
    font-size: 1.3rem; }
    @media only screen and (max-width: 960px) {
      .basic-page input[type=text], .basic-page input[type=tel], .basic-page input[type=email], .basic-page .hs-form fieldset.form-columns-1 textarea.hs-input {
        padding: 10px 15px; } }
    .basic-page input[type=text].error, .basic-page input[type=tel].error, .basic-page input[type=email].error, .basic-page .hs-form fieldset.form-columns-1 textarea.hs-input.error {
      border: 1px solid red; }

.hs-error-msgs li label {
  color: red;
  font-size: 14px;
  font-size: 1.4rem; }
  .basic-page .hs-error-msgs li label {
    font-size: 12px;
    font-size: 1.2rem;
    display: none; }

.footer-container-wrapper .socials {
  float: right;
  margin: 0;
  width: auto; }

.socials ul {
  padding: 0;
  margin: 0; }
  .socials ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; }
    .header-container-wrapper .socials ul li {
      height: 77px;
      line-height: 77px; }

.socials a {
  padding: 10px 5px; }

.banner {
  position: relative;
  margin-bottom: 30px;
  display: none;
  overflow: hidden; }
  .basic-page .banner .widget-type-linked_image {
    -webkit-animation: fadeIn 1s;
            animation: fadeIn 1s; }
    @media only screen and (max-width: 1100px) {
      .basic-page .banner .widget-type-linked_image {
        height: 553px;
        overflow: hidden; } }
    @media only screen and (max-width: 960px) {
      .basic-page .banner .widget-type-linked_image {
        height: auto; } }
  .banner .cta-block {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 300px;
    text-align: center; }
    @media only screen and (max-width: 960px) {
      .banner .cta-block {
        width: 300px; } }
    @media only screen and (max-width: 860px) {
      .banner .cta-block {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        border: 1px solid #eee; } }
  .banner .widget-type-form {
    position: absolute;
    bottom: 30px;
    right: 60px;
    width: 340px;
    margin-bottom: 0;
    opacity: 0;
    -webkit-animation: fadeInFromRight 1s forwards 1s;
            animation: fadeInFromRight 1s forwards 1s; }
    @media only screen and (max-width: 1300px) {
      .banner .widget-type-form {
        right: 50px;
        bottom: 20px; } }
    @media only screen and (max-width: 1100px) {
      .banner .widget-type-form {
        right: 28px;
        top: 0px;
        bottom: auto; } }
    @media only screen and (max-width: 960px) {
      .banner .widget-type-form {
        position: relative;
        right: auto;
        width: 100%;
        -webkit-animation: none;
                animation: none;
        opacity: 1; } }
    .banner .widget-type-form .hs-form fieldset.form-columns-2 .hs-form-field {
      width: 49%; }
      @media only screen and (max-width: 480px) {
        .banner .widget-type-form .hs-form fieldset.form-columns-2 .hs-form-field {
          width: 100%; } }
      .banner .widget-type-form .hs-form fieldset.form-columns-2 .hs-form-field:nth-child(2n) {
        float: right; }
        @media only screen and (max-width: 480px) {
          .banner .widget-type-form .hs-form fieldset.form-columns-2 .hs-form-field:nth-child(2n) {
            float: none; } }
    .banner .widget-type-form .hs-form fieldset.form-columns-2 .input {
      margin: 0; }
  .banner img {
    display: block; }
    @media only screen and (max-width: 1300px) {
      .banner img {
        width: 100% !important; } }
  .banner .project-logo {
    width: 200px;
    position: absolute;
    left: 60px;
    top: 30px; }
    @media only screen and (max-width: 1300px) {
      .banner .project-logo {
        width: 200px !important; } }
    @media only screen and (max-width: 860px) {
      .banner .project-logo {
        width: 20% !important;
        top: 20px;
        left: 40px; } }
    @media only screen and (max-width: 750px) {
      .banner .project-logo {
        display: none; } }

.banner-text {
  background: rgba(51, 51, 51, 0.8);
  padding: 20px;
  position: absolute;
  left: 60px;
  bottom: 30px;
  max-width: 55%;
  opacity: 0;
  -webkit-animation: fadeInFromBottom 1s forwards .2s;
          animation: fadeInFromBottom 1s forwards .2s; }
  @media only screen and (max-width: 1300px) {
    .banner-text {
      bottom: 20px; } }
  @media only screen and (max-width: 1100px) {
    .banner-text {
      max-width: 100%;
      left: 0px;
      bottom: 0px;
      padding: 20px;
      margin: 0 30px !important;
      width: auto !important; } }
  @media only screen and (max-width: 960px) {
    .banner-text {
      -webkit-animation: none;
              animation: none;
      opacity: 1;
      position: relative;
      left: auto;
      bottom: auto;
      max-width: 100%;
      width: 100% !important;
      margin: 0 !important; } }
  .banner-text h2, .banner-text p {
    color: #fff; }
  .banner-text h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px; }
    @media only screen and (max-width: 960px) {
      .banner-text h2 {
        font-size: 1.4rem; } }
  .banner-text p {
    font-size: 14px;
    font-size: 1.4rem; }
    @media only screen and (max-width: 1100px) {
      .banner-text p {
        max-width: 61%; } }
    @media only screen and (max-width: 960px) {
      .banner-text p {
        max-width: 100%;
        font-size: 1.2rem; } }

/*
 * Header
 */
.header-container-wrapper .widget-type-logo {
  margin-right: 10px;
  padding: 10px 15px 0;
  width: 167px;
  height: 77px;
  border-right: 1px solid #EDEFEF; }
  @media only screen and (max-width: 480px) {
    .header-container-wrapper .widget-type-logo {
      border: none; } }
  .header-container-wrapper .widget-type-logo img {
    width: 167px; }

.mob-trigger {
  background: #fff url(//cdn2.hubspot.net/hubfs/2214077/Urbicoon/hamburger.png) no-repeat left center;
  padding-left: 20px;
  color: #888381;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  height: 77px;
  line-height: 77px;
  display: none !important;
  width: auto !important;
  margin: 0;
  position: absolute;
  top: 0;
  left: 190px; }
  .open .mob-trigger {
    margin: 0; }
  @media only screen and (max-width: 1024px) {
    .mob-trigger {
      display: inline-block !important; }
      .open .mob-trigger {
        background: #282D31 url(//cdn2.hubspot.net/hubfs/2214077/Urbicoon/close.png) no-repeat center center;
        height: 50px;
        width: 50px !important;
        display: block;
        text-indent: -999px;
        left: 0px;
        padding: 0 30px; } }
  @media only screen and (max-width: 860px) {
    .mob-trigger {
      left: 200px; } }
  @media only screen and (max-width: 480px) {
    .mob-trigger {
      left: auto;
      right: 20px; } }

.header-container-wrapper .widget-type-menu {
  width: auto;
  margin: 0; }
  .header-container-wrapper .widget-type-menu ul {
    padding: 0;
    margin: 0; }
    .header-container-wrapper .widget-type-menu ul li {
      list-style: none;
      padding: 0;
      margin: 0;
      float: left;
      position: relative; }
      .header-container-wrapper .widget-type-menu ul li:hover a {
        background: #DE6623;
        color: #fff; }
      .header-container-wrapper .widget-type-menu ul li:hover ul {
        top: 77px; }
    .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper {
      box-shadow: 0 0 22px 1px rgba(0, 0, 0, 0.2);
      position: absolute;
      top: -9999px;
      left: 0;
      z-index: 99;
      width: 195px; }
      .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper li {
        float: none; }
        .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper li a {
          background: #fff;
          display: block;
          padding: 15px 15px;
          font-size: 12px;
          font-size: 1.2rem;
          color: #000000;
          height: auto;
          line-height: normal; }
          .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper li a:hover {
            background: #F7F7F7; }
  .header-container-wrapper .widget-type-menu a {
    color: #888381;
    display: inline-block;
    font-family: 'Sintony', sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    text-decoration: none;
    height: 77px;
    line-height: 57px;
    padding: 10px 20px; }

@media only screen and (max-width: 1024px) {
  .header-container-wrapper .widget-type-menu {
    background: #282D31;
    width: 270px;
    height: 100%;
    margin: 0;
    z-index: 999;
    position: absolute;
    top: 0;
    left: -290px; }
    .header-container-wrapper .widget-type-menu.open {
      left: -270px; }
    .header-container-wrapper .widget-type-menu ul {
      background: #282D31; }
      .header-container-wrapper .widget-type-menu ul li {
        float: none; }
        .header-container-wrapper .widget-type-menu ul li:hover ul {
          top: 0px; }
        .header-container-wrapper .widget-type-menu ul li:hover a {
          background: #282D31;
          color: #888381; }
        .header-container-wrapper .widget-type-menu ul li.hs-item-has-children a {
          background: url(//cdn2.hubspot.net/hubfs/2214077/Urbicoon/arrow-right.png) no-repeat 93% center; }
          .header-container-wrapper .widget-type-menu ul li.hs-item-has-children a.open {
            background: url(//cdn2.hubspot.net/hubfs/2214077/Urbicoon/arrow-down.png) no-repeat 93% center; }
      .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        display: none; }
        .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper li a {
          background: #282D31;
          color: #888381;
          padding: 15px 20px 15px 30px;
          font-size: 1.4rem; }
          .header-container-wrapper .widget-type-menu ul ul.hs-menu-children-wrapper li a:hover {
            background: #282D31; }
    .header-container-wrapper .widget-type-menu a {
      border-bottom: 1px solid #31363a;
      display: block;
      padding: 15px 20px 15px 15px;
      height: auto;
      line-height: normal; } }

/*
 * Layout styles (header, footer, sidebar, etc..)
 */
.header-container-wrapper .container-fluid {
  position: relative; }

.header-container-wrapper .header-right {
  float: right;
  width: auto;
  position: absolute;
  top: 0;
  right: 25px; }
  @media only screen and (max-width: 480px) {
    .header-container-wrapper .header-right {
      display: none; } }

.footer-container-wrapper .container-fluid {
  background: #373B3D;
  color: #fff;
  padding: 30px;
  font-size: 14px;
  font-size: 1.4rem; }

.basic-page .footer-container-wrapper .container, .thankyou-page .footer-container-wrapper .container {
  padding: 30px; }

/*
 * Page specific styles
 */
.basic-page .container-fluid, .thankyou-page .container-fluid {
  padding: 0; }

.basic-page .container, .thankyou-page .container {
  padding: 0 30px; }
  @media only screen and (max-width: 960px) {
    .basic-page .container, .thankyou-page .container {
      padding: 0 20px; } }

.page-title {
  background: #f5f5f5;
  padding: 20px 0;
  margin-bottom: 30px; }
  .page-title h1 {
    margin: 0; }
