/* mixin usage */
/*--------------------------------
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
.header__top ul, .social, .navbar__nav, .sub-menu, .slick-dots, .news .post ul, .follow__list, .footer ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: block;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

html {
  box-sizing: border-box; }

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

* {
  max-height: 1000000px; }

body {
  color: #222;
  background: #fff;
  font: 16px/1.2 "hero-new", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  
body {
  display: flex; }
  @media (min-width: 768px) {
    body {
      line-height: 1.5; }
  }
  body.nav-active .navbar__nav {
    opacity: 1;
    visibility: visible; }

#wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding: 180px 0 0; }
  @media (min-width: 768px) {
    #wrapper {
      padding: 91px 0 0; } }
  @media (min-width: 1024px) {
    #wrapper {
      padding: 151px 0 0; } }
  @media (min-width: 1440px) {
    #wrapper {
      padding: 109px 0 0; } }

h1 {
  text-transform: uppercase;
  color: #008aa7; }
  @media (min-width: 1024px) {
    h1 {
      font-size: 56px;
      line-height: 1.18;
      letter-spacing: 3.8px; } }

h2 {
  font-weight: 600;
  color: #008aa7; }
  @media (min-width: 768px) {
    h2 {
      font-size: 32px; } }

h3 {
  color: #008aa7; }

a {
  transition: color 0.15s ease-in-out;
  text-decoration: none; }

.btn {
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  min-width: 165px;
  padding: 10px 12px;
  border: 2px solid #fff;
  border-radius: 2em;
  letter-spacing: .8px; }
  @media (min-width: 1024px) {
    .btn {
      min-width: 186px;
      padding: 12px 12px; } }
  .btn:hover {
    background: #fff;
    color: #008aa7; }
  .btn--yellow {
    background: #edaf18;
    border-color: #edaf18; }
    .btn--yellow:hover {
      border-color: #daa011;
      background: #daa011;
      color: #fff; }
  .btn--green {
    background: #67c894;
    border-color: #67c894; }
    .btn--green:hover {
      border-color: #54c187;
      background: #54c187;
      color: #fff; }

.container {
  max-width: 1406px;
  margin: 0 auto;
  padding: 0 15px; }

main {
  flex-grow: 1; }

button {
  background: transparent;
  border: none;
  outline: none; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: top; }

.gm-style img {
  max-width: none; }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  font-family: "hero-new", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 700;
  margin: 1.5em 0 1.5em 0;
  color: #222; }

h1, .h1 {
  font-size: 28px; }

h2, .h2 {
  font-size: 26px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 20px; }

h5, .h5 {
  font-size: 18px; }

h6, .h6 {
  font-size: 16px; }

p {
  margin: 0 0 1em; }

a {
  color: #008aa7; }
  a:hover, a:focus {
    text-decoration: none; }

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none; }

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  border: 1px solid #222;
  padding: 0.4em 0.7em; }
  input[type='text']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='search']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #222; }
  input[type='text']::-moz-placeholder,
  input[type='tel']::-moz-placeholder,
  input[type='email']::-moz-placeholder,
  input[type='search']::-moz-placeholder,
  input[type='password']::-moz-placeholder,
  textarea::-moz-placeholder {
    opacity: 1;
    color: #222; }
  input[type='text']:-moz-placeholder,
  input[type='tel']:-moz-placeholder,
  input[type='email']:-moz-placeholder,
  input[type='search']:-moz-placeholder,
  input[type='password']:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #222; }
  input[type='text']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='search']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #222; }
  input[type='text'].placeholder,
  input[type='tel'].placeholder,
  input[type='email'].placeholder,
  input[type='search'].placeholder,
  input[type='password'].placeholder,
  textarea.placeholder {
    color: #222; }

select {
  -webkit-border-radius: 0; }

textarea {
  resize: vertical;
  vertical-align: top; }

button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
  margin: 20px 0px; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.noclick {
  cursor: default;
  text-decoration: none;
}



@font-face {
font-family: 'icomoon';
src: url(./icomoon.eot?oopzsb);
src: url(./icomoon.eot?oopzsb#iefix) format("embedded-opentype"), url(./icomoon.ttf?oopzsb) format("truetype"), url(./icomoon.woff?oopzsb) format("woff"), url(./icomoon.svg?oopzsb#icomoon) format("svg");
font-weight: normal;
font-style: normal;
font-display: block; }

[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }

.icon-after-hours:before {
  content: "\e900";
}
.icon-computer:before {
  content: "\e901";
}
.icon-consulting:before {
  content: "\e902";
}
.icon-customer:before {
  content: "\e903";
}
.icon-email:before {
  content: "\e904";
}
.icon-facebook:before {
  content: "\e905";
}
.icon-fiber:before {
  content: "\e906";
}
.icon-hosted:before {
  content: "\e907";
}
.icon-knowledgeable:before {
  content: "\e908";
}
.icon-managed:before {
  content: "\e909";
}
.icon-instagram:before {
  content: "\e90a";
}
.icon-managed-it:before {
  content: "\e90b";
}
.icon-no-hidden-fees:before {
  content: "\e90c";
}
.icon-same-day:before {
  content: "\e90d";
}
.icon-search:before {
  content: "\e90e";
}
.icon-tel:before {
  content: "\e90f";
}
.icon-voip:before {
  content: "\e910";
}
.icon-wireless:before {
  content: "\e911";
}
.icon-down-chevron:before {
  content: "\e912";
}
.icon-arrow-right:before {
  content: "\e913";
}
.icon-plansandpricing:before {
  content: "\e914";
}
.icon-serviceareas:before {
  content: "\e915";
}
.icon-signupnow:before {
  content: "\e916";
}
.icon-landlordauthorizationform:before {
  content: "\e917";
}
.icon-DataSecurity-Icon:before {
  content: "\e918";
}
.icon-Cost-effective-Icon:before {
  content: "\e919";
}
.icon-PeaceOfMind-Icon:before {
  content: "\e91a";
}
.icon-AdvancedRingGroups-Icon:before {
  content: "\e91b";
}
.icon-Auto-attendent-Icon:before {
  content: "\e91c";
}
.icon-BusinessBasic-Icon:before {
  content: "\e91d";
}
.icon-BusinessCorporate-Icon:before {
  content: "\e91e";
}
.icon-BusinessEnterprise-Icon:before {
  content: "\e91f";
}
.icon-BusinessProfessional-Icon:before {
  content: "\e920";
}
.icon-CallerID-Icon:before {
  content: "\e921";
}
.icon-EmergencyE911Service-Icon:before {
  content: "\e922";
}
.icon-FaxCapability-Icon:before {
  content: "\e923";
}
.icon-LowLatencyNetwork-Icon:before {
  content: "\e924";
}
.icon-MountainsPlan-Icon:before {
  content: "\e925";
}
.icon-LocallyOwnedAndOperated-Icon:before {
  content: "\e926";
}
.icon-NetworkUptime-Icon:before {
  content: "\e927";
}
.icon-Residential1GB-Icon:before {
  content: "\e928";
}
.icon-Residential250MB-Icon:before {
  content: "\e929";
}
.icon-Residential500MB-Icon:before {
  content: "\e92a";
}
.icon-ResidentialBasic-Icon:before {
  content: "\e92b";
}
.icon-ResidentialPremium-Icon:before {
  content: "\e92c";
}
.icon-ResidentialPremiumPlus-Icon:before {
  content: "\e92d";
}
.icon-Scalable-Icon:before {
  content: "\e92e";
}
.icon-Time-basedRouting-Icon:before {
  content: "\e92f";
}
.icon-TrueLocalNumbers-Icon:before {
  content: "\e930";
}
.icon-TypicalAnalogPhoneOrPhoneSystemSupport-Icon:before {
  content: "\e931";
}
.icon-UnlimitedLocalAndLongDistanceCalling-Icon:before {
  content: "\e932";
}
.icon-VirtualFax-Icon:before {
  content: "\e933";
}
.icon-VoicemailToEmail-Icon:before {
  content: "\e934";
}

.header {
  transition: background 0.15s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  flex-shrink: 0;
  z-index: 999; }
  .header__top {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 6px 15px;
    background: #67c894;
    color: #fff; }
    @media (min-width: 768px) {
      .header__top {
        font-size: 14px;
        letter-spacing: -.6px; } 
	}
    @media (min-width: 1024px) {
      .header__top {
        padding: 6px 30px; } 
	}
    .header__top strong {
      margin: 0 10px 0 0; }
    .header__top ul {
      display: flex;
      flex-wrap: wrap;
      font-weight: 500;
      margin: 0 -8px; }
      @media (min-width: 768px) {
        .header__top ul {
          margin: 0 -12px; }
	  }
      .header__top ul li {
        position: relative;
        padding: 0 8px; }
        @media (min-width: 768px) {
          .header__top ul li {
            padding: 0 12px; }
		}
        .header__top ul li:after {
          content: '';
          position: absolute;
          top: 2px;
          right: 0;
          bottom: 3px;
          width: 2px;
          background: #fff; }
        .header__top ul li:last-child:after {
          display: none; }
      .header__top ul a {
        color: #fff;
        text-transform: uppercase; }
        .header__top ul a:hover {
          color: #edaf18; }
  .header__main {
    position: relative;
    padding: 6px 0;
    background: #008aa7;
    color: #fff; }
    .header__main .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 100%; }
  .header .right-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 25px 0 15px; }
    @media (min-width: 768px) {
      .header .right-block {
        justify-content: flex-end;
        padding: 0 43px 0 0;
        width: auto; } }
    @media (min-width: 1024px) {
      .header .right-block {
        padding: 0 0 15px;
        width: 100%; }
	}
    @media (min-width: 1540px) {
      .header .right-block {
        width: auto;
        max-width: 560px;
        padding: 0; }
	}
  .header .link-tel {
    color: #fff; }
    @media (min-width: 768px) {
      .header .link-tel {
        letter-spacing: .7px; }
	}
    .header .link-tel:hover {
      color: #edaf18; }
    .header .link-tel i {
      margin: 0 5px;
      font-size: 14px; }
  .header form {
    position: relative;
    width: 100%;
    margin: 10px 0 0; }
    @media (min-width: 768px) {
      .header form {
        width: 201px;
        margin: 0; }
	}
    .header form input[type="search"] {
      font-size: 12px;
      color: #a3a3a3;
      background: #fff;
      border: none;
      height: 27px;
      outline: none;
      width: 100%;
      border-radius: 2em;
      padding: 4px 35px 4px 18px; }
      .header form input[type="search"]::-webkit-input-placeholder {
        color: #a3a3a3; }
      .header form input[type="search"]::-moz-placeholder {
        opacity: 1;
        color: #a3a3a3; }
      .header form input[type="search"]:-moz-placeholder {
        color: #a3a3a3; }
      .header form input[type="search"]:-ms-input-placeholder {
        color: #a3a3a3; }
      .header form input[type="search"].placeholder {
        color: #a3a3a3; }
    .header form button {
      position: absolute;
      top: 3px;
      right: 10px;
      color: #67c894; }
  .header .social {
    position: relative;
    padding-left: 15px; }
    @media (min-width: 768px) {
      .header .social {
        padding: 0 13px 0 15px; } }
    @media (min-width: 1024px) {
      .header .social {
        padding: 0 21px 0 15px; }
	}
    .header .social:before {
      content: '';
      position: absolute;
      top: -5px;
      left: 10px;
      bottom: 0;
      width: 2px;
      background: #67c894; }

/* Slick slider styles */
.slick-slider {
  position: relative;
  display: block;
  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; }

.social {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap; }
  .social li {
    padding: 0 5px; }
  .social a {
    color: #fff; }
    .social a.icon-email {
      font-size: 12px; }
    .social a:hover {
      color: #edaf18; }

@media (min-width: 1024px) {
  .navbar {
    max-width: 740px; }
}

.navbar__nav {
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  font-weight: 600;
  letter-spacing: .9px; }
  @media (min-width: 1024px) {
    .navbar__nav {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -25px; }
  }
  @media (max-width: 1023px) {
    .navbar__nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #008aa7;
      opacity: 0;
      visibility: hidden;
      padding: 15px; }
  }
  .navbar__nav > li {
    position: relative;
    padding: 10px 0; }
    @media (min-width: 1024px) {
      .navbar__nav > li {
        padding: 0 25px; }
	}
    .navbar__nav > li:hover .sub-menu {
      display: block; }
      @media (min-width: 768px) {
        .navbar__nav > li:hover .sub-menu {
          visibility: visible;
          opacity: 1; }
	  }
    .navbar__nav > li:hover > a {
      color: #edaf18; }
    .navbar__nav > li a {
      position: relative;
      text-transform: uppercase;
      color: #fff; }
      .navbar__nav > li a:only-child:after {
        display: none; }
      .navbar__nav > li a:after {
        content: "\E912";
        position: absolute;
        top: 9px;
        right: -20px;
        font-size: 4px;
        color: #67c894;
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: 700;
        font-variant: normal;
        text-transform: none;
        line-height: 1; }
      .navbar__nav > li a:hover {
        color: #edaf18; }

.logo {
  display: block;
  width: 180px; }
  @media (min-width: 1024px) {
    .logo {
      width: 247px; }
  }
  @media (min-width: 1540px) {
    .logo {
      margin: 0 0 0 94px; }
  }

.sub-menu {
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  display: none;
  padding: 0 0 7px;
  z-index: 99; }
  @media (min-width: 1024px) {
    .sub-menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      z-index: 99;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      font-size: 13px;
      line-height: 1.1;
      padding: 35px 0 9px;
      background: #008aa7; }
  }
  .sub-menu a {
    transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
    display: block;
    color: #fff;
    padding: 7px 12px;
    border: none;
		}
    .sub-menu a:hover {
      color: #edaf18; }
    @media (min-width: 1024px) {
      .sub-menu a {
        padding: 7px 24px; }
	}

.nav-opener {
  position: absolute;
  top: 15px;
  right: 8px;
  width: 42px;
  height: 37px;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none; }
  @media (min-width: 768px) {
    .nav-opener {
      top: 11px; }
  }
  @media (min-width: 1024px) {
    .nav-opener {
      display: none; }
  }
  .nav-opener:before, .nav-opener:after,
  .nav-opener span {
    background: #67c894;
    position: absolute;
    top: 19px;
    left: 20%;
    right: 20%;
    height: 3px;
    margin-top: -2px;
    transition: all 0.2s linear; }
  .nav-opener:before, .nav-opener:after {
    content: '';
    top: 10px; }
  .nav-opener:after {
    top: 28px; }
  .nav-active .nav-opener:before, .nav-active .nav-opener:after {
    transform: rotate(45deg);
    top: 18px;
    left: 15%;
    right: 15%; }
  .nav-active .nav-opener span {
    opacity: 0; }
  .nav-active .nav-opener:after {
    transform: rotate(-45deg); }

.resize-active * {
  transition: none !important; }



.hero {
  position: relative; }
  .hero__slide {
    position: relative;
    outline: none; }
    .hero__slide:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, #002e06 0%, #00162e 100%);
      opacity: .38; }
  .hero .bg-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat; }
  .hero__holder {
    position: relative;
    font-size: 18px;
    line-height: 1.17;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    z-index: 9;
    padding: 30px 15px;
    letter-spacing: -.7px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 540px; }
    @media (min-width: 768px) {
      .hero__holder {
        padding: 50px 15px;
        font-size: 20px;
        max-width: 640px;
        min-height: 600px; }
	}
    @media (min-width: 1024px) {
      .hero__holder {
        max-width: 820px;
        font-size: 24px; }
	}
    @media (min-width: 1200px) {
      .hero__holder {
        max-width: 1010px; }
	}
    @media (min-width: 1440px) {
      .hero__holder {
        max-width: 1120px; }
	}
    .hero__holder:before {
      content: '';
      height: inherit;
      font-size: 0; }
    .hero__holder h1 {
      color: #fff;
      margin: 0 0 6px; }
      @media (min-width: 768px) {
        .hero__holder h1 {
          font-size: 40px; }
	  }
      @media (min-width: 1024px) {
        .hero__holder h1 {
          font-size: 45px; }
	  }
      @media (min-width: 1200px) {
        .hero__holder h1 {
          font-size: 56px; }
	  }
    .hero__holder p {
      margin: 0 0 36px; }
    .hero__holder .btn {
      min-width: 215px;
      letter-spacing: .4px;
      padding: 12px; }
      @media (min-width: 768px) {
        .hero__holder .btn {
          min-width: 242px;
          letter-spacing: .8px;
          padding: 15px 12px; }
	  }
  .hero .slick-list,
  .hero .slick-track {
    transform: none !important;
    z-index: 0; }
  .hero .slick-prev,
  .hero .slick-next {
    display: none !important; }
    @media (min-width: 768px) {
      .hero .slick-prev,
      .hero .slick-next {
        display: flex !important;
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%); }
	}
    @media (min-width: 1024px) {
      .hero .slick-prev,
      .hero .slick-next {
        left: 25px; }
	}
  .hero .slick-next {
    left: auto;
    right: 15px; }
    @media (min-width: 1024px) {
      .hero .slick-next {
        right: 25px; }
	}
  .hero .slick-dots {
    bottom: 0; }
    @media (min-width: 768px) {
      .hero .slick-dots {
        bottom: 66px; }
	}

.hero__bg_interior {
    position: relative;
    min-height: 138px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
	}
	
	.hero_title
	{
		position:absolute;
		top: 50%; 
        transform: translateY(-50%);
		left: 50%; 
        transform: translateX(-50%);
		margin: auto;
		text-align: center;
	}
	
	.hero_title h1
	{
		vertical-align: middle;
		color:#fff;
		font-size:36px;
	}

	@media (min-width: 768px) {
		.hero__bg_interior {
			height: 338px;
		}
	}

	@media (min-width: 1024px) {
		.hero__bg_interior {
			height: 338px;
		}
	}
/* .text-wrap */
.default-page
{
	margin:20px 0px 40px 0px;
}


.slick-prev,
.slick-next {
  transition: color 0.15s ease-in-out, background 0.15s ease-in-out;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 99;
  padding: 0;
  color: #fff; }
  @media (min-width: 1024px) {
    .slick-prev,
    .slick-next {
      width: 69px;
      height: 69px;
      font-size: 25px; } }
  .slick-prev:hover,
  .slick-next:hover {
    background: #fff;
    color: #008aa7; }
  .slick-prev:after,
  .slick-next:after {
    content: "\E913";
    font-family: 'icomoon' !important; }

.slick-prev:after {
  transform: rotate(180deg); }

.slick-dots {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 -5px; }
  .slick-dots li {
    padding: 0 5px; }
    .slick-dots li.slick-active button {
      background: #fff; }
  .slick-dots button {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    text-indent: -9999px; }

.started {
  position: relative;
  z-index: 99; }
  .started__row {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    background: #fff; }
    @media (min-width: 768px) {
      .started__row {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        max-width: 848px;
        border-radius: 5px;
        top: -73px;
        left: 50%;
        transform: translateX(-50%); } }
  .started h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    background: #67c894;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    letter-spacing: 1.8px;
    margin: 0; }
    @media (min-width: 768px) {
      .started h2 {
        display: flex;
        align-items: center;
        padding: 32px 20px;
        width: 182px; } }
  .started__text {
    padding: 25px 15px; }
    @media (min-width: 768px) {
      .started__text {
        width: calc(100% - 182px);
        padding: 15px 30px; } }
    @media (min-width: 1024px) {
      .started__text {
        padding: 27px 75px 0 30px; } }
  .started__title {
    display: block;
    font-size: 22px;
    color: #008aa7;
    text-align: center;
    margin: 0 0 12px; }
  .started form {
    position: relative; }
    .started form input[type='text'],
    .started form input[type='tel'],
    .started form input[type='email'],
    .started form input[type='search'],
    .started form input[type='password'],
    .started form input[type='url'],
    .started form input[type='date'],
    .started form textarea {
      font-size: 14px;
      height: 47px;
      border: 1px solid #dfdfdf;
      background: #efefef;
      color: #a3a3a3;
      width: 100%;
      border-radius: 2em;
      outline: none;
      padding: 5px 144px 5px 30px; }
      .started form input[type='text']::-webkit-input-placeholder,
      .started form input[type='tel']::-webkit-input-placeholder,
      .started form input[type='email']::-webkit-input-placeholder,
      .started form input[type='search']::-webkit-input-placeholder,
      .started form input[type='password']::-webkit-input-placeholder,
      .started form input[type='url']::-webkit-input-placeholder,
      .started form input[type='date']::-webkit-input-placeholder,
      .started form textarea::-webkit-input-placeholder {
        color: #a3a3a3; }
      .started form input[type='text']::-moz-placeholder,
      .started form input[type='tel']::-moz-placeholder,
      .started form input[type='email']::-moz-placeholder,
      .started form input[type='search']::-moz-placeholder,
      .started form input[type='password']::-moz-placeholder,
      .started form input[type='url']::-moz-placeholder,
      .started form input[type='date']::-moz-placeholder,
      .started form textarea::-moz-placeholder {
        opacity: 1;
        color: #a3a3a3; }
      .started form input[type='text']:-moz-placeholder,
      .started form input[type='tel']:-moz-placeholder,
      .started form input[type='email']:-moz-placeholder,
      .started form input[type='search']:-moz-placeholder,
      .started form input[type='password']:-moz-placeholder,
      .started form input[type='url']:-moz-placeholder,
      .started form input[type='date']:-moz-placeholder,
      .started form textarea:-moz-placeholder {
        color: #a3a3a3; }
      .started form input[type='text']:-ms-input-placeholder,
      .started form input[type='tel']:-ms-input-placeholder,
      .started form input[type='email']:-ms-input-placeholder,
      .started form input[type='search']:-ms-input-placeholder,
      .started form input[type='password']:-ms-input-placeholder,
      .started form input[type='url']:-ms-input-placeholder,
      .started form input[type='date']:-ms-input-placeholder,
      .started form textarea:-ms-input-placeholder {
        color: #a3a3a3; }
      .started form input[type='text'].placeholder,
      .started form input[type='tel'].placeholder,
      .started form input[type='email'].placeholder,
      .started form input[type='search'].placeholder,
      .started form input[type='password'].placeholder,
      .started form input[type='url'].placeholder,
      .started form input[type='date'].placeholder,
      .started form textarea.placeholder {
        color: #a3a3a3; }
    .started form input[type="submit"],
    .started form button {
      transition: background 0.15s ease-in-out;
      font-size: 14px;
      font-weight: 600;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      background: #67c894;
      color: #fff;
      border: none;
      text-transform: uppercase;
      border-radius: 0 2em 2em 0;
      outline: none;
      padding: 5px 37px 5px 29px; }
      .started form input[type="submit"]:hover,
      .started form button:hover {
        background: #54c187; }

.why {
  position: relative; }
  .why__row {
    display: flex;
    flex-wrap: wrap; }
  .why__col {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #efefef;
    min-height: 472px;
    display: flex;
    align-items: flex-start;
    overflow: hidden; }
    @media (min-width: 1024px) {
      .why__col {
        width: 25%; } }
    .why__col img {
      transition: transform 0.15s ease-in-out;
      position: absolute;
      left: 50%;
      transform: translateX(-50%) scale(1);
      max-width: none; }
      .why__col img:hover {
        transform: translateX(-50%) scale(1.1); }
    .why__col--left img {
      bottom: -37px; }
    .why__col--right img {
      bottom: -19px;
      margin: 0 0 0 -23px; }
  .why__info {
    width: 100%;
    text-align: center;
    padding: 80px 65px 30px; }
    @media (max-width: 1023px) {
      .why__info {
        padding-top: 30px !important;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (min-width: 768px) {
      .why__info {
        letter-spacing: -.5px; } }
    @media (min-width: 1024px) {
      .why__info {
        padding: 80px 15px 30px;
        width: 50%; } }
    @media (min-width: 1200px) {
      .why__info {
        padding: 80px 65px 30px; } }
    .why__info h4 {
      font-size: 18px;
      color: #67c894;
      font-weight: 400;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin: 0 0 4px; }
    .why__info blockquote {
      font-size: 24px;
      line-height: 1.1875;
      font-weight: 600;
      max-width: 760px;
      margin: 0 auto;
      padding: 0;
      color: #008aa7;
      letter-spacing: 1.4px; }
      @media (min-width: 1024px) {
        .why__info blockquote {
          font-size: 28px; } }
      @media (min-width: 1200px) {
        .why__info blockquote {
          font-size: 32px; } }
      .why__info blockquote p {
        font-weight: 600;
        margin: 0 0 18px; }
        @media (min-width: 1200px) {
          .why__info blockquote p {
            margin: 0 0 32px; } }
    .why__info p {
      font-weight: 300;
      margin: 0 0 20px; }
      @media (min-width: 768px) {
        .why__info p {
          margin: 0 0 40px; } }
      .why__info p strong {
        font-weight: 400; }
  .why .btn {
    padding: 12px 12px; }

.quicklinks .row {
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  .quicklinks .row:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./7c55d177a26de4f3d1afd8c337414fde.svg);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .2;
    pointer-events: none; }


@media (max-width: 768px) {
  .quicklinks .col, .quicklinks .col-2 {
    display: flex;
    width: 100%; }
.quicklinks .col-3 {
    display: flex;
    width: 100%; }
}


@media (min-width: 769px) {
  .quicklinks .col {
    display: flex;
	width: 25%; }
  .quicklinks .col-1 {
    display: flex; width: 100% !important; }
  .quicklinks .col-2 {
    display: flex; width: 50% !important; }	
	.quicklinks .col-3 {
    display: flex; width: 33.33% !important; }	
}

.quicklinks__box {
  position: relative;
  padding: 30px 15px;
  text-align: center;
  color: #fff; }
  @media (min-width: 768px) {
    .quicklinks__box {
      padding: 25px 15px 75px; } }
  @media (min-width: 1200px) {
    .quicklinks__box {
      padding: 37px 15px 97px; } }
  @media (min-width: 1440px) {
    .quicklinks__box {
      padding: 37px 45px 97px; } }
  .quicklinks__box:hover .quicklinks__box-bg {
    filter: brightness(80%); }
  .quicklinks__box * {
    position: relative;
    z-index: 10; }
  .quicklinks__box i {
    display: block;
    font-size: 32px;
    margin: 0 0 7px; }
    @media (min-width: 768px) {
      .quicklinks__box i {
        font-size: 42px; } }
  .quicklinks__box h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px; }
    @media (min-width: 1200px) {
      .quicklinks__box h3 {
        font-size: 24px;
        letter-spacing: .6px;
        margin: 0 0 17px; } }
    @media (min-width: 1440px) {
      .quicklinks__box h3 {
        letter-spacing: 1.2px; } }
  @media (min-width: 768px) {
    .quicklinks__box .btn {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%); } }
  @media (min-width: 1200px) {
    .quicklinks__box .btn {
      bottom: 37px; } }

.quicklinks__box-bg {
  transition: filter 0.15s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }

.subscribe {
  position: relative;
  padding: 54px 0 45px;
  background-color: #efefef; }
  @media (min-width: 768px) {
    .subscribe {
      min-height: 589px;
      padding: 54px 0 32px; } }
  .subscribe__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .25;
    filter: grayscale(100%); }
    .subscribe__bg:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9;
      background: linear-gradient(to bottom, rgba(239, 239, 239, 0.67) 0%, rgba(239, 239, 239, 0) 100%); }
  .subscribe .container {
    position: relative;
    max-width: 1406px; }
  .subscribe h4 {
    font-size: 18px;
    font-weight: 400;
    color: #67c894;
    text-align: center;
    letter-spacing: .4px;
    margin: 0; }
    @media (min-width: 768px) {
      .subscribe h4 {
        letter-spacing: .8px; } }
  .subscribe h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #008aa7;
    letter-spacing: .6px; }
    @media (min-width: 768px) {
      .subscribe h2 {
        font-size: 32px;
        letter-spacing: 1.1px; } }
  .subscribe__box {
    position: relative;
    background: #fff;
    color: #222222;
    text-align: center;
    border-radius: 5px;
    padding: 47px 15px 34px; }
    @media (min-width: 768px) {
      .subscribe__box {
        padding: 47px 30px 34px; } }
    @media (min-width: 1200px) {
      .subscribe__box {
        padding: 47px 60px 34px; } }
    .subscribe__box:hover .subscribe__icon {
      background: #00758e; }
    .subscribe__box h3 {
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin: 0 0 17px;
      color: #008aa7; }
    .subscribe__box--light-green:hover .subscribe__icon {
      background: #5eb13f; }
    .subscribe__box--light-green .subscribe__icon {
      background: #6abf4b; }
    .subscribe__box--light-green h3 {
      color: #6abf4b; }
    .subscribe__box--light-green .dot {
      color: #6abf4b; }
    .subscribe__box--light-green .subscribe__author {
      color: #6abf4b; }
    .subscribe__box--green:hover .subscribe__icon {
      background: #54c187; }
    .subscribe__box--green .subscribe__icon {
      background: #67c894; }
    .subscribe__box--green .dot {
      color: #67c894; }
    .subscribe__box--green h3 {
      color: #67c894; }
    .subscribe__box--green .subscribe__author {
      color: #67c894; }
	  
	.subscribe__box--orange:hover .subscribe__icon {
      background: #dd6c00; }
    .subscribe__box--orange .subscribe__icon {
      background: #e87200; }
    .subscribe__box--orange .dot {
      color: #e87200; }
    .subscribe__box--orange h3 {
      color: #e87200; }
    .subscribe__box--orange .subscribe__author {
      color: #e87200; }  
	  
  .subscribe .dot {
    color: #008aa7;
    font-weight: 600; }
  .subscribe__slider {
    padding: 32px 0 36px;
    position: static; }
    .subscribe__slider .slick-list {
      padding: 39px 0 0;
      margin: -39px -12px 0; }
    .subscribe__slider .slick-track {
      display: flex; }
  .subscribe .slick-initialized .slick-slide {
    display: flex; }
  .subscribe__slide {
    display: flex;
    float: none;
    min-height: auto;
    height: auto;
    outline: none;
    padding: 0 12px; }
  .subscribe__icon {
    transition: background 0.15s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 78px;
    font-size: 42px;
    border-radius: 50%;
    background: #008aa7;
    color: #fff; }
  .subscribe blockquote {
    margin: 0;
    padding: 0;
    letter-spacing: -.5px; }
  .subscribe__author {
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    color: #008aa7;
    padding: 0 15px;
    width: 100%; }
  .subscribe__btn {
    text-align: center; }
    .subscribe__btn .btn {
      min-width: 172px; }
  .subscribe .slick-prev,
  .subscribe .slick-next {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%); }
  .subscribe .slick-next {
    left: auto;
    right: 25px; }
  .subscribe .slick-dots {
    width: 100%;
    justify-content: center;
    bottom: -42px; }
    .subscribe .slick-dots button {
      background: #a3a3a3; }

@media (min-width: 1200px) {
  .news .row {
    display: flex; } }

@media (min-width: 1200px) {
  .news .col {
    position: relative;
    width: 50%; } }

.news__post {
  padding: 35px 15px; }
  @media (min-width: 1200px) {
    .news__post {
      padding: 47px 25px 35px; } }
  @media (min-width: 1440px) {
    .news__post {
      padding: 47px 62px 35px 56px; } }
  .news__post h2 {
    text-align: center;
    letter-spacing: .7px;
    margin: 0 0 23px; }
    @media (min-width: 768px) {
      .news__post h2 {
        letter-spacing: 1.4px; } }
    @media (min-width: 1024px) {
      .news__post h2 {
        margin: 0 0 46px; } }
  .news__post .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .news__post .btn-wrap .btn {
      margin: 0 5px;
      min-width: 145px; }
      @media (min-width: 768px) {
        .news__post .btn-wrap .btn {
          margin: 0 11px;
          min-width: 172px; } }

.news .post {
  margin: 0 0 31px; }
  @media (min-width: 768px) {
    .news .post {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start; } }
  .news .post h3 {
    line-height: 1.25;
    letter-spacing: .9px;
    margin: 0 0 5px; }
  .news .post ul {
    font-size: 14px;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
    color: #a3a3a3;
    margin: 0 -9px 14px; }
    @media (min-width: 768px) {
      .news .post ul {
        margin: 0 -9px 28px; } }
    .news .post ul li {
      position: relative;
      padding: 0 9px; }
      .news .post ul li:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: #a3a3a3; }
      .news .post ul li:last-child:after {
        display: none; }
  .news .post__img {
    border-radius: 5px;
    overflow: hidden;
    margin: 0 0 20px; }
    @media (min-width: 768px) {
      .news .post__img {
        width: 44%;
        margin: 0; } }
    .news .post__img img {
      transition: transform 0.15s ease-in-out;
      width: 100%;
      object-fit: cover;
      transform: scale(1); }
      .news .post__img img:hover {
        transform: scale(1.1); }
  .news .post__text {
    letter-spacing: -.5px; }
    @media (min-width: 768px) {
      .news .post__text {
        width: 56%;
        padding: 0 0 0 35px;
        margin: -5px 0 0; } }
    .news .post__text p {
      margin: 0; }
    .news .post__text a {
      position: relative;
      display: inline-block;
      vertical-align: top;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .8px; }
      .news .post__text a:hover {
        color: #006074; }
      .news .post__text a:after {
        content: "\E913";
        font-size: 12px;
        font-family: 'icomoon' !important;
        margin: 0 0 0 2px; }

.news .dot {
  color: #008aa7;
  font-weight: 600; }

.follow {
  position: relative;
  padding: 48px 15px 30px;
  letter-spacing: 1.2px;
  background: #eeeeee;
  overflow: hidden; }
  .follow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./26555ae91822d36706d037932763c1f4.png); }
  .follow:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./dfd9864285f02aa106d94757426d825c.svg);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover; }
  .follow h2 {
    position: relative;
    z-index: 9;
    font-size: 28px;
    font-weight: 600;
    color: #008aa7;
    padding: 0 0 150px;
    margin: 0;
    text-align: center; }
    @media (min-width: 768px) {
      .follow h2 {
        font-size: 32px;
        padding: 0 0 124px; } }
  .follow__list {
    position: absolute;
    top: 0;
    z-index: 9;
    max-width: 610px;
    width: 100%;
    min-height: 248px;
    left: 50%;
    transform: translateX(-50%); }
    @media (max-width: 767px) {
      .follow__list {
        max-width: 375px; } }
    @media (min-width: 1200px) {
      .follow__list {
        left: 0;
        transform: none; } }
    @media (min-width: 1560px) {
      .follow__list {
        left: 18%; } }
    .follow__list:before {
      content: '';
      position: absolute;
      top: -58px;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(./b657f2fd2fccc07c8afdeac3601de3b4.png);
      background-repeat: no-repeat; }
      @media (max-width: 767px) {
        .follow__list:before {
          top: -30px;
          background-size: 330px 210px; } }
    .follow__list li {
      position: absolute; }
      .follow__list li:nth-child(1) {
        top: 86px;
        left: 7px; }
        @media (max-width: 767px) {
          .follow__list li:nth-child(1) {
            left: 0; } }
        @media (max-width: 767px) {
          .follow__list li:nth-child(1) img {
            width: 50px; } }
      .follow__list li:nth-child(2) {
        left: 28%;
        bottom: 48px; }
        @media (max-width: 767px) {
          .follow__list li:nth-child(2) {
            bottom: 70px; } }
        @media (max-width: 767px) {
          .follow__list li:nth-child(2) img {
            width: 46px; } }
      .follow__list li:nth-child(3) {
        right: 32%;
        top: 105px; }
        @media (max-width: 767px) {
          .follow__list li:nth-child(3) {
            top: 93px; } }
        @media (max-width: 767px) {
          .follow__list li:nth-child(3) img {
            width: 22px; } }
      .follow__list li:nth-child(4) {
        bottom: 0;
        right: 0; }
        @media (max-width: 767px) {
          .follow__list li:nth-child(4) {
            bottom: 40px;
            right: 25px; } }
        @media (max-width: 767px) {
          .follow__list li:nth-child(4) img {
            width: 50px; } }
    .follow__list a {
      transition: opacity 0.15s ease-in-out; }
      .follow__list a:hover {
        opacity: .8; }
  .follow__hashtag {
    position: relative;
    display: block;
    font-size: 18px;
    font-style: italic;
    letter-spacing: .4px;
    color: #008aa7;
    text-align: center;
    z-index: 9; }

.advantages .row {
  position: relative; }
  @media (min-width: 768px) {
    .advantages .row {
      display: flex;
      flex-wrap: wrap; } }
  .advantages .row:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./7c55d177a26de4f3d1afd8c337414fde.svg);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .2;
    pointer-events: none; }

@media (min-width: 768px) {
  .advantages .col {
    display: flex;
    width: 50%; } }

@media (min-width: 1200px) {
  .advantages .col {
    width: 20%; } }

@media (min-width: 768px) {
  .advantages .col:nth-child(3) {
    width: 100%; } }

@media (min-width: 1200px) {
  .advantages .col:nth-child(3) {
    width: 20%; } }

.advantages__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 50px 15px; }
  .advantages__box:hover .advantages__box-bg {
    filter: brightness(80%); }
  .advantages__box i {
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    z-index: 2; }
    @media (min-width: 1200px) {
      .advantages__box i {
        font-size: 160px; } }
  .advantages__box h3 {
    position: relative;
    z-index: 9;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 1px;
    max-width: 275px;
    margin: 0 auto; }
  .advantages__box strong {
    position: relative;
    z-index: 9;
    display: block;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
    max-width: 275px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 20px; }
    .advantages__box strong em {
      display: block; }
    .advantages__box strong span {
      position: relative;
      display: inline-block;
      font-weight: 700; }
      .advantages__box strong span:before, .advantages__box strong span:after {
        content: "\E913";
        display: inline-block;
        vertical-align: top;
        font-size: 18px;
        font-weight: 400;
        font-family: 'icomoon';
        margin-top: 2px;
        margin-left: 7px; }
      .advantages__box strong span:before {
        margin-right: 7px;
        margin-left: 0;
        transform: rotate(180deg); }
  .advantages__box .btn {
    position: relative;
    z-index: 9; }

.advantages__box-bg {
  transition: filter 0.15s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }

.back-to-top {
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
  position: absolute;
  bottom: 57px;
  right: 15px;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-decoration: none; }
  @media (min-width: 462px) {
    .back-to-top {
      bottom: 45px; } }
  @media (min-width: 768px) {
    .back-to-top {
      bottom: 55px; } }
  @media (min-width: 1024px) {
    .back-to-top {
      bottom: 90px;
      right: 28px;
      width: 69px;
      height: 69px;
      font-size: 23px; } }
  @media (min-width: 1440px) {
    .back-to-top {
      bottom: 120px; } }
  @media (min-width: 1650px) {
    .back-to-top {
      bottom: 90px; } }
  .back-to-top:hover {
    background: #fff;
    color: #008aa7; }
  .back-to-top:before {
    content: "\E913";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg); }

#map-canvas {
  position: relative;
  width: 100%;
  height: 696px; }
  @media (min-width: 1200px) {
    #map-canvas {
      position: absolute !important;
      top: 277px;
      left: 0;
      bottom: 0;
      right: 0;
      height: auto; } }

.search-result {
  padding: 50px 0; }
  .search-result .search-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    max-width: 360px;
    width: 100%; }
    .search-result .search-form input[type="text"],
    .search-result .search-form input[type='search'] {
      font-size: 12px;
      color: #a3a3a3;
      width: 100%;
      outline: none;
      background: #fff;
      border: 1px solid #a3a3a3;
      border-radius: 2em;
      height: 40px;
      padding: 3px 62px 3px 17px;
      letter-spacing: -.3px; }
      .search-result .search-form input[type="text"]::-webkit-input-placeholder,
      .search-result .search-form input[type='search']::-webkit-input-placeholder {
        color: #a3a3a3; }
      .search-result .search-form input[type="text"]::-moz-placeholder,
      .search-result .search-form input[type='search']::-moz-placeholder {
        opacity: 1;
        color: #a3a3a3; }
      .search-result .search-form input[type="text"]:-moz-placeholder,
      .search-result .search-form input[type='search']:-moz-placeholder {
        color: #a3a3a3; }
      .search-result .search-form input[type="text"]:-ms-input-placeholder,
      .search-result .search-form input[type='search']:-ms-input-placeholder {
        color: #a3a3a3; }
      .search-result .search-form input[type="text"].placeholder,
      .search-result .search-form input[type='search'].placeholder {
        color: #a3a3a3; }
    .search-result .search-form button,
    .search-result .search-form input[type="submit"] {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      color: #fff;
      background: #67c894;
      padding: 0 16px;
      border-radius: 0 2em 2em 0; }

.bg-holder {
  background-attachment: fixed;
  background-repeat: no-repeat; }

.bg-holder img {
  height: auto;
  position: absolute;
  width: auto; }

.is-touch-device {
  background-size: cover; }

.footer {
  position: relative;
  padding: 33px 0 0;
  flex-shrink: 0;
  background: #0089a7; }
  .footer .logo {
    width: 234px;
    margin: 0 auto 32px; }
  .footer .row {
    margin: 0 0 28px; }
    @media (min-width: 768px) {
      .footer .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px 28px; } }
    @media (min-width: 1200px) {
      .footer .row {
        margin: 0 0 28px; } }
  .footer .col {
    position: relative;
    padding: 0 0 20px; }
    @media (min-width: 768px) {
      .footer .col {
        width: 40%;
        padding: 0 15px 20px; } }
    @media (min-width: 1024px) {
      .footer .col {
        width: 27%;
        padding: 0 15px;
        margin: 0 0 25px; } }
    @media (min-width: 1440px) {
      .footer .col {
        width: 17%;
        padding: 0 32px;
        margin: 0; } }
    @media (min-width: 1024px) {
      .footer .col:before {
        content: '';
        position: absolute;
        top: 9px;
        right: 2px;
        bottom: 5px;
        width: 2px;
        background: #67c894; } }
    @media (min-width: 768px) {
      .footer .col:first-child {
        width: 60%; } }
    @media (min-width: 1024px) {
      .footer .col:first-child {
        width: 46%; } }
    @media (min-width: 1440px) {
      .footer .col:first-child {
        padding: 0;
        width: 33.5%; } }
    @media (min-width: 1440px) {
      .footer .col:nth-child(2) {
        width: 22%;
        padding: 0 34px; } }
    .footer .col:nth-child(2) ul {
      column-count: 2; }
    .footer .col:last-child {
      padding-right: 35px; }
      @media (min-width: 768px) {
        .footer .col:last-child {
          width: 60%;
          padding-right: 55px; } }
      @media (min-width: 1024px) {
        .footer .col:last-child {
          padding-right: 0;
          width: 100%; } }
      @media (min-width: 1200px) {
        .footer .col:last-child {
          width: 35%; } }
      @media (min-width: 1440px) {
        .footer .col:last-child {
          width: 26%; } }
      .footer .col:last-child:before {
        display: none; }
      .footer .col:last-child h3 {
        margin: 0; }
  .footer h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    letter-spacing: .8px;
    margin: 0 0 10px; }
    @media (min-width: 1024px) {
      .footer h3 {
        font-size: 24px;
        margin: 0 0 23px; } }
  .footer h4 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    letter-spacing: .8px;
    margin: 0 0 15px; }
    @media (min-width: 1024px) {
      .footer h4 {
        font-size: 24px;
        margin: 0 0 28px; } }
  .footer ul a {
    color: #fff; }
    .footer ul a:hover {
      color: #edaf18; }
  .footer address {
    width: 175px;
    color: #fff;
    font-style: normal;
    letter-spacing: -.4px;
    margin: 0 0 15px; }
    @media (min-width: 768px) {
      .footer address {
        margin: 0; } }
    .footer address a {
      color: #fff; }
      .footer address a:hover {
        color: #edaf18; }
  @media (min-width: 768px) {
    .footer__info {
      display: flex;
      flex-wrap: wrap; } }
  .footer__info ul {
    letter-spacing: -.4px; }
    @media (min-width: 768px) {
      .footer__info ul {
        width: calc(100% - 175px);
        padding: 0 0 0 21px; } }
  .footer__nav {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .8px; }
    .footer__nav a {
      text-transform: uppercase; }
  .footer__copyright {
    font-size: 12px;
    font-weight: 300;
    padding: 4px 0;
    background: #67c894;
    color: #fff;
    text-align: center;
    letter-spacing: -.2px; }
    .footer__copyright p {
      margin: 0; }
    .footer__copyright a {
      color: #fff;
      font-weight: 500;
      text-decoration: underline; }
      .footer__copyright a:hover {
        color: #edaf18; }
      .footer__copyright a.footer__copyright-link {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: -.3px;
        margin: 0 0 0 15px; }
        .footer__copyright a.footer__copyright-link:before {
          content: '';
          position: absolute;
          top: 2px;
          left: -7px;
          bottom: 2px;
          width: 1px;
          background: #fff; }
  .footer__form {
    position: relative;
    display: flex;
    margin-right: -55px;
    align-items: center; }
    .footer__form .gform_wrapper {
      width: 310px;
      margin: 0; }
      .footer__form .gform_wrapper.gform_validation_error {
        margin: 30px 0; }
      .footer__form .gform_wrapper div.validation_error {
        position: absolute;
        top: -50px;
        left: 0;
        font-size: 14px;
        border: none;
        padding: 0;
        margin: 0; }
      .footer__form .gform_wrapper .field_description_below .gfield_description {
        position: absolute;
        bottom: -30px;
        left: 0; }
      .footer__form .gform_wrapper .gform_ajax_spinner {
        display: none !important; }
  .footer .social {
    max-width: 70px;
    width: 100%; }


.footer .gform_wrapper form {
  position: relative;
  width: 100%;
  margin: 0 !important; }
  @media (min-width: 1024px) {
    .footer .gform_wrapper form {
      max-width: 308px !important; } }
  .footer .gform_wrapper form input[type="text"] {
    font-size: 12px !important;
    color: #a3a3a3;
    width: 100% !important;
    outline: none;
    background: #fff;
    border: none;
    margin-top: 0 !important;
    border-radius: 2em;
    height: 31px;
    padding: 3px 20px 3px 17px !important;
    letter-spacing: -.3px !important;
    margin-bottom: 0 !important; }
    .footer .gform_wrapper form input[type="text"]::-webkit-input-placeholder {
      color: #a3a3a3; }
    .footer .gform_wrapper form input[type="text"]::-moz-placeholder {
      opacity: 1;
      color: #a3a3a3; }
    .footer .gform_wrapper form input[type="text"]:-moz-placeholder {
      color: #a3a3a3; }
    .footer .gform_wrapper form input[type="text"]:-ms-input-placeholder {
      color: #a3a3a3; }
    .footer .gform_wrapper form input[type="text"].placeholder {
      color: #a3a3a3; }
  .footer .gform_wrapper form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 12px !important;
    text-transform: uppercase;
    border: none;
    outline: none;
    background: #67c894;
    color: #fff;
    font-weight: 600;
    border-radius: 0 2em 2em 0;
    margin: 0 !important;
    padding: 0 12px;
    letter-spacing: 1px;
    width: auto !important; }

.footer .gform_wrapper ul li.gfield {
  margin-top: 0 !important; }

.footer .gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important; }

.footer .gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important; }

.footer .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important; }

.footer .gform_wrapper li.gfield.gfield_error, .footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  padding-top: 0 !important;
  border: none !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  background: transparent !important; }

.breadcrumbs
{
	margin-bottom:20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.news-post {
	margin: 0 0 11px;
	color: #edecec;
	text-align: center;
}

.news-post .img-holder {
	color: #edecec;
}

.news-post .img-holder:focus,
.news-post .img-holder:hover,
.news-post .img-holder.hover {
	text-decoration: none;
}

.news-post .img-holder:focus .post-description,
.news-post .img-holder:hover .post-description,
.news-post .img-holder.hover .post-description {
	top: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.news-post .img-holder:focus .text-description,
.news-post .img-holder:hover .text-description,
.news-post .img-holder.hover .text-description {
	opacity: 1;
	max-height: 1000px;
}

.news-post h1,
.news-post .h1,
.news-post h2,
.news-post .h2,
.news-post h3,
.news-post .h3,
.news-post h4,
.news-post .h4,
.news-post h5,
.news-post .h5,
.news-post h6,
.news-post .h6 {
	text-align: center;
	color: #fff;
	width: 100%;
}

.news-post .post-description {
	position: absolute;
	top: auto;
	padding: 5px 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	right: 0;
	bottom: 0;
	background: -webkit-linear-gradient(bottom, rgba(51, 56, 55, .9) 0%, rgba(96, 139, 173, 0) 100%);
	background: linear-gradient(to top, rgba(51, 56, 55, .9) 0%, rgba(96, 139, 173, 0) 100%);
	-webkit-transition: top 1s linear;
	transition: top 1s linear;
	z-index: 1;
}

.news-post .post-description p {
	text-align: left;
}

.news-post .text-description {
	width: 100%;
	display: block;
	max-height: 0;
	overflow: hidden;
	/*-webkit-transition: max-height .8s linear, opacity .6s linear;*/
	/*transition: max-height .8s linear, opacity .6s linear;*/
	/*opacity: 0;*/
}

.news-post h4 {
	-webkit-transition: opacity .6s linear;
	transition: opacity .6s linear;
	opacity: 1;
	margin: 0 0 5px;
	font-size: 14px;
	line-height: 1.5;
}

.post-blog-wrap {
	padding-top: 10px;
	padding-bottom: 3px;
}

.post-blog-wrap .blog-post a:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: -webkit-linear-gradient(bottom, rgba(66, 77, 74, .8) 0%, rgba(125, 185, 232, 0) 100%);
	background: linear-gradient(to top, rgba(66, 77, 74, .8) 0%, rgba(125, 185, 232, 0) 100%);
	opacity: 1;
}

.post-blog-wrap .blog-post a:hover:before {
	opacity: 0;
}

.blog-post {
	margin: 0 0 10px;
}

.blog-post a {
	color: #fff;
}

.blog-post a:hover,
.blog-post a:focus {
	text-decoration: none;
}

.blog-post a:hover h4,
.blog-post a:focus h4 {
	color: #edecec;
}

.blog-post h4 {
	color: #fff;
	position: absolute;
	bottom: 7px;
	left: 0;
	right: 0;
	padding: 0 10px;
	display: inline-block;
	z-index: 1;
}

.blog-post h4:after {
	vertical-align: middle;
	content: "\f105";
	position: absolute;
	bottom: 0;
	right: -5px;
	font-size: 17px;
	position: relative;
}

.blog-post .img-holder img {
	border-color: #a1a3a3;
}

.blog-thumbnail
	{
	margin-top: 50px;
	position: relative;
  	min-width: 200px;
  	height: 200px;
  	overflow: hidden;
	}
	
.blog-thumbnail img
	{
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	height: auto;
  	width: 100%;
  	-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	}
	
.blog-thumbnail img.portrait
	{
  	width: 100%;
  	height: auto;
	}
	

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 8px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -8px;
  margin-right: -8px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

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

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1024px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }
   

/*# sourceMappingURL=app.min.css.map*/