@charset "UTF-8";
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }
.brokerage-heading{
    font-weight: bold; 
	color: #013c6f;
    text-transform: uppercase;
    padding: 30px 0;
    font-size: 42px;
}

/* Classes */
.floatLeft, .fl {
  float: left; }

.floatRight, .fr {
  float: right; }

.clearBoth {
  clear: both; }

.textLeft {
  text-align: left; }

.textRight {
  text-align: right; }

.imageLeft {
  float: left;
  margin: 0 40px 40px 0; }

.imageRight {
  float: right;
  margin: 0 0 40px 40px; }

.noMargin {
  margin: 0; }

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

.img-center {
  display: block;
  margin: 0 auto; }

ul.bullet-list {
  list-style: disc;
  margin-left: 30px; }

ul.bullet-list li {
  font-size: 14px; }

/* Links */
a, a:visited {
  text-decoration: none; }

a:focus {
  outline: none; }

/* Buttons */
/* Center Height */
body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }
  @media all and (max-width: 540px) {
    .sweet-alert {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      left: 15px;
      right: 15px; } }
  .sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block; }
  .sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal; }
  .sweet-alert fieldset {
    border: none;
    position: relative; }
  .sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s; }
    .sweet-alert .sa-error-container.show {
      padding: 10px 0;
      max-height: 100px;
      webkit-transition: padding 0.2s, max-height 0.2s;
      transition: padding 0.25s, max-height 0.25s; }
    .sweet-alert .sa-error-container .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: white;
      line-height: 24px;
      text-align: center;
      margin-right: 3px; }
    .sweet-alert .sa-error-container p {
      display: inline-block; }
  .sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    .sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
      content: "";
      width: 20px;
      height: 6px;
      background-color: #f06e57;
      border-radius: 3px;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: 50%;
      margin-left: -9px; }
    .sweet-alert .sa-input-error::before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sweet-alert .sa-input-error::after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .sweet-alert .sa-input-error.show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
  .sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .sweet-alert input:focus {
      outline: none;
      box-shadow: 0px 0px 3px #c4e6f5;
      border: 1px solid #b4dbed; }
      .sweet-alert input:focus::-moz-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus:-ms-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus::-webkit-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
    .sweet-alert input::-moz-placeholder {
      color: #bdbdbd; }
    .sweet-alert input:-ms-input-placeholder {
      color: #bdbdbd; }
    .sweet-alert input::-webkit-input-placeholder {
      color: #bdbdbd; }
  .sweet-alert.show-input input {
    display: block; }
  .sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative; }
  .sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden; }
  .sweet-alert button {
    background-color: #448cbe;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0;
    padding: 0 32px;
    margin: 26px 5px 10px 5px;
    cursor: pointer; }
    .sweet-alert button:focus {
      outline: none;
      box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .sweet-alert button:hover {
      background-color: #3f84b4; }
    .sweet-alert button:active {
      background-color: #35719a; }
    .sweet-alert button.cancel {
      background-color: #C1C1C1; }
      .sweet-alert button.cancel:hover {
        background-color: #b9b9b9; }
      .sweet-alert button.cancel:active {
        background-color: #a8a8a8; }
      .sweet-alert button.cancel:focus {
        box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.04706) 0px 0px 0px 1px inset !important; }
    .sweet-alert button[disabled] {
      opacity: .6;
      cursor: default; }
    .sweet-alert button.confirm[disabled] {
      color: transparent; }
      .sweet-alert button.confirm[disabled] ~ .la-ball-fall {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s; }
    .sweet-alert button::-moz-focus-inner {
      border: 0; }
  .sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important; }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px; }
  .sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box; }
    .sweet-alert .sa-icon.sa-error {
      border-color: #F27474; }
      .sweet-alert .sa-icon.sa-error .sa-x-mark {
        position: relative;
        display: block; }
      .sweet-alert .sa-icon.sa-error .sa-line {
        position: absolute;
        height: 5px;
        width: 47px;
        background-color: #F27474;
        display: block;
        top: 37px;
        border-radius: 2px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          left: 17px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          right: 16px; }
    .sweet-alert .sa-icon.sa-warning {
      border-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-body {
        position: absolute;
        width: 5px;
        height: 47px;
        left: 50%;
        top: 10px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-dot {
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-left: -3px;
        left: 50%;
        bottom: 10px;
        background-color: #F8BB86; }
    .sweet-alert .sa-icon.sa-info {
      border-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 29px;
        left: 50%;
        bottom: 17px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 19px;
        background-color: #C9DAE1; }
    .sweet-alert .sa-icon.sa-success {
      border-color: #A5DC86; }
      .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
        content: '';
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        position: absolute;
        width: 60px;
        height: 120px;
        background: white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sweet-alert .sa-icon.sa-success::before {
        -webkit-border-radius: 120px 0 0 120px;
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 60px 60px;
        transform-origin: 60px 60px; }
      .sweet-alert .sa-icon.sa-success::after {
        -webkit-border-radius: 0 120px 120px 0;
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0px 60px;
        transform-origin: 0px 60px; }
      .sweet-alert .sa-icon.sa-success .sa-placeholder {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(165, 220, 134, 0.2);
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        box-sizing: content-box;
        position: absolute;
        left: -4px;
        top: -4px;
        z-index: 2; }
      .sweet-alert .sa-icon.sa-success .sa-fix {
        width: 5px;
        height: 90px;
        background-color: white;
        position: absolute;
        left: 28px;
        top: 8px;
        z-index: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .sweet-alert .sa-icon.sa-success .sa-line {
        height: 5px;
        background-color: #A5DC86;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 2; }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
          width: 25px;
          left: 14px;
          top: 46px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
          width: 47px;
          right: 8px;
          top: 38px;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    .sweet-alert .sa-icon.sa-custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }
@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }
@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }
@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }
@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }
@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }
.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }
.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }
.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }
.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }
.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }
.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;

    top: 45px; } }
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }
.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }
@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }
.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }
.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 35px;
  width: 35px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 9; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 0.75; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.5; }

.slick-prev:before, .slick-next:before {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 20px;
  background: #fff;
  color: #013c6f;
  padding: 5px;
  border-radius: 50% 50%;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 25px; }
  .slick-prev:before {
    padding: 5px 8px 5px 5px;
    content: "◄"; }
    [dir="rtl"] .slick-prev:before {
      content: "►"; }

.slick-next {
  right: 25px; }
  [dir="rtl"] .slick-next {
    left: 25px;
    right: auto; }
  .slick-next:before {
    padding: 5px 5px 5px 8px;
    content: "►"; }
    [dir="rtl"] .slick-next:before {
      content: "◄"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -15px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer;
      font-weight: normal; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 0.75; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-size: 37px;
        line-height: 20px;
        text-align: center;
        color: #b9ce62;
        opacity: 0.5;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #b9ce62;
      opacity: 1; }

.slick-slide:active, .slick-slide:focus {
  outline: none; }

/* DEFAULTS */
/* Sticky Footer */
html, body {
  height: 100%; }

/* End Sticky Footer */
h2.section-title {
  margin: 70px auto 20px;
  text-transform: uppercase;
  position: relative !important; }
  h2.section-title:after {
    content: '';
    width: 66px;
    height: 1px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -33px;
    background: #448cbe; }
  @media only screen and (max-width: 40em) {
    h2.section-title.hidden-for-small {
      position: absolute !important; } }

/* Secondary Page Titles */
.page-title-v2 h2.section-title {
  margin: 40px auto 20px; }

/* Inputs */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #9f9f9f;
  font-weight: 300;
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif; }
input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #9f9f9f;
  font-weight: 300;
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif; }
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9f9f9f;
  font-weight: 300;
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #9f9f9f;
  font-weight: 300;
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif; }

input, select {
  padding: 0 .9rem !important;
  line-height: 50px !important;
  height: 50px !important;
  background-color: #fff; }

textarea {
  padding: .9em !important;
  line-height: 1.5em;
  width: 100%;
  max-width: 1250px;
  min-height: 120px;
  max-height: 200px; }

.wrap {
  position: relative; }

ul.bulleted-list {
  list-style: disc;
  padding-left: 40px; }

/* Links */
a {
  color: #ffffff;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  -ms-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out; }
  a:hover {
    color: #b9ce62; }

.main-wrap a:not(.button):not(.home-callout) {
  color: #448cbe; }
  .main-wrap a:not(.button):not(.home-callout) h3 {
    color: #448cbe;
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -ms-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out; }
    .main-wrap a:not(.button):not(.home-callout) h3:hover {
      color: #b9ce62; }
  .main-wrap a:not(.button):not(.home-callout):hover {
    color: #b9ce62; }

a.non-color {
  color: #448cbe !important; }

/* Buttons */
.button, button {
  width: 100%;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 21px;
  padding: 0 20px;
  height: 50px;
  vertical-align: middle;
  line-height: 49px; }
  .button.button-alt, button.button-alt {
    background: #ffffff;
    color: #448cbe;
    border: 2px solid #448cbe; }
    .button.button-alt.button-reverse, button.button-alt.button-reverse {
      background: transparent;
      color: #fff; }
    .button.button-alt:hover, button.button-alt:hover {
      background: #448cbe;
      color: #ffffff; }
  .button.button-margin-top, button.button-margin-top {
    margin-top: 30px; }

.top-nav {
  background: #448cbe; }
  .top-nav .row {
    padding: 10px 0; }
    .top-nav .row .vht-login {
      border: 1px solid #ffffff;
      padding: 2px 7px;
      margin-left: 8px; }

.main-nav {
  background: #333333; }
  .main-nav .row {
    padding: 25px 0; }
    @media screen and (min-width: 639px) and (max-width: 835px) {
      .main-nav .row div.small-9.medium-3.columns {
        width: 80%; } }
    .main-nav .row nav ul {
      float: right;
      margin-top: 10px; }
      .main-nav .row nav ul li {
        float: left;
        display: inline-block;
        margin: 0; }
        .main-nav .row nav ul li a {
          font-size: 17px;
          font-weight: 300;
          padding: 5px 11px; }
        .main-nav .row nav ul li.active a {
          color: #b9ce62; }

@media screen and (max-width: 835px) {
  .top-bar {
    display: none; } }

nav#menu {
  position: fixed;
  right: -15.625em;
  /*left or right and the width of your navigation panel*/
  width: 15.625em;
  background: #448cbe;
  border: 6px solid #dadada; }
  nav#menu ul {
    display: inline-block;
    width: 100%;
    float: left;
    margin-top: 0; }
    nav#menu ul li {
      display: inline-block;
      float: left;
      width: 100%;
      margin: 0;
      border-bottom: 2px solid #dadada; }
      nav#menu ul li.has-dropdown ul.menu.dropdown {
        height: 100% !important;
        margin-bottom: 0; }
      nav#menu ul li a {
        display: block;
        font-size: 21px;
        color: #ffffff;
        font-weight: 300;
        padding: 10px 20px 10px;
        text-align: center; }
        nav#menu ul li a:hover {
          background: #013c6f; }
        nav#menu ul li a.active {
          background: #013c6f; }
  @media screen and (min-width: 836px) {
    nav#menu {
      display: none; } }
  nav#menu .top-links-mobile {
    margin: 15px 20px;
    text-align: center;
    float: left; }
    nav#menu .top-links-mobile a {
      display: block;
      width: 100%;
      float: left;
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 12px; }
    nav#menu .top-links-mobile .vht-login {
      border: 1px solid #ffffff;
      padding: 8px 7px;
      text-align: center; }

.menu-link.c-hamburger {
  position: absolute;
  top: 37px;
  right: 7px;
  font-size: 46px; }
  @media screen and (min-width: 836px) {
    .menu-link.c-hamburger {
      display: none; } }

.callouts-nav {
  background: #dadada; }
  .callouts-nav .row {
    padding: 7px 0; }
    .callouts-nav .row .button {
      width: 100%;
      text-align: center;
      margin-bottom: 0;
      text-transform: uppercase; }
      @media only screen and (max-width: 40em) {
        .callouts-nav .row .button {
          font-size: 16px; } }

footer .top-footer {
  background: #dadada;
  padding: 20px 0 5px; }
  footer .top-footer h3 {
    margin-bottom: 18px; }
  footer .top-footer button {
    width: 100%; }
footer .main-footer {
  background: #333333;
  padding: 30px 0 15px; }
  footer .main-footer h3 {
    color: #ffffff;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 10px; }
  footer .main-footer .footer-callouts .button.button-alt.button-reverse {
    font-size: 18px; }
    @media only screen and (max-width: 40em) {
      footer .main-footer .footer-callouts .button.button-alt.button-reverse {
        font-size: 16px; } }
  @media only screen and (max-width: 64em) {
    footer .main-footer .footer-callouts {
      margin-top: 20px;
      float: left;
      width: 100%; } }
  footer .main-footer .social-links a:hover {
    opacity: 0.5; }
footer .bottom-footer {
  background: #333333;
  padding: 10px 0;
  border-top: 1px solid #2e2e2e;
  font-size: 13px;
  color: #c3c3c3; }
  footer .bottom-footer .bottom-links a {
    font-size: 13px;
    color: #c3c3c3; }
  @media only screen and (max-width: 40em) {
    footer .bottom-footer .bottom-links {
      margin: 7px auto 5px; } }

/* ANIMATED HAMBURGER ICON */
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 75px;
  font-size: 0;
  text-indent: -9999px;
  z-index: 99;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  -moz-transition: background 0.3s ease-out;
  -ms-transition: background 0.3s ease-out;
  -o-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out; }
  .c-hamburger:focus {
    outline: none; }
  .c-hamburger span {
    display: block;
    position: absolute;
    top: 44px;
    left: 18px;
    right: 18px;
    height: 5px;
    background: #b9ce62; }
    .c-hamburger span::before, .c-hamburger span::after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: #b9ce62;
      content: ""; }
    .c-hamburger span::before {
      top: -15px; }
    .c-hamburger span::after {
      bottom: -15px; }
  .c-hamburger.c-hamburger--htx {
    background-color: #333333;
    /* active state, i.e. menu open */ }
    .c-hamburger.c-hamburger--htx span {
      -moz-transition: background 0s 0.3s;
      -o-transition: background 0s 0.3s;
      -webkit-transition: background 0s 0.3s;
      transition: background 0s 0.3s; }
      .c-hamburger.c-hamburger--htx span::before, .c-hamburger.c-hamburger--htx span::after {
        -moz-transition-duration: 0.3s, 0.3s;
        -o-transition-duration: 0.3s, 0.3s;
        -webkit-transition-duration: 0.3s, 0.3s;
        transition-duration: 0.3s, 0.3s;
        -moz-transition-delay: 0.3s, 0s;
        -o-transition-delay: 0.3s, 0s;
        -webkit-transition-delay: 0.3s, 0s;
        transition-delay: 0.3s, 0s; }
      .c-hamburger.c-hamburger--htx span::before {
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        -webkit-transition-property: top, transform;
        transition-property: top, transform; }
      .c-hamburger.c-hamburger--htx span::after {
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        -webkit-transition-property: bottom, transform;
        transition-property: bottom, transform; }
    .c-hamburger.c-hamburger--htx.active {
      background-color: #333333; }
      .c-hamburger.c-hamburger--htx.active span {
        background: none; }
        .c-hamburger.c-hamburger--htx.active span::before, .c-hamburger.c-hamburger--htx.active span::after {
          -moz-transition-delay: 0s, 0.3s;
          -o-transition-delay: 0s, 0.3s;
          -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s; }
        .c-hamburger.c-hamburger--htx.active span::before {
          top: 0;
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .c-hamburger.c-hamburger--htx.active span::after {
          bottom: 0;
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

/********************************************
---------------- HOMEPAGE ------------------
********************************************/
/*
------- Home Slider --------
*/
.home-slider .slick-slide img {
  min-width: 100%; }

.home-slider .slider-content {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
  height: auto;
  max-height: 210px;
  padding: 30px;
  width: 100%;
  max-width: 747px; }
  .home-slider .slider-content h2, .home-slider .slider-content span {
    color: #fff;
    font-weight: 300; }
  .home-slider .slider-content h2 {
    margin-bottom: 16px;
    border-bottom: 1px solid #666;
    padding-bottom: 7px; }
  .home-slider .slider-content h1, .home-slider .slider-content h3 {
    color: #fff; }
  .home-slider .slider-content h1 {
    line-height: 1em;
    font-weight: 400;
    text-transform: uppercase; }
  .home-slider .slider-content h3 {
    margin-top: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
    padding-bottom: 10px; }
  .home-slider .slider-content a.button {
    display: inline-block;
    width: auto;
    border: 1px solid #fff;
    font-size: 17px;
    padding: 4px 20px;
    margin-left: 0;
    line-height: 1.4em;
    height: auto;
    margin-bottom: 0; }
  @media only screen and (max-width: 1240px) {
    .home-slider .slider-content {
      width: 60%; } }
  @media only screen and (max-width: 1200px) {
    .home-slider .slider-content {
      width: 70%; } }
  @media only screen and (max-width: 900px) {
    .home-slider .slider-content {
      bottom: 0;
      top: auto;
      width: 100%;
      position: relative;
      background: #013c6f;
      max-width: none;
      max-height: none; }
      .home-slider .slider-content h2 {
        border-bottom: 1px solid #ccc; } }

.home-slider .slick-dots {
  bottom: -36px; }

/*
------- Home Callouts --------
*/
.home-callouts a.home-callout {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px; }
  @media only screen and (min-width: 64.063em) {
    .home-callouts a.home-callout > img {
      max-width: 100%;
      width: 100%;
      height: auto;
      display: block;
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition: transform 1.5s ease;
      -moz-transition: transform 1.5s ease;
      -ms-transition: transform 1.5s ease;
      -o-transition: transform 1.5s ease;
      transition: transform 1.5s ease; }
    .home-callouts a.home-callout .overlay-wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0.01;
      -webkit-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -ms-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
      .home-callouts a.home-callout .overlay-wrap .center-content {
        display: table;
        text-align: center;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        overflow: hidden; }
        .home-callouts a.home-callout .overlay-wrap .center-content .center-wrap {
          display: table-cell;
          text-align: center;
          vertical-align: middle;
          width: 100%;
          height: 100%;
          margin: 0;
          padding: 0 20px;
          -moz-transform: translateY(-66%);
          -ms-transform: translateY(-66%);
          -o-transform: translateY(-66%);
          -webkit-transform: translateY(-66%);
          transform: translateY(-66%);
          -webkit-transition: all 0.6s ease;
          -moz-transition: all 0.6s ease;
          -ms-transition: all 0.6s ease;
          -o-transition: all 0.6s ease;
          transition: all 0.6s ease; }
          .home-callouts a.home-callout .overlay-wrap .center-content .center-wrap span {
            font-size: 36px;
            font-weight: 300; }
            .home-callouts a.home-callout .overlay-wrap .center-content .center-wrap span.caption {
              font-size: 68px;
              font-weight: 300;
              display: block; }
    .home-callouts a.home-callout:hover {
      color: #fff; }
      .home-callouts a.home-callout:hover > img {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04); }
      .home-callouts a.home-callout:hover .overlay-wrap {
        opacity: 1; }
        .home-callouts a.home-callout:hover .overlay-wrap .center-wrap {
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          -webkit-transform: translateY(0);
          transform: translateY(0); } }
  .home-callouts a.home-callout .caption-mobile-wrap {
    width: 100%;
    position: absolute;
    bottom: 1px;
    left: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 10px; }
    .home-callouts a.home-callout .caption-mobile-wrap span.caption-mobile {
      font-size: 20px; }
      @media only screen and (max-width: 40em) {
        .home-callouts a.home-callout .caption-mobile-wrap span.caption-mobile {
          font-size: 17px; } }

/*
------- Home Testimonials --------
*/
.success-stories {
  background: #013c6f;
  padding: 40px 10px 25px; }
  .success-stories .home-testimonials {
    margin-bottom: 0; }
    .success-stories .home-testimonials .slick-slide:active, .success-stories .home-testimonials .slick-slide:focus {
      outline: none; }
    .success-stories .home-testimonials .slick-slide .small-centered.medium-centered {
      padding-top: 10px; }
    .success-stories .home-testimonials .slick-slide p.testimonial {
      font-size: 24px;
      color: #fff;
      font-weight: 300; }
    .success-stories .home-testimonials .slick-slide span.icon-quote {
      position: absolute;
      top: 0;
      left: -20px;
      color: #fff;
      font-size: 60px;
      font-family: 'Source Sans Pro', sans-serif;
      font-weight: 600; }
      .success-stories .home-testimonials .slick-slide span.icon-quote.right {
        left: auto;
        right: -20px; }
    .success-stories .home-testimonials .slick-slide p.quote-name {
      color: #fff;
      font-style: italic;
      font-weight: 300;
      font-size: 16px; }
    .success-stories .home-testimonials .slick-slide img.testimonial-image {
      border: 3px solid #013c6f;
      border-radius: 50% 50%;
      width: 135px;
      overflow: hidden;
      margin: 10px auto; }

/*
------- Home Latest News --------
*/
.latest-news-wrap h3.news-title {
  margin: 60px auto 15px; }

.latest-news-wrap a.button.hide-for-medium-up {
  margin-bottom: 0; }

.latest-news-wrap .latest-news-home {
  margin-bottom: 30px; }
  .latest-news-wrap .latest-news-home .news-item {
    position: relative; }
    .latest-news-wrap .latest-news-home .news-item a {
      display: block;
      max-height: 250px;
      overflow: hidden; }
      .latest-news-wrap .latest-news-home .news-item a img {
        position: relative; }
      .latest-news-wrap .latest-news-home .news-item a .news-item-center {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding: 0 0.9375rem; }
        .latest-news-wrap .latest-news-home .news-item a .news-item-center .center-wrap {
          display: table;
          text-align: center;
          vertical-align: middle;
          width: 100%;
          height: 100%;
          overflow: hidden; }
          .latest-news-wrap .latest-news-home .news-item a .news-item-center .center-wrap h3 {
            display: table-cell;
            text-align: center;
            vertical-align: middle;
            height: 100%;
            width: 100%; }
            .latest-news-wrap .latest-news-home .news-item a .news-item-center .center-wrap h3 span {
              background: rgba(68, 140, 190, 0.7);
              padding: 18px 0;
              color: #fff;
              display: block;
              line-height: 1.0em;
              -webkit-transition: all 0.3s ease-in-out;
              -moz-transition: all 0.3s ease-in-out;
              -ms-transition: all 0.3s ease-in-out;
              -o-transition: all 0.3s ease-in-out;
              transition: all 0.3s ease-in-out; }
              @media only screen and (max-width: 1000px) {
                .latest-news-wrap .latest-news-home .news-item a .news-item-center .center-wrap h3 span {
                  font-size: 20px; } }
              @media only screen and (max-width: 800px) {
                .latest-news-wrap .latest-news-home .news-item a .news-item-center .center-wrap h3 span {
                  font-size: 18px; } }
      .latest-news-wrap .latest-news-home .news-item a:hover span {
        margin-top: -12px;
        background: #448cbe !important; }

/*
------- Home Facebook Gallery --------
*/
#photos {
  margin-top: 5px;
  margin-bottom: 10px; }
  #photos .facebook-photo {
    margin-bottom: 20px;
    text-align: center; }

/********************************************
------------- SERVICES PAGES ---------------
********************************************/
.hero-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 500px;
  position: relative; }
  .hero-image:before {
    content: '';
    position: absolute;
    background: url(../media/vht-studios-watermark.png) no-repeat;
    background-size: 200px;
    background-position: bottom 10px left 10px;
    opacity: 0.7;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .hero-image .row {
    position: relative;
    min-height: 500px;
    height: 100%; }
    .hero-image .row .column {
      height: 100%;
      min-height: 500px; }
      .hero-image .row .column .hero-content {
        position: absolute;
        left: 0;
        margin: 0;
        top: 50%;
        padding: 30px;
        width: 100%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: #fff; }
        .hero-image .row .column .hero-content h1, .hero-image .row .column .hero-content h3 {
          color: #fff; }
        .hero-image .row .column .hero-content h1 {
          line-height: 1em;
          font-weight: 400;
          text-transform: uppercase; }
        .hero-image .row .column .hero-content h3 {
          margin-top: 5px;
          margin-bottom: 10px;
          border-bottom: 1px solid #666;
          padding-bottom: 10px; }
        .hero-image .row .column .hero-content p {
          font-size: 14px; }

/*
------- Page Headline & Lead In --------
*/
.page-headline .headline-wrap {
  margin: 50px auto 0; }
  .page-headline .headline-wrap h1 {
    font-weight: 400;
    /*text-transform:uppercase;*/
    font-size: 52px; }
    @media only screen and (max-width: 1000px) {
      .page-headline .headline-wrap h1 {
        font-size: 48px;
        line-height: 1.2em; } }
    @media only screen and (max-width: 700px) {
      .page-headline .headline-wrap h1 {
        font-size: 36px; } }
  .page-headline .headline-wrap h3 {
    font-size: 26px;
    font-weight: 400;
    color: #555555; }
  @media only screen and (max-width: 1000px) {
    .page-headline .headline-wrap {
      margin-top: 40px; } }
  @media only screen and (max-width: 700px) {
    .page-headline .headline-wrap {
      margin-top: 30px; } }

.page-headline .page-leadin {
  margin-bottom: 30px; }
  .page-headline .page-leadin h2.section-title {
    margin-top: 50px; }

.page-headline .wistia-video-services {
  margin-top: 30px; }

/*
------- Services Sliders --------
*/
.services-slider .services-slide-content {
  background: #013c6f;
  color: #ffffff;
  padding: 20px 30px !important; }
  .services-slider .services-slide-content h2, .services-slider .services-slide-content p {
    color: #ffffff; }
  .services-slider .services-slide-content h2 {
    line-height: 1.2em;
    margin-bottom: 15px;
    font-size: 32px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px; }
  .services-slider .services-slide-content ul li {
    list-style: disc;
    list-style-position: outside;
    font-size: 15px;
    margin-left: 17px; }
  .services-slider .services-slide-content.services-content-1 {
    background: #448cbe; }

.services-slider .services-slider-1 {
  margin-bottom: 50px; }
  .services-slider .services-slider-1.services-slider-alt {
    margin-bottom: 0; }

.services-slider .services-slider-2 {
  margin-bottom: 0; }

/*
------- Service Jumpdown --------
*/
.services-jump-callout {
  margin-top: 50px; }
  .services-jump-callout a.button {
    margin-bottom: 0; }
  .services-jump-callout.photographers-callout {
    margin-top: 0;
    margin-bottom: 50px; }

.resource-callout .resource-wrap {
  margin-top: 30px; }
  .resource-callout .resource-wrap .resource-content {
    /*background:$lightergrey;*/
    background: #333333;
    padding: 35px 30px 30px !important; }
    .resource-callout .resource-wrap .resource-content h2, .resource-callout .resource-wrap .resource-content p {
      color: #ffffff; }
    .resource-callout .resource-wrap .resource-content h2 {
      line-height: 1.3em;
      margin-bottom: 15px;
      padding-bottom: 15px;
      font-size: 32px;
      font-weight: 400;
      border-bottom: 1px solid #ffffff; }
    .resource-callout .resource-wrap .resource-content a.button {
      margin: 30px auto 0; }

/*
------- Learn More Styling --------
*/
#learn-more-brokerages, #learn-more-commercial {
  margin-bottom: 30px; }

/********************************************
--------- NEWS & RESOURCES PAGES -----------
********************************************/
.news-leadin p {
  padding: 40px 0;
  line-height: 2.2em; }

.news-resources article.news-post {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #dadada;
  float: left;
  width: 100%; }
  .news-resources article.news-post p {
    font-size: 14px;
    line-height: 1.8em;
    color: #666666; }
  .news-resources article.news-post h3 {
    line-height: 1.2em;
    margin: 0 auto 10px; }
    @media only screen and (max-width: 40em) {
      .news-resources article.news-post h3 {
        margin-top: 25px;
        font-size: 28px; } }
  .news-resources article.news-post img {
    border: 4px solid #b7b7b7; }
  .news-resources article.news-post a.button {
    height: 45px;
    line-height: 45px;
    width: 50%;
    margin-bottom: 0;
    margin-top: 18px; }
    @media only screen and (max-width: 40em) {
      .news-resources article.news-post a.button {
        width: 100%; } }

.news-resources h2.section-title {
  margin: 30px auto 50px; }

.news-resources .resources-sidebar {
  background: #448cbe;
  min-height: 500px;
  padding: 30px 20px 10px; }
  .news-resources .resources-sidebar h2.section-title {
    color: #fff;
    margin-top: 0; }
    .news-resources .resources-sidebar h2.section-title:after {
      background: #ffffff; }
  .news-resources .resources-sidebar ul.resource-list li.resource-details {
    padding: 0 20px;
    margin: 0 auto 35px; }
    .news-resources .resources-sidebar ul.resource-list li.resource-details .resource-date {
      text-align: center;
      display: block;
      margin: 0 auto 7px;
      padding-bottom: 2px;
      border-bottom: 1px solid #b9ce62; }
      .news-resources .resources-sidebar ul.resource-list li.resource-details .resource-date span {
        display: inline-block;
        padding: 0 10px;
        color: #fff; }
    .news-resources .resources-sidebar ul.resource-list li.resource-details a {
      color: #ffffff !important; }
      .news-resources .resources-sidebar ul.resource-list li.resource-details a span {
        text-decoration: underline; }

.news-resources .pr-contact {
  margin: 30px auto;
  border: 1px solid #dadada;
  padding: 20px 20px 25px; }
  .news-resources .pr-contact h3 {
    font-weight: 400; }
  .news-resources .pr-contact p {
    margin-bottom: 5px;
    font-size: 20px; }

/********************************************
--------------- ABOUT PAGE -----------------
********************************************/
/*
------- Team & Board Styling --------
*/
.team-page {
  margin: 15px auto 40px; }
  .team-page .team-members {
    margin-bottom: 40px; }
    .team-page .team-members .member {
      margin: 12px auto;
      padding: 25px 10px;
      border: 1px solid #dadada; }
      .team-page .team-members .member p {
        font-size: 13px; }
      .team-page .team-members .member h3 {
        font-weight: 400;
        line-height: 0.9em;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dadada; }
        .team-page .team-members .member h3 span {
          font-size: 20px;
          color: #555555;
          font-weight: 400; }
        @media only screen and (max-width: 40em) {
          .team-page .team-members .member h3 {
            line-height: 1.3em;
            margin-top: 20px; } }
  .team-page .board-member {
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #dadada;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .team-page .board-member:after {
      content: "";
      border-radius: 0;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      opacity: 0;
      -moz-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .team-page .board-member:hover {
      -moz-transform: perspective(1px) scale(1.015, 1.015) translate3d(0, 0, 0);
      -o-transform: perspective(1px) scale(1.015, 1.015) translate3d(0, 0, 0);
      -webkit-transform: perspective(1px) scale(1.015, 1.015) translate3d(0, 0, 0);
      -ms-transform: perspective(1px) scale(1.015, 1.015) translate3d(0, 0, 0);
      transform: perspective(1px) scale(1.015, 1.015) translate3d(0, 0, 0); }
      .team-page .board-member:hover:after {
        opacity: 1; }
    .team-page .board-member p {
      color: #555555; }
    .team-page .board-member h3 {
      display: inline-block; }
  .team-page a.button.back-btn {
    margin: 30px auto 0; }

/*
------- Photographers Page --------
*/
#photography-careers {
  margin: 0 auto 20px; }

/********************************************
------------- CAREERS PAGES ---------------
********************************************/
.careers-leadin p {
  margin: 30px auto 20px; }

.careers-listing .career {
  border: 1px solid #dadada;
  padding: 0 20px;
  margin: 30px auto; }
  .careers-listing .career h2 {
    margin: 20px 0 0;
    border-bottom: 1px solid #448cbe;
    padding-bottom: 5px;
    margin-bottom: 15px; }
  .careers-listing .career .job-description {
    margin-bottom: 30px; }
    .careers-listing .career .job-description ul {
      list-style: disc;
      padding-left: 40px; }
      .careers-listing .career .job-description ul li {
        font-size: 15px; }
    .careers-listing .career .job-description p {
      margin-bottom: 14px; }
    .careers-listing .career .job-description strong {
      display: block;
      margin: 17px 0 3px; }

/********************************************
------------- SITEMAP STYLES ---------------
********************************************/
.sitemap ul li a {
  color: #448cbe; }

/********************************************
------------- CONTACT PAGE ---------------
********************************************/
.contact-page a:not(.button) {
  color: #448cbe; }

.reasonforcontactingvhtstudios label {
  margin-top: -26px;
  margin-bottom: 5px; }

#contour_form_ContactForm {
  margin: 55px auto 20px; }

/********************************************
-------------- GRID STYLES ----------------
********************************************/
.grid-wrap {
  margin: 0 auto 30px; }
  .grid-wrap h1 {
    margin: 40px auto 40px;
    text-transform: uppercase;
    position: relative !important;
    text-align: center; }
    .grid-wrap h1:after {
      content: '';
      width: 66px;
      height: 1px;
      position: absolute;
      bottom: -4px;
      left: 50%;
      margin-left: -33px;
      background: #448cbe; }
    @media only screen and (max-width: 40em) {
      .grid-wrap h1.hidden-for-small {
        position: absolute !important; } }

#Price-Modal.reveal-modal {
  padding: 0; }
  #Price-Modal.reveal-modal .modal-header {
    background: #448cbe;
    height: 60px;
    width: 100%; }
  #Price-Modal.reveal-modal .modal-body {
    padding: 30px; }
    #Price-Modal.reveal-modal .modal-body h3 {
      margin-bottom: 15px; }
    #Price-Modal.reveal-modal .modal-body .button {
      margin-bottom: 5px; }
  #Price-Modal.reveal-modal .close-reveal-modal {
    color: #fff; }

/* Specific mobile styling */
@media only screen and (max-width: 700px) {
  .home-testimonials .slick-prev {
    left: 10px; }
  .home-testimonials .slick-next {
    right: 10px; } }

/* Extra small screen styling */
@media only screen and (max-width: 420px) {
  .xs-small-12 {
    width: 100%;
    float: left; }
  .callouts-nav .button.top-btn {
    margin-bottom: 10px; }
  .hero-image {
    min-height: 420px; }
    .hero-image .row {
      min-height: 420px; }
      .hero-image .row .column {
        min-height: 420px; } }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input {
    font-size: 16px !important; } }

.blog-post-wrap {
  margin-bottom: 40px; }
  .blog-post-wrap h1 {
    margin: 30px auto;
    line-height: 1.2em;
    padding: 0; }
  .blog-post-wrap p {
    margin: 10px auto; }

/* Form Validation */
.field-validation-error {
  position: absolute;
  right: 23px;
  top: 9px;
  z-index: 0;
  font-size: 13px;
  color: #bf0000;
  padding: 0; }

/* Form Submission Message */
p.contourMessageOnSubmit {
  padding: 50px 20px;
  margin: 50px auto 20px;
  text-align: center;
  font-size: 22px;
  border: 3px solid #448cbe;
  background: #dadada; }

#footer p.contourMessageOnSubmit {
  padding: 30px 20px;
  background: #fff;
  margin: 0 auto 20px; }

/* Scroll Jump */
#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: url(/media/scroll-up.png) no-repeat;
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }

/*
------- New Package Styling - Test --------
*/
.packages {
  /* Package Header */
  /* Package Global Details */ }
  .packages .packages-header {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 35%;
    height: 340px;
    position: relative; }
    .packages .packages-header .series-overlay-box {
      background: rgba(0, 0, 0, 0.4);
      padding-top: 20px;
      padding-bottom: 20px;
      top: 50%;
      position: absolute;
      right: 0;
      left: 0;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 435px) {
        .packages .packages-header .series-overlay-box #get-rate {
          font-size: 15px; } }
    .packages .packages-header h2.section-title {
      color: #fff;
      margin-top: 0; }
      .packages .packages-header h2.section-title:after {
        background: #fff; }
    .packages .packages-header .series-subhead p {
      color: #fff;
      font-weight: 300;
      font-size: 24px; }
  .packages #package-options {

    padding-top: 20px; }
  .packages .global-details ul {
    text-align: center;
    float: left; }
    .packages .global-details ul li {
      float: left;
      width: 33.33%;
      font-size: 15px;
      margin-bottom: 20px;
      color: #013c6f; }
      .packages .global-details ul li i.fa {
        font-size: 26px;
        color: #013c6f;
        display: block;
        margin: 10px auto 5px; }
      @media only screen and (max-width: 1024px) {
        .packages .global-details ul li {
          width: 50%; } }
      @media only screen and (max-width: 596px) {
        .packages .global-details ul li {
          width: 100%;
          margin-bottom: 10px; } }
  .packages .package {
    margin: 10px 0 50px;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
    .packages .package:hover {
      box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.5); }
    .packages .package .package-top {
      background: #448cbe; }
      .packages .package .package-top .package-icon {
        padding: 50px 15px;
        display: none; }
        .packages .package .package-top .package-icon .icon-wrap {
          display: block;
          margin: 0 auto;
          text-align: center;
          width: 120px;
          height: 120px;
          background: #013c6f;
          border-radius: 100%;
          font-size: 70px;
          line-height: 120px; }
          .packages .package .package-top .package-icon .icon-wrap i.fa {
            color: #fff; }
      .packages .package .package-top .package-title {
        display: block;
        width: 100%;
        text-align: center;
        background: #013c6f; }
        .packages .package .package-top .package-title h2 {
          font-weight: 600; }
      .packages .package .package-top h2, .packages .package .package-top p {
        padding: 10px;
        color: #fff; }
      .packages .package .package-top p.series-description {
        padding: 20px 10px;
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        font-size: 17px; }
    .packages .package.gold-p {
      box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.5);
      margin-top: 25px; }
      .packages .package.gold-p .package-top {
        background: #448cbe;
        position: relative; }
        .packages .package.gold-p .package-top .ribbon-highlight {
          background: #333;
          position: absolute;
          top: -36px;
          left: 0;
          text-align: center;
          width: 100%;
          padding: 0 20px;
          height: 36px;
          line-height: 36px;
          vertical-align: middle;
          border-bottom: 1px solid #423306; }
          .packages .package.gold-p .package-top .ribbon-highlight span {
            color: #fff;
            /*font-weight: 700;*/ }
        .packages .package.gold-p .package-top img {
          border: 3px solid #013c6f; }
        .packages .package.gold-p .package-top .package-title {
          background: #C39C27; }
          .packages .package.gold-p .package-top .package-title h2 {
            color: #423306; }
      .packages .package.gold-p .package-details ul li a {
        color: #448cbe;
        display: inline-block; }
    .packages .package.platinum-p .package-top .package-title, .packages .package.premium-p .package-top .package-title {
      background: #BFC4CA; }
      .packages .package.platinum-p .package-top .package-title h2, .packages .package.premium-p .package-top .package-title h2 {
        color: #333; }
    .packages .package.platinum-p .package-details ul li a, .packages .package.premium-p .package-details ul li a {
      color: #448cbe;
      display: inline-block; }
    .packages .package.silver-p .package-top {
      /*background:$primary_bg-dark;*/ }
      .packages .package.silver-p .package-top .package-title {
        /*background: #5f4713;*/ }
        .packages .package.silver-p .package-top .package-title h2 {

          /*color: #F7CA91;*/ }
    .packages .package.silver-p .package-details ul li a {
      color: #448cbe;
      display: inline-block; }
    .packages .package.signature-p .package-top .package-title {
      background: #b9ce62; }
      .packages .package.signature-p .package-top .package-title h2 {
        color: #333; }
    .packages .package .package-pricing {
      background-color: #333;
      color: #fff;
      padding: 20px 20px 0 20px;
      width: 100%;
      float: left;
      margin-bottom: 0;
      display: none; }
      .packages .package .package-pricing .title {
        font-size: 19px;
        margin: 0 auto 10px auto;
        font-weight: 300; }
        .packages .package .package-pricing .title.photo-fee {
          font-size: 17px;
          border-top: 1px solid #666666;
          padding-top: 12px;
          margin-bottom: 15px; }
      .packages .package .package-pricing .package-price {
        font-size: 28px;
        margin-bottom: 13px;
        font-weight: 400; }
      .packages .package .package-pricing .package-price.florida-pricing {
        font-size: 42px;
        font-weight: 400;
        display: table;
        width: 100%;
        padding-bottom: 9px;
        margin-bottom: 12px; }
        .packages .package .package-pricing .package-price.florida-pricing .package-price-detail {
          display: table-cell;
          vertical-align: middle; }
          .packages .package .package-pricing .package-price.florida-pricing .package-price-detail span.plus-sign {
            font-size: 28px;
            font-weight: 400; }
        .packages .package .package-pricing .package-price.florida-pricing .per-photo {
          display: table-cell;
          vertical-align: middle; }
          .packages .package .package-pricing .package-price.florida-pricing .per-photo span.photo-fee {
            font-size: 19px;
            font-weight: 400;
            display: block;
            border-bottom: 1px solid #666666;
            padding-bottom: 6px;
            margin-bottom: 7px; }
          .packages .package .package-pricing .package-price.florida-pricing .per-photo span.per-photo-text {
            font-size: 17px;
            font-weight: 300;
            display: block; }
      .packages .package .package-pricing a.button {
        margin-bottom: 20px; }
    .packages .package .package-details {
      display: none;
      float: left;
      width: 100%; }
      .packages .package .package-details ul {
        display: inline-block;
        width: 100%; }
        .packages .package .package-details ul li {
          padding: 15px 10px 15px 45px;
          position: relative;
          display: inline-block;
          width: 100%;
          color: #013c6f; }
          .packages .package .package-details ul li.details-title {
            padding: 5px 10px;
            text-align: center;
            background: #013c6f;
            color: #fff;
            text-transform: uppercase;
            font-size: 20px; }
          .packages .package .package-details ul li {
            background: #e6e6e6; }
          .packages .package .package-details ul li span {
            background: #013c6f;
            color: #fff; }
          .packages .package .package-details ul li i.fa-check {
            /*color:$link_color-active;*/
            color: #448cbe;
            font-size: 22px;
            margin-right: 10px;
            position: absolute;
            left: 13px; }
    .packages .package .panel-footer {
      border-top: none;
      border-bottom: none;
      padding: 0; }
      .packages .package .panel-footer .button {
        background: #448cbe;
        margin-bottom: 0;
        /*&.clicked {
                    background:$primary_bg;
                }*/ }
        .packages .package .panel-footer .button:hover {
          background: #013c6f; }

#florida-packages,
#non-florida-packages {
  display: none; }

/* Pulse */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

/* Resource Download Edits */
#resource-download-hide {
  display: none;
  margin-top: 15px; }

.contour.resourcedownload {
  margin-top: 16px; }

p#resource-thank-you {
  margin-top: 13px;
  font-size: 21px;
  line-height: 33px; }

/******************************
-- High Tech Landing Pages --
******************************/
.high-tech-wrap header .top-nav {
  background: #448cbe;
  height: 15px; }

.high-tech-wrap .top-content h1 {
  font-size: 50px;
  line-height: 1em;
  margin: 20px auto;
  font-weight: 400;
  text-transform: uppercase; }

.high-tech-wrap .content-section {
  margin: 40px auto; }
  .high-tech-wrap .content-section ul {
    list-style: disc;
    margin: 20px 0 25px 25px; }
    .high-tech-wrap .content-section ul li {
      font-size: 24px;
      line-height: 1.1em;
      margin: 17px 0;
      color: #448cbe; }
  .high-tech-wrap .content-section form {
    margin-top: 20px; }
    .high-tech-wrap .content-section form input,
    .high-tech-wrap .content-section form button.button {
      max-width: 590px; }
    .high-tech-wrap .content-section form .mktoFieldDescriptor {
      position: relative; }
      .high-tech-wrap .content-section form .mktoFieldDescriptor .mktoErrorMsg {
        position: absolute;
        left: 15px;
        top: -13px;
        font-size: 11px;
        right: 0; }
  .high-tech-wrap .content-section #guide-download-success {
    display: none; }

.high-tech-wrap #footer .main-footer {
  padding: 15px 0 50px; }
  .high-tech-wrap #footer .main-footer span {
    color: #fff;
    font-size: 12px; }
.resource-wrap #guide-download-success {
    display: none; 
}

.resource-wrap.resource-wrap-alt p.contourMessageOnSubmit {
	color:#333333 !important;
}

iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left; }

/* NEW DROPDOWN NAV - Desktop */
nav.top-bar ul li a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s; }

nav.top-bar ul li.has-dropdown {
  position: relative; }
  nav.top-bar ul li.has-dropdown ul.dropdown {
    padding: 0;
    position: absolute;
    top: 67px;
    right: 0;
    /* margin-right: 90px; */
    margin: 0;
    background: #444;
    width: 230px;
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.6); }
    nav.top-bar ul li.has-dropdown ul.dropdown li {
      background: #444;
      display: block;
      color: #fff;
      margin: 0;
      width: 100%;
      text-align: left;
      padding: 0; }
      nav.top-bar ul li.has-dropdown ul.dropdown li:hover {
        background: #333; }
        nav.top-bar ul li.has-dropdown ul.dropdown li:hover a {
          color: #b9ce62; }
      nav.top-bar ul li.has-dropdown ul.dropdown li a {
        font-size: 15px;
        padding: 15px 20px;
        display: inline-block;
        width: 100%; }
  nav.top-bar ul li.has-dropdown > a {
    padding: 17px 15px 43px; }
    nav.top-bar ul li.has-dropdown > a.disabled {
      cursor: default; }
    nav.top-bar ul li.has-dropdown > a:after {
      content: '▼';
      padding-left: 5px;
      color: #808080;
      font-size: 16px; }
  nav.top-bar ul li.has-dropdown:hover > a {
    color: #b9ce62;
    background: #444; }
  nav.top-bar ul li.has-dropdown:hover ul.dropdown {
    display: block;
    opacity: 1;
    visibility: visible; }

/* NEW DROPDOWN NAV - Mobile */
nav#menu ul li.has-dropdown > a {
  margin-left: 0; }
  nav#menu ul li.has-dropdown > a:after {
    content: '▼';
    position: relative;
    margin-right: -17px;
    padding-left: 7px;
    font-size: 15px;
    line-height: 15px;
    vertical-align: 1px; }

nav#menu ul li.has-dropdown > a.disabled {
  cursor: default; }

nav#menu ul li.has-dropdown > ul.dropdown {
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid #013c6f; }
  nav#menu ul li.has-dropdown > ul.dropdown li {
    border-bottom: 1px solid #013c6f; }
    nav#menu ul li.has-dropdown > ul.dropdown li a {
      display: block;
      font-size: 15px;
      color: #ffffff;
      font-weight: 300;
      padding: 7px 20px 7px;
      text-align: center;
      background: #1f699c;
      /*&:before {
                content:'►';
                position:relative;
                margin-left: -17px;
                padding-right: 7px;
                font-size: 12px;
            }*/ }
      nav#menu ul li.has-dropdown > ul.dropdown li a:hover {
        background: #013c6f; }

/*************************
    Gallery Image Page
*************************/
.gallery-page-wrap {
  position: relative; }
  .gallery-page-wrap .row {
    max-width: 90rem; }
  .gallery-page-wrap .gallery-filter-box {
    position: relative;
    height: auto;
    width: 100%;
    top: 0;
    left: 0;
    background: #448cbe;
    /*@media only screen and (min-width: 640px) {*/
    /*}*/ }
    .gallery-page-wrap .gallery-filter-box h3 {
      line-height: 1.2em;
      margin-bottom: 5px;
      margin-top: 15px;
      font-size: 24px;
      padding-bottom: 5px;
      color: #fff; }
    .gallery-page-wrap .gallery-filter-box .filter-wrap {
      padding: 0 0 0;
      position: relative;
      z-index: 10;
      display: inline-block;
      width: 100%; }
    .gallery-page-wrap .gallery-filter-box.filters-fixed {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 9; }
    @media only screen and (max-width: 640px) {
      .gallery-page-wrap .gallery-filter-box select {
        padding: 0 .9rem !important;
        line-height: 35px !important;
        height: 35px !important;
        background-color: #fff; } }
  .gallery-page-wrap .gallery-content {
    position: relative;
    padding-top: 20px; }
    .gallery-page-wrap .gallery-content #galleryList {
      margin-bottom: 60px; }
    .gallery-page-wrap .gallery-content h3 {
      margin-bottom: 15px; }

#galleryList {
  min-height: 800px;
  /*.grid-item {
        cursor:pointer;
        margin-bottom:20px;
        padding:15px;
        height:206px;
        .wrapper {
            margin-top:0;
        }
        &:nth-child(3n + 2) {
            .wrapper {
                margin-top:50px;
            }
        }
    }*/ }
  #galleryList .grid-item {
    cursor: pointer;
    margin-bottom: 20px; }
    #galleryList .grid-item .wrapper {
      /*border: 4px solid #448cbe;*/
      border: 3px solid #333333;
      position: relative;
      transition: all 300ms ease; }
      #galleryList .grid-item .wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0);
        transition: all 300ms ease;
        pointer-events: none; }
      #galleryList .grid-item .wrapper:hover {
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3); }
        #galleryList .grid-item .wrapper:hover:before {
          background: rgba(255, 255, 255, 0.3); }
    #galleryList .grid-item img {
      /*max-height:260px;
            overflow:hidden;*/ }

.dropdown {
  width: 100%;
  height: 50px; }
  @media only screen and (max-width: 640px) {
    .dropdown {
      height: 35px !important;
      margin-bottom: 1rem; } }

.dropdown dd,
.dropdown dt {
  margin: 0px;
  padding: 0px; }

.dropdown ul {
  margin: -1px 0 0 0; }

.dropdown dd {
  position: relative; }

/*.dropdown a,
.dropdown a:visited {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color:rgba(0,0,0,.75);
  font-weight:normal;
  border-style: solid;
    border-width: 1px;
    border-color: #ccc;
}*/
#filters .dropdown a,
#filters .dropdown a:visited {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: normal;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc; }

.dropdown dt a {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.75) !important;
  display: block;
  padding: 5px .9rem !important;
  min-height: 25px;
  width: 100%;
  height: 50px;
  line-height: 45px !important;
  overflow: hidden;
  border: 0;
  text-align: left;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  transition: none; }
  @media only screen and (max-width: 640px) {
    .dropdown dt a {
      padding: 0 .9rem !important;
      line-height: 35px !important;
      height: 35px !important; } }

.multiSel {
  line-height: 1.2; }
  .multiSel span {
    cursor: pointer;
    display: inline-block;
    padding: 0 3px 2px 0;
    font-size: 13px; }

.dropdown dd ul {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #fff;
  display: none;
  left: 0px;
  padding: 5px 15px 5px 15px;
  position: absolute;
  top: 2px;
  width: 100%;
  list-style: none;
  height: 150px;
  overflow: auto;
  z-index: 9; }
  .dropdown dd ul li {
    text-align: left; }
    .dropdown dd ul li label {
      font-size: .9rem; }
    .dropdown dd ul li input[type="checkbox"] {
      height: auto !important;
      margin-bottom: .5rem; }

.dropdown span.value {
  display: none; }

.dropdown dd ul li a {
  padding: 5px;
  display: block; }

.dropdown dd ul li a:hover {
  background-color: #fff; }

/*************************
    Geo Specific LPs
*************************/
.service-icons .box {
  background-color: #b9ce62;
  padding: 15px 0;
  margin-top: 20px; }
  .service-icons .box img {
    max-width: 100px; }
  .service-icons .box p {
    color: #fff; }

.service-icons .end {
  margin-top: 20px; }
  .service-icons .end .box {
    margin-top: 0; }

.local-gallery .columns.medium-3 {
  float: left !important;
  margin-bottom: 20px; }

.local-gallery .columns a img {
  opacity: 1;
  transition: all 300ms ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: calc(100% + .49px); }

.local-gallery .columns a:hover img {
  opacity: 0.7; }

.local-gallery .button {
  display: block;
  margin: 35px auto 0; }

.local-blog .blog-post {
  padding-bottom: 20px; }
  .local-blog .blog-post .blog-image {
    border: 4px solid #b7b7b7;
    display: inline-block; }
    .local-blog .blog-post .blog-image > a {
      float: left; }
  .local-blog .blog-post .content .button {
    height: 45px;
    line-height: 45px;
    width: 50%;
    margin-bottom: 0;
    margin-top: 18px; }
    @media only screen and (max-width: 596px) {
      .local-blog .blog-post .content .button {
        width: 100%; } }
  @media only screen and (max-width: 596px) {
    .local-blog .blog-post .content {
      padding: 10px; } }

.local-blog a.blog {
  margin: 25px auto 0;
  display: block; }

.photo-profile {
  padding: 70px 0 20px; }

.photo-gallery {
  padding-bottom: 20px; }
  .photo-gallery .columns.large-3 {
    float: left !important; }
    .photo-gallery .columns.large-3.gallery-images {
      padding-bottom: 20px; }
      .photo-gallery .columns.large-3.gallery-images a img {
        opacity: 1;
        transition: all 300ms ease;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        width: calc(100% + .49px); }
      .photo-gallery .columns.large-3.gallery-images a:hover img {
        opacity: 0.7; }

.team-section {
  margin-bottom: 10px;
  margin-top: 55px; }
  .team-section.sub {
    margin-top: 0; }
  .team-section h2.section-title {
    margin: 20px 0; }
  .team-section .columns.large-3:last-child {
    float: left; }
  .team-section .columns.large-3 .local-team-member {
    background-color: #448cbe;
    margin-bottom: 20px; }
    .team-section .columns.large-3 .local-team-member a {
      font-size: 18px; }
      .team-section .columns.large-3 .local-team-member a.button {
        margin: 0; }
  .team-section .columns.large-3 .team-member {
    position: relative; }
    .team-section .columns.large-3 .team-member .title {
      position: relative;
      bottom: 2px; }
      @media only screen and (max-width: 1075px) {
        .team-section .columns.large-3 .team-member .title a {
          font-size: 18px; } }
    .team-section .columns.large-3 .team-member p {
      padding: 10px 0; }
  .team-section .photo-bottom {
    margin-top: 50px; }
    @media only screen and (max-width: 596px) {
      .team-section .photo-bottom {
        margin-top: 0; } }
    @media only screen and (max-width: 596px) {
      .team-section .photo-bottom .button-alt {
        height: auto; } }

.bottom-nav {
  margin-bottom: 20px; }
  .bottom-nav h2.section-title {
    margin: 20px auto 20px; }
  .bottom-nav .bottom a {
    width: 50%; }
    @media only screen and (max-width: 596px) {
      .bottom-nav .bottom a {
        width: 100%; } }

.local.photo-profile {
  padding: 35px 0 20px; }
  @media only screen and (max-width: 640px) {
    .local.photo-profile .team-member img {
      max-width: 300px;
      margin: 0 auto; } }

@media only screen and (max-width: 596px) {
  .local h2 {
    padding-bottom: 5px 0; } }

.local p {
  padding-bottom: 10px; }

/******************************
-- High Tech Landing Pages --
******************************/
.high-tech-wrap header .top-nav {
  background: #448cbe;
  height: 15px; }

.high-tech-wrap .top-content h1 {
  font-size: 50px;
  line-height: 1em;
  margin: 20px auto;
  font-weight: 400;
  text-transform: uppercase; }

.high-tech-wrap .content-section {
  margin: 40px auto; }

.high-tech-wrap .content-section ul {
  list-style: disc;
  margin: 20px 0 25px 25px; }

.high-tech-wrap .content-section ul li {
  font-size: 24px;
  line-height: 1.1em;
  margin: 17px 0;
  color: #448cbe; }

.high-tech-wrap .content-section form {
  margin-top: 20px; }

.high-tech-wrap .content-section form input,
.high-tech-wrap .content-section form button.button {
  max-width: 590px; }

.high-tech-wrap .content-section form .mktoFieldDescriptor {
  position: relative; }

.high-tech-wrap .content-section form .mktoFieldDescriptor .mktoErrorMsg {
  position: absolute;
  left: 15px;
  top: -13px;
  font-size: 11px;
  right: 0; }

.high-tech-wrap .content-section #guide-download-success {
  display: none; }

.high-tech-wrap #footer .main-footer {
  padding: 15px 0 50px; }

.high-tech-wrap #footer .main-footer span {
  color: #fff;
  font-size: 12px; }

iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left; }


.grid-wrap ul {
  margin-left: 35px;
  margin-top: 15px;
  margin-bottom: 20px;
  list-style: disc; }
  .grid-wrap ul li {
    margin-bottom: 15px; }




.packages-lp .content-top p {
  line-height: 1.5;
  font-size: 15px; }
.packages-lp .top-content {
  margin: 10px 0 20px 0; }
  .packages-lp .top-content h1 {
    font-size: 45px;
    line-height: 1em;
    margin: 20px auto 0 auto;
    font-weight: 400;
    text-transform: uppercase; }
  .packages-lp .top-content .dark-blue {
    color: #013c6f; }
  .packages-lp .top-content p {
    line-height: 1.5; }
.packages-lp .content-section.packages .img-box {
  border: 1px solid #fff; }
.packages-lp .content-section.packages .content-top .dark-blue {
  color: #013c6f; }
.packages-lp .content-section.packages .bottom-content-form {
  background-color: #013c6f;
  padding: 8px 20px 0 20px;
  margin-top: 18px;
  margin-bottom: 40px; }
  .packages-lp .content-section.packages .bottom-content-form input {
    line-height: 40px !important;
    height: 40px !important;
    margin: 0 0 13px 0; }
  .packages-lp .content-section.packages .bottom-content-form .button, .packages-lp .content-section.packages .bottom-content-form button {
    height: 40px !important;
    line-height: 40px !important; }
  .packages-lp .content-section.packages .bottom-content-form h3 {
    margin: 0;
    color: #fff;
    line-height: 1.3em;
    font-size: 28px;
    font-weight: 400;
    padding-bottom: 0; }
  .packages-lp .content-section.packages .bottom-content-form hr {
    margin: 5px 0; }
  .packages-lp .content-section.packages .bottom-content-form p {
    padding: 0 0 10px 0;
    color: #fff; }
.packages-lp #guide-download-success {
  display: none; }

.gsp-lp .hero-image {
  margin-top: 40px; }

.gsp-lp .package-lead {
  margin: 40px auto; }

.gsp-lp .order {
  text-align: center; }
  .gsp-lp .order .button {
    width: auto;
    font-weight: bold; }

.gsp-lp .package {
  padding: 10px;
  text-align: center; }
  .gsp-lp .package h3 {
    font-weight: bold;
    color: #fff; }
  .gsp-lp .package p {
    color: #fff; }
  @media only screen and (max-width: 596px) {
    .gsp-lp .package {
      cursor: pointer;
      transition: 0.4s; } }

.gsp-lp #packages .order {
  margin-top: 20px; }
  .gsp-lp #packages .order .button {
    width: 100%; }

.gsp-lp .panel {
  border-color: transparent;
  background: transparent;
  border-style: none;
  border-width: 0;
  margin-bottom: 0;
  padding: 1.25rem;
  color: #555;
  max-height:none;}
  .gsp-lp .panel ul li {
    color: #555;
    padding-bottom: 20px; }
  @media only screen and (max-width: 596px) {
    .gsp-lp .panel {
      display: none;
      overflow: hidden; } }

.gsp-lp .silver {
  border: 4px solid #b1adb2; }
  .gsp-lp .silver .package {
    background-color: #b1adb2; }
  .gsp-lp .silver .button {
    background-color: #b1adb2; }
  @media only screen and (max-width: 1024px) {
    .gsp-lp .silver {
      margin: 0 auto;
      width: 50%; } }
  @media only screen and (max-width: 596px) {
    .gsp-lp .silver {
      width: 100%; } }

.gsp-lp .gold {
  border: 4px solid #b9ce62; }
  .gsp-lp .gold .package {
    background-color: #013c6f; }
  .gsp-lp .gold .button {
    background-color: #b9ce62; }
  @media only screen and (max-width: 1024px) {
    .gsp-lp .gold {
      margin: 0 auto;
      width: 50%;
      margin: 20px auto; } }
  @media only screen and (max-width: 596px) {
    .gsp-lp .gold {
      margin: 20px auto;
      width: 100%; } }

.gsp-lp .platinum {
  border: 4px solid #448cbe; }
  .gsp-lp .platinum .package {
    background-color: #448cbe; }
  .gsp-lp .platinum .button {
    width: auto; }
  @media only screen and (max-width: 1024px) {
    .gsp-lp .platinum {
      margin: 0 auto;
      width: 50%; } }
  @media only screen and (max-width: 596px) {
    .gsp-lp .platinum {
      width: 100%; } }

.gsp-lp.works {
  margin: 40px 0;
  background-color: #013c6f;
  padding: 40px 0; }
  .gsp-lp.works h2.section-title {
    margin: 0px auto 40px;
    color: #fff; }
    .gsp-lp.works h2.section-title:after {
      background: #fff; }
  .gsp-lp.works .box {
    text-align: center; }
    .gsp-lp.works .box p {
      color: #fff;
      margin-bottom: 10px;
      font-weight: bold; }
      .gsp-lp.works .box p.number {
        background-color: #fff;
        border-radius: 50%;
        width: 15%;
        text-align: center;
        font-size: 32px;
        margin: 10px auto;
        color: #013c6f;
        font-weight: bold; }
        @media only screen and (max-width: 1024px) {
          .gsp-lp.works .box p.number {
            width: 7%; } }
        @media only screen and (max-width: 596px) {
          .gsp-lp.works .box p.number {
            width: 9%;
            font-size: 28px; } }

.gsp-lp.resource-alt {
  background-color: #b1adb2;
  padding: 40px 0; }
  .gsp-lp.resource-alt h2.section-title {
    margin: 0;
    color: #333333; }
    .gsp-lp.resource-alt h2.section-title:after {
      background: #333333; }
  .gsp-lp.resource-alt p {
    margin: 20px 0; }
  .gsp-lp.resource-alt #guide-download-success {
    display: none; }

.gsp-lp.services {
  margin: 40px 0 60px; }
  .gsp-lp.services h2 {
    margin: 0 auto; }
  .gsp-lp.services .service-icons a:hover p {
    cursor: pointer;
    color: #b9ce62; }
  .gsp-lp.services .service-icons a .box {
    background-color: #013c6f;
    padding: 10px 0; }
    .gsp-lp.services .service-icons a .box img {
      max-width: 100px; }

.gsp-lp.local-gallery h2.section-title {
  margin: 0 auto 20px; }

@media only screen and (max-width: 596px) {
  .gsp-lp.local-gallery .button {
    margin: 0 auto; } }

.gsp-lp.local-gallery img {
  margin-bottom: 25px; }

.gsp-lp.team-section {
  margin-bottom: 40px; }
  .gsp-lp.team-section .local-team-member img {
    /*margin-bottom:10px;*/ }
  .gsp-lp.team-section .local-team-member a {
    color: #fff;
    margin: 0; }
  .gsp-lp.team-section .local-team-member p {
    color: #fff;
    margin: 5px 0; }
  .gsp-lp.team-section .local-team-member .button-content .button {
    height: auto;
    line-height: 32px; }

.gsp-lp.local-blog {
  margin-bottom: 60px; }
  .gsp-lp.local-blog h2.section-title {
    color: #013c6f; }
    .gsp-lp.local-blog h2.section-title:after {
      background: #013c6f; }
  .gsp-lp.local-blog .content p {
    margin: 10px 0 20px; }
  .gsp-lp.local-blog .content a {
    font-size: 18px;
    font-weight: bold;
    color: #013c6f; }

.gsp-lp.cta {
  padding: 40px 0;
  background-color: #013c6f; }
  .gsp-lp.cta h1 {
    color: #fff; }

.submit-button-wrap {
  width: 98%;
  margin: 0 auto; }



/* fade image in after load */
.lazyload,
.lazyloading {
  opacity: 0; }

.loading,
.lazyload,
.lazyloaded,
.image {
  opacity: 1;
  transition: 2s cubic-bezier(0.215, 0.61, 0.355, 1); }

.grid-item .image {
  position: relative;
  padding-bottom: 66.5492958%;
  background: linear-gradient(#f2f2f2 66%, rgba(242, 242, 242, 0)); }
  .grid-item .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }

@-moz-keyframes scaleout {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1);
    opacity: 0; } }
@keyframes scaleout {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1);
    opacity: 0; } }
.image.loading:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  animation: scaleout 1.2s infinite ease-in-out;
  /*mix-blend-mode: soft-light;*/
  background-color: rgba(0, 0, 0, 0.5); }

body.modal-open {
   overflow: hidden;
}

#modal-brokers{
    position:absolute;
}

.reveal-modal #guide-download-success{
    display:none;
}

.reveal-modal .modal-image {
    padding:20px;
}

.reveal-modal .modal-content {
    padding:10px 0;
}


.reveal-modal .close-reveal-modal {
    color: rgba(68,140,190,1);

}

@media only screen and (max-width: 40em){
    .reveal-modal {
        min-height: auto;
    }
}


.packages-lp .content-section.packages .bottom-content-form {
  background-color: #013c6f;
  padding: 8px 20px 0 20px;
  margin-top: 18px;
  margin-bottom: 40px; }
  .packages-lp .content-section.packages .bottom-content-form input {
    line-height: 40px !important;
    height: 40px !important;
    margin: 0 0 13px 0; }
  .packages-lp .content-section.packages .bottom-content-form .button, .packages-lp .content-section.packages .bottom-content-form button {
    height: 40px !important;
    line-height: 40px !important; }
  .packages-lp .content-section.packages .bottom-content-form h3 {
    margin: 0;
    color: #fff;
    line-height: 1.3em;
    font-size: 28px;
    font-weight: 400;
    padding-bottom: 0; }



/* Broker LP */

.broker-lp.lead h1 {
  font-weight: bold;
  color: #013c6f;
  text-transform: uppercase;
  padding: 30px 0;
  font-size: 42px; }

@media (max-width: 63.938em) {
  .broker-lp.lead .intro-img {
    margin-bottom: 20px; } }

.broker-lp.questions .intro {
  margin-bottom: 80px; }

.broker-lp.questions .intro-0, .broker-lp.questions .intro-1, .broker-lp.questions .intro-2 {
  margin-bottom: 80px; }
  @media (max-width: 63.938em) {
    .broker-lp.questions .intro-0, .broker-lp.questions .intro-1, .broker-lp.questions .intro-2 {
      margin-bottom: 0; } }

.broker-lp.questions .card {
  height: 315px;
  background-color: #448cbe;
  padding: 10px;
  margin-bottom: 20px; }
  .broker-lp.questions .card .content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%; }
    .broker-lp.questions .card .content p {
      color: #fff;
      font-weight: bold;
      height: 130px; }
      @media (max-width: 63.938em) {
        .broker-lp.questions .card .content p {
          height: 150px; } }
      @media (max-width: 39.938em) {
        .broker-lp.questions .card .content p {
          height: auto; } }
    .broker-lp.questions .card .content .switches {
      margin-top: 20px; }
      .broker-lp.questions .card .content .switches h4 {
        color: #ffffff; }

.broker-lp.questions .switch.success input:checked ~ .switch-paddle {
  background: #3adb76; }

.broker-lp.questions .switch.alert input:checked ~ .switch-paddle {
  background: #cc4b37; }

.broker-lp.brochure {
  margin-bottom: 60px; }
  .broker-lp.brochure .brochure-content h5 {
    font-size: 24px; }
  .broker-lp.brochure .brochure-content ul {
    list-style: inherit; }
    .broker-lp.brochure .brochure-content ul li {
      margin-left: 20px;
      margin-bottom: 10px;
      font-weight: bold; }
  @media (max-width: 63.938em) {
    .broker-lp.brochure .brochure-content {
      margin-top: 20px; } }
  .broker-lp.brochure .cta {
    margin-top: 25px; }
    .broker-lp.brochure .cta h5 {
      margin-bottom: 10px; }

.broker-lp h5 {
  color: #333333;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 24px; }

.broker-lp .button.lp {
  margin-top: 20px;
  width: 100%;
  font-weight: bold;
  text-align: center;
  margin: 0 auto; }

.broker-lp .subtitle {
  text-transform: uppercase;
  font-weight: 100;
  font-size: 22px; }

.broker-lp .success-stories {
  margin-top: 60px; }
  @media (max-width: 63.938em) {
    .broker-lp .success-stories p {
      font-size: 18px !important; } }

.rounded-social-buttons {
  text-align: center;
  position: absolute;
  top: -15%;
  left: 40%; }

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  /*cursor: pointer;*/
  /*width: 50px;
    height: 50px;*/
  /*border: 0.125rem solid #fff;*/
  padding: 0;
  text-decoration: none;
  text-align: center;
  /*color: #fefefe;*/
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  /*border-radius: 1.6875rem;
    transition: all 0.5s ease;*/
  /*margin-right: 0.25rem;
    margin-bottom: 0.25rem;*/
  margin: 0 auto; }

/*.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}*/
.rounded-social-buttons .social-button.facebook {
  /*background: rgba(68,140,190,1);*/ }

.broker-lp .hero-image  {
    min-height: auto;

}
.broker-lp .hero-image .row {
    position: relative;
    min-height: auto;
    height: 100%;
}

.row.expanded {
  max-width: none; }

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


/*New Zip*/
.new-zip.packages .package {
  text-align: left; }
  .new-zip.packages .package .package-title h2.white {
    color: #ffffff; }
  .new-zip.packages .package .package-series {
    padding: 10px; }
    .new-zip.packages .package .package-series ul {
      list-style: inherit;
      margin-left: 20px; }
/*White Paper Landing Page*/
.high-tech-wrap.white-paper .main-content ul li {
  font-size: 16px;
  line-height: 1.1em;
  margin: 17px 0;
  color: #555; }
  .high-tech-wrap.white-paper .main-content ul li span {
    font-weight: 700 !important; }
/*Updates to Nav*/
@media (max-width: 39.938em) {
  .small-hide {
    display: none; } }

.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s; }
  .accordion i {
    font-size: 18px; }

.panel-nav .active, .accordion:hover {
  background-color: #013c6f; }

.panel {
  padding: 0;
  background-color: #1f699c;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 0;
  border: 0; }
  .panel ul {
    margin-left: 0;
    padding-left: 0; }
    .panel ul li a {
      font-size: 16px !important; }

nav#menu ul li a {
  font-size: 18px; }

nav#menu {
  z-index: 9999999999999999999999;
  overflow: auto; }

/* *******************************
   -----  Important Banner  -----
   ******************************* */

div.important-banner {
	background-color: #b9ce62;
	transition: all 0.3s;
}

div.important-banner:hover {
	background-color: #013C6F;
}

div.important-banner-text p,
div.important-banner-text a {
	padding: 10px 0;
	color: #ffffff !important;
}

div.important-banner-text a {
	text-decoration: none;
	display: block;
}

/* *******************************
   ----  Responsive Iframes  ----
   ******************************* */

div.responsive-iframe-3x2 {
	padding:66.67% 0 0 0;
	position:relative; }

div.responsive-iframe-16x9 {
	padding:56.25% 0 0 0;
	position:relative; }

div.responsive-iframe-3x2 iframe,
div.responsive-iframe-16x9 iframe {
	position:absolute !important;
	top:0 !important;
	left:0 !important;
	width:100% !important;
	height:100% !important; }

/* *******************************
   ---  Background Image Page  ---
   ---  (Not Working)		   ---
   ******************************* */

.page-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 1080px;
  position: relative; }

/* *******************************
   ----  Photog Series Boxes  ----
   ******************************* */

div.silver-series-box {
	border: 3px solid #b1adb2 !important;
}

div.gold-series-box {
	border: 3px solid #b9ce62 !important;
}

div.series-box-2-col {
	margin: 50px 20px 20px;
}

div.series-box h2 {
	margin: -3px 0 0;
	padding: 20px !important;
	color: #ffffff !important;
	text-align: center;
}

div.silver-series-box h2 { 
	background-color: #b1adb2 !important;
}

div.gold-series-box h2 { 
	background-color: #013c6f !important;
}

div.series-box p { 
	text-align: center; 
	height: 150px; 
	margin: 20px 20px 0;
}

div.series-box p.box-pricing { 
	text-align: center;
	margin: 20px 20px 0;
	font-size: 32px;
	color: #448cbe;
}

div.series-box a {
	margin: 50px auto;
	text-align: center;
	width: 300px;
	max-width: 90%;
}

@media only screen and (max-width: 40em) { 
	div.series-box p { 
	height: auto; 
	}
}

/* *******************************
   -------  Custom Styles  -------
   ******************************* */

.bigger-better-list li {
	font-size: 20px !important;
	font-weight: 300;
	line-height: 1.3em;
	margin-bottom: 20px;
}

.bigger-better-button {
	max-width: 600px !important;
	margin: 40px auto;
}

.better-button {
	max-width: 400px !important;
	margin: 40px auto; 
}

.bigger-better-button a.button {
	font-size: 2rem !important;
	height: 4rem !important;
	line-height: 4rem !important;
	font-weight: 500 !important;
}

a.button-alt-2 {
	color: #448cbe !important;
	background-color: transparent !important;
	border: 1px solid #448cbe !important;
}

div.slider-button {
	max-width:400px !important;
	margin: 20px auto !important;
}

div.slider-button a {
	border: 1px solid #FFFFFF !important;
	font-weight: 700 !important;
}

a.slider-link {
	color: #FFFFFF !important;
}

/* *******************************
   ------  Miami Photog LP  ------
   ******************************* */

.img-square-300 {
	max-width: 300px !important;
	margin: 20px auto 10px;
}

.img-square-300 img {
	width: 300px !important; 
	height: 300px !important; 
	object-fit: cover !important; 
	object-position: 50% 0px !important; 
}

.photog-info {
	margin: 10px auto 20px !important;
	max-width: 300px;
}

.photog-info h2 {
	text-align: center;
}

.photog-info p {
	font-weight: 400 !important;
	text-align: left;
}

/* *******************************
   ------  10 Reasons LP  ------
   ******************************* */

div.lp-top-blue-box {
	margin-top: 40px !important;
}

div.lp-blue-box {
	padding: 20px !important;
	margin: 20px 0 !important;
}

div.lp-light-blue-box {
	background-color: #448cbe !important;
	min-height: 13rem !important;
}

div.lp-dark-blue-box {
	background-color: #013C6F !important;
}

.lp-blue-box h2 {
	display: inline !important;
	color: #FFFFFF !important;
	font-weight: 700 !important;
}

.lp-blue-box h2 span {
	font-weight: 400 !important;
}

div.numbered-circle {
	margin-right: 10px !important;
	display: inline-block !important;
    height: 4rem !important;
    width: 4rem !important;
    line-height: 4rem !important;

    -moz-border-radius: 2rem !important; /* or 50% */
    border-radius: 2rem !important; /* or 50% */

	border: 2px solid #FFFFFF !important;
    background-color: transparent !important;
    color: #FFFFFF !important;
    text-align: center !important;
    font-size: 2rem !important;
	font-weight: 700 !important;
}

/* *******************************
   --------  Gold FP LP  --------
   ******************************* */

h1.lp-gold-fp {
	font-size: 5rem !important;
}

h2.lp-gold-fp {
	font-size: 2.5rem !important;
}

p.lp-gold-fp {
	font-size: 1.5rem;
}

p.lp-gold-fp strong {
	color: #448cbe !important;
	font-weight: 700 !important;
}

p.lp-slider-price {
	margin: 20px 0 !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
	font-size: 2rem !important;
}

p.lp-slider-price span {
	font-weight: 400 !important;
	font-size: 1.25rem !important;
	color: #B8CC5F !important;
}

div.slider-text p.lp-gold-fp {
	margin-bottom: 40px !important;
	line-height: 1.25 !important;
}

div.slider-text {
	margin-top: 20px !important;
}

div.lp-gold-fp-ifp-sample {
	margin:20px auto 40px;
	max-width: 1000px;
}

span.lp-slider-h2 {
	font-size: 2.5rem !important;
	font-weight:700 !important;
	display: block;
	text-align: center;
}

/* *******************************
   --------  Footer css  --------
   ******************************* */

.visible-xs {
	display: none;
}
@media only screen and (max-width: 420px) {
	.visible-xs {
		display: block;
	}
}