/*!
 * [Table of contents]
 * 1. Common styles
 * 2. Page loader / .page-loader
 * 3. Buttons
 * 4. Header
 * 5. Footer
 * 6. Home
 * 7. Boxes
 * 8. Owl slider
 * 9. Team, Portfolio
 * 10. Contact
 * 11. Spacing
 * 12. Icons
 */
body {
  height: 100%;
  position: relative; }

img {
  max-width: 100%; }

img.grayscale {
  filter: grayscale(100%); }

img.grayscale:hover {
  filter: grayscale(50%); }

a {
  transition: all 0.6s cubic-bezier(0, 0, 0.6, 1); }

.z-layer-1 {
  z-index: 1; }

.marker {
  position: absolute;
  cursor: pointer; }

.bg-dark {
  background-color: #33343A;
  color: #ffffff; }
  .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p, .bg-dark span {
    color: #fff; }

.bg-gray {
  background-color: #f5f5f5; }

.white {
  color: #ffffff; }

.gray {
  color: #777777; }
  .gray * {
    color: #777777; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 52, 58, 0.7); }

.video-wrapper .overlay {
  z-index: 1; }

.scroll-up-down {
  width: 40px;
  height: 40px;
  margin-left: -20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .scroll-up-down:hover, .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }

.scroll-up-down-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  position: absolute;
  left: 50%;
  bottom: 4px;
  font-size: 32px;
  animation: scroll-up-down-anim 1s infinite;
  z-index: 2; }

/* Scroll Down Arrow */
@keyframes scroll-up-down-anim {
  0% {
    bottom: 12px; }
  50% {
    bottom: 20px; }
  100% {
    bottom: 12px; } }

.page-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: 100000; }

.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  animation: spinner 700ms infinite linear;
  z-index: 100001; }

blockquote.quote-dark-bg {
  padding: 10px 60px 10px 50px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  margin: 0 0 20px;
  font-size: 16px;
  border-left: none; }
  blockquote.quote-dark-bg footer {
    font-weight: 700;
    color: #fff; }
  blockquote.quote-dark-bg:before {
    font-family: FontAwesome;
    content: "\f10d";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2em;
    color: #fff;
    font-weight: normal; }
  blockquote.quote-dark-bg:after {
    font-family: FontAwesome;
    content: "\f10e";
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 3em;
    color: #fff;
    font-weight: normal; }

.btn {
  transition: all 1s cubic-bezier(0, 0, 0.6, 1);
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 3px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.428571429;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 100px 0 0 transparent; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

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

.btn-default {
  color: #fff;
  background-color: #323232;
  border-color: #252525;
  box-shadow: inset 0 0 0 0 #252525; }
  .btn-default:focus, .btn-default.focus {
    color: #fff;
    background-color: #323232;
    border-color: #252525; }
  .btn-default:hover {
    color: #fff;
    background-color: #323232;
    border-color: #252525;
    box-shadow: inset 0 -100px 0 0 #252525; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #fff;
    background-color: #191818;
    border-color: #070707; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #fff;
      background-color: #070707;
      border-color: black; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #323232;
    border-color: #252525; }
  .btn-default .badge {
    color: #323232;
    background-color: #fff; }

.btn-primary {
  color: #fff;
  background-color: #47bbae;
  border-color: #3faa9e;
  box-shadow: inset 0 0 0 0 #3faa9e; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #47bbae;
    border-color: #3faa9e; }
  .btn-primary:hover {
    color: #fff;
    background-color: #47bbae;
    border-color: #3faa9e;
    box-shadow: inset 0 -100px 0 0 #3faa9e; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #38978c;
    border-color: #2e7d74; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #2e7d74;
      border-color: #1c4d47; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #47bbae;
    border-color: #3faa9e; }
  .btn-primary .badge {
    color: #47bbae;
    background-color: #fff; }

.btn-secondary {
  color: #fff;
  background-color: #ff6347;
  border-color: #ff4d2e;
  box-shadow: inset 0 0 0 0 #ff4d2e; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff4d2e; }
  .btn-secondary:hover {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff4d2e;
    box-shadow: inset 0 -100px 0 0 #ff4d2e; }
  .btn-secondary:active, .btn-secondary.active,
  .open > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #ff3814;
    border-color: #ef2400; }
    .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus,
    .open > .btn-secondary.dropdown-toggle:hover,
    .open > .btn-secondary.dropdown-toggle:focus,
    .open > .btn-secondary.dropdown-toggle.focus {
      color: #fff;
      background-color: #ef2400;
      border-color: #ad1a00; }
  .btn-secondary:active, .btn-secondary.active,
  .open > .btn-secondary.dropdown-toggle {
    background-image: none; }
  .btn-secondary.disabled:hover, .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary[disabled]:hover, .btn-secondary[disabled]:focus, .btn-secondary[disabled].focus,
  fieldset[disabled] .btn-secondary:hover,
  fieldset[disabled] .btn-secondary:focus,
  fieldset[disabled] .btn-secondary.focus {
    background-color: #ff6347;
    border-color: #ff4d2e; }
  .btn-secondary .badge {
    color: #ff6347;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #3c948b;
  border-color: #35827a;
  box-shadow: inset 0 0 0 0 #35827a; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #3c948b;
    border-color: #35827a; }
  .btn-success:hover {
    color: #fff;
    background-color: #3c948b;
    border-color: #35827a;
    box-shadow: inset 0 -100px 0 0 #35827a; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #2d7069;
    border-color: #235651; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #235651;
      border-color: #102725; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #3c948b;
    border-color: #35827a; }
  .btn-success .badge {
    color: #3c948b;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #1d90ac;
  border-color: #197e96;
  box-shadow: inset 0 0 0 0 #197e96; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #1d90ac;
    border-color: #197e96; }
  .btn-info:hover {
    color: #fff;
    background-color: #1d90ac;
    border-color: #197e96;
    box-shadow: inset 0 -100px 0 0 #197e96; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #166b80;
    border-color: #105262; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #105262;
      border-color: #072229; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #1d90ac;
    border-color: #197e96; }
  .btn-info .badge {
    color: #1d90ac;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #ecb53e;
  border-color: #eaac27;
  box-shadow: inset 0 0 0 0 #eaac27; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ecb53e;
    border-color: #eaac27; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ecb53e;
    border-color: #eaac27;
    box-shadow: inset 0 -100px 0 0 #eaac27; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #e1a116;
    border-color: #c08a13; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #c08a13;
      border-color: #845e0d; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #ecb53e;
    border-color: #eaac27; }
  .btn-warning .badge {
    color: #ecb53e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #df6c4f;
  border-color: #db5a39;
  box-shadow: inset 0 0 0 0 #db5a39; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #df6c4f;
    border-color: #db5a39; }
  .btn-danger:hover {
    color: #fff;
    background-color: #df6c4f;
    border-color: #db5a39;
    box-shadow: inset 0 -100px 0 0 #db5a39; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #d44a27;
    border-color: #b63f21; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #b63f21;
      border-color: #7e2c17; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #df6c4f;
    border-color: #db5a39; }
  .btn-danger .badge {
    color: #df6c4f;
    background-color: #fff; }

.btn-outline-default {
  color: #323232;
  background-image: none;
  background-color: transparent;
  border-color: #323232;
  box-shadow: inset 0 0 0 0 #323232; }
  .btn-outline-default:hover {
    color: #fff;
    background-color: #323232;
    border-color: #323232;
    box-shadow: inset 0 -100px 0 0 #323232; }
  .btn-outline-default:focus, .btn-outline-default.focus {
    color: #fff;
    background-color: #323232;
    border-color: #323232; }
  .btn-outline-default:active, .btn-outline-default.active,
  .open > .btn-outline-default.dropdown-toggle {
    color: #fff;
    background-color: #323232;
    border-color: #323232; }
    .btn-outline-default:active:hover, .btn-outline-default:active:focus, .btn-outline-default:active.focus, .btn-outline-default.active:hover, .btn-outline-default.active:focus, .btn-outline-default.active.focus,
    .open > .btn-outline-default.dropdown-toggle:hover,
    .open > .btn-outline-default.dropdown-toggle:focus,
    .open > .btn-outline-default.dropdown-toggle.focus {
      color: #fff;
      background-color: #070707;
      border-color: black; }
  .btn-outline-default.disabled:focus, .btn-outline-default.disabled.focus, .btn-outline-default:disabled:focus, .btn-outline-default:disabled.focus {
    border-color: #656565; }

.btn-outline-primary {
  color: #47bbae;
  background-image: none;
  background-color: transparent;
  border-color: #47bbae;
  box-shadow: inset 0 0 0 0 #47bbae; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #47bbae;
    border-color: #47bbae;
    box-shadow: inset 0 -100px 0 0 #47bbae; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    color: #fff;
    background-color: #47bbae;
    border-color: #47bbae; }
  .btn-outline-primary:active, .btn-outline-primary.active,
  .open > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #47bbae;
    border-color: #47bbae; }
    .btn-outline-primary:active:hover, .btn-outline-primary:active:focus, .btn-outline-primary:active.focus, .btn-outline-primary.active:hover, .btn-outline-primary.active:focus, .btn-outline-primary.active.focus,
    .open > .btn-outline-primary.dropdown-toggle:hover,
    .open > .btn-outline-primary.dropdown-toggle:focus,
    .open > .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #2e7d74;
      border-color: #235f59; }
  .btn-outline-primary.disabled:focus, .btn-outline-primary.disabled.focus, .btn-outline-primary:disabled:focus, .btn-outline-primary:disabled.focus {
    border-color: #91d7cf; }

.btn-outline-success {
  color: #3c948b;
  background-image: none;
  background-color: transparent;
  border-color: #3c948b;
  box-shadow: inset 0 0 0 0 #3c948b; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b;
    box-shadow: inset 0 -100px 0 0 #3c948b; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b; }
  .btn-outline-success:active, .btn-outline-success.active,
  .open > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b; }
    .btn-outline-success:active:hover, .btn-outline-success:active:focus, .btn-outline-success:active.focus, .btn-outline-success.active:hover, .btn-outline-success.active:focus, .btn-outline-success.active.focus,
    .open > .btn-outline-success.dropdown-toggle:hover,
    .open > .btn-outline-success.dropdown-toggle:focus,
    .open > .btn-outline-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #235651;
      border-color: #173936; }
  .btn-outline-success.disabled:focus, .btn-outline-success.disabled.focus, .btn-outline-success:disabled:focus, .btn-outline-success:disabled.focus {
    border-color: #71c5bd; }

.btn-outline-info {
  color: #1d90ac;
  background-image: none;
  background-color: transparent;
  border-color: #1d90ac;
  box-shadow: inset 0 0 0 0 #1d90ac; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac;
    box-shadow: inset 0 -100px 0 0 #1d90ac; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac; }
  .btn-outline-info:active, .btn-outline-info.active,
  .open > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac; }
    .btn-outline-info:active:hover, .btn-outline-info:active:focus, .btn-outline-info:active.focus, .btn-outline-info.active:hover, .btn-outline-info.active:focus, .btn-outline-info.active.focus,
    .open > .btn-outline-info.dropdown-toggle:hover,
    .open > .btn-outline-info.dropdown-toggle:focus,
    .open > .btn-outline-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #105262;
      border-color: #0b353f; }
  .btn-outline-info.disabled:focus, .btn-outline-info.disabled.focus, .btn-outline-info:disabled:focus, .btn-outline-info:disabled.focus {
    border-color: #4ec4e1; }

.btn-outline-warning {
  color: #ecb53e;
  background-image: none;
  background-color: transparent;
  border-color: #ecb53e;
  box-shadow: inset 0 0 0 0 #ecb53e; }
  .btn-outline-warning:hover {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e;
    box-shadow: inset 0 -100px 0 0 #ecb53e; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e; }
  .btn-outline-warning:active, .btn-outline-warning.active,
  .open > .btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e; }
    .btn-outline-warning:active:hover, .btn-outline-warning:active:focus, .btn-outline-warning:active.focus, .btn-outline-warning.active:hover, .btn-outline-warning.active:focus, .btn-outline-warning.active.focus,
    .open > .btn-outline-warning.dropdown-toggle:hover,
    .open > .btn-outline-warning.dropdown-toggle:focus,
    .open > .btn-outline-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #c08a13;
      border-color: #9b6f0f; }
  .btn-outline-warning.disabled:focus, .btn-outline-warning.disabled.focus, .btn-outline-warning:disabled:focus, .btn-outline-warning:disabled.focus {
    border-color: #f5d99b; }

.btn-outline-danger {
  color: #df6c4f;
  background-image: none;
  background-color: transparent;
  border-color: #df6c4f;
  box-shadow: inset 0 0 0 0 #df6c4f; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f;
    box-shadow: inset 0 -100px 0 0 #df6c4f; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f; }
  .btn-outline-danger:active, .btn-outline-danger.active,
  .open > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f; }
    .btn-outline-danger:active:hover, .btn-outline-danger:active:focus, .btn-outline-danger:active.focus, .btn-outline-danger.active:hover, .btn-outline-danger.active:focus, .btn-outline-danger.active.focus,
    .open > .btn-outline-danger.dropdown-toggle:hover,
    .open > .btn-outline-danger.dropdown-toggle:focus,
    .open > .btn-outline-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #b63f21;
      border-color: #94331b; }
  .btn-outline-danger.disabled:focus, .btn-outline-danger.disabled.focus, .btn-outline-danger:disabled:focus, .btn-outline-danger:disabled.focus {
    border-color: #efb4a5; }

.btn-link {
  color: #47bbae;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #31857b;
    text-decoration: none;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #999999;
    text-decoration: none; }

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

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

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

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

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

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

header.site-header .navbar.dark {
  margin-bottom: 0;
  border: 0px solid transparent;
  transition: all 0.6s cubic-bezier(0, 0, 0.6, 1);
  background-color: #111111; }
  header.site-header .navbar.dark .navbar-brand {
    padding: 10px 15px; }
  @media (min-width: 992px) {
    header.site-header .navbar.dark {
      height: 70px; }
      header.site-header .navbar.dark .navbar-brand {
        padding: 15px 15px;
        height: 70px; } }
  header.site-header .navbar.dark.affix {
    height: 60px !important; }
    @media (min-width: 992px) {
      header.site-header .navbar.dark.affix ul > li a {
        line-height: 57px !important; } }
    header.site-header .navbar.dark.affix .navbar-brand {
      padding: 10px 15px;
      height: 60px;
      max-height: 60px; }
  header.site-header .navbar.dark a {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0, 0, 0.6, 1); }
    header.site-header .navbar.dark a:hover {
      color: #47bbae; }
  header.site-header .navbar.dark .navbar-brand {
    margin-right: 20px;
    font-size: 20px; }
  header.site-header .navbar.dark ul > li a {
    font-size: 13px; }
    @media (min-width: 992px) {
      header.site-header .navbar.dark ul > li a {
        line-height: 67px;
        border-top: 3px solid transparent;
        padding: 0 15px;
        margin-right: 5px; } }
    header.site-header .navbar.dark ul > li a:hover {
      color: #47bbae;
      background: transparent; }
      @media (min-width: 992px) {
        header.site-header .navbar.dark ul > li a:hover {
          border-top: 3px solid #47bbae; } }
    header.site-header .navbar.dark ul > li a:focus {
      background: transparent; }
  header.site-header .navbar.dark ul > li.active a {
    color: #47bbae;
    background: transparent; }
    @media (min-width: 992px) {
      header.site-header .navbar.dark ul > li.active a {
        border-top: 3px solid #47bbae; } }
  header.site-header .navbar.dark ul > li.no-hover a {
    border-top-width: 0; }
  @media (max-width: 991px) {
    header.site-header .navbar.dark .navbar-right li.social-nav {
      float: left; } }

header.site-header .navbar-toggle {
  margin-right: 15px;
  padding: 6px 8px;
  margin-top: 13px;
  margin-bottom: 13px;
  border: 1px solid #fff; }
  header.site-header .navbar-toggle i {
    color: #fff; }

header.site-header .navbar-collapse {
  border-top: none;
  box-shadow: none;
  background-color: #111111; }

header.site-header .navbar-right li:last-child a {
  margin-right: 0 !important; }

@media (max-width: 991px) {
  header.site-header .navbar-right li:last-child {
    float: none;
    display: block;
    clear: both; } }

footer.site-footer {
  position: relative;
  text-transform: uppercase;
  font-size: 13px; }
  footer.site-footer a {
    color: #ffffff; }
  footer.site-footer .social-nav {
    margin-bottom: 10px; }
    footer.site-footer .social-nav li {
      padding: 0 15px; }
      footer.site-footer .social-nav li a:hover {
        color: #47bbae; }
  footer.site-footer .scroll-up-down {
    top: 20px; }

.home section {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover; }
  .home section video {
    position: absolute;
    bottom: 0;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    right: 0;
    width: auto; }

.intro-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 50px; }

.intro-image {
  background: url(../img/bgr/bg-dark-5.jpg); }

.action h2 {
  line-height: 44px; }

.testimonials {
  background: url(../img/bgr/bg-dark-2.jpg); }

.clients .item {
  margin-bottom: 20px; }

.milestone .highlight {
  color: #111111;
  padding: 20px 0;
  font-weight: bold;
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 48px; }

.milestone .stat i {
  color: #47bbae; }

.milestone .milestone-details {
  font-weight: bold;
  font-size: 18px;
  color: #777777; }

.milestone .milestone-counter {
  margin-bottom: 40px; }

.filter-container li {
  margin-bottom: 10px; }
  .filter-container li.active a span {
    background: #47bbae;
    color: #fff; }

#progress .tooltip {
  position: relative;
  float: right; }

#progress .tooltip > .tooltip-inner {
  background-color: #47bbae;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 13px; }

#progress .pop-over + .tooltip > .tooltip-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #47bbae; }

#progress .progress-text {
  font-weight: 700;
  text-transform: uppercase; }

#progress .progress {
  border-radius: 0;
  overflow: visible;
  background-color: #2F3238;
  height: 25px;
  margin-bottom: 25px; }

#progress .progress-bar {
  background: #47bbae;
  transition: width 1.5s ease-in-out; }

.content {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative; }
  .content .text {
    display: table-cell;
    height: 100%;
    vertical-align: middle; }
  .content h1 {
    margin-top: 0;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      .content h1 {
        font-size: 60px; } }

.section-title {
  margin-top: 0;
  line-height: 1;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 500; }

.section-subtitle {
  font-size: 16px;
  text-transform: uppercase; }

.gmap #map {
  width: 100%;
  height: 360px;
  background-color: #e7eaf0; }

.gmap h5 {
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  padding: 12px 0;
  background-color: #47bbae;
  color: #fff;
  text-align: center;
  margin: 0; }

.box i {
  font-size: 36px;
  line-height: 1.1; }

.box h3 {
  margin-bottom: 10px; }

.box p {
  font-size: 13px; }

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-nav [class*='owl-'] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #fff;
  color: #fff;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #ccc; }

.team .image, .portfolio .image {
  position: relative;
  overflow: hidden; }
  .team .image:after, .portfolio .image:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0, 0, 0.6, 1); }
  .team .image .content, .portfolio .image .content {
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 20px 23px 55px;
    font-size: 14px;
    font-weight: 300;
    color: #777777;
    text-align: center;
    z-index: 2;
    transform: translateY(-50%);
    background-size: cover;
    transition: all 0.3s cubic-bezier(0, 0, 0.6, 1); }
  .team .image:hover:after, .portfolio .image:hover:after {
    background: rgba(255, 255, 255, 0.9); }
  .team .image:hover .content, .portfolio .image:hover .content {
    opacity: 1; }

#contact {
  font-size: 25px;
  color: #ffffff;
  background-color: #47bbae;
  text-align: center;
  font-weight: 300;
  -webkit-font-smoothing: antialiased; }
  #contact h5 {
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    -webkit-font-smoothing: antialiased; }

#contact-form {
  max-width: 90%;
  margin: 0 auto; }
  #contact-form label {
    font-weight: 400;
    cursor: pointer; }
  #contact-form textarea,
  #contact-form input {
    border: none;
    outline: none;
    border-radius: 0;
    text-align: center;
    background: none;
    font-weight: 700;
    font-size: 25px;
    color: white;
    max-width: 90%;
    padding: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0);
    box-sizing: border-box;
    cursor: text; }
  #contact-form textarea {
    text-align: left;
    /* overflow:hidden; */
    resize: none;
    width: 90%;
    border-color: rgba(255, 255, 255, 0); }
  #contact-form textarea:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px dashed white; }
  #contact-form textarea:focus:required:valid {
    border: 2px solid rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
  #contact-form textarea:required:valid {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
  #contact-form input {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5); }
  #contact-form input:required,
  #contact-form textarea:required {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5); }
  #contact-form input:focus {
    border-bottom: 2px dashed white;
    background-color: rgba(255, 255, 255, 0.2); }
  #contact-form input:required:valid {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
  #contact-form input:required:invalid {
    color: rgba(255, 255, 255, 0.5); }
  #contact-form ::-webkit-input-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400; }
  #contact-form :-moz-placeholder {
    /* Firefox 18- */
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400; }
  #contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400; }
  #contact-form :-ms-input-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400; }
  #contact-form .expanding {
    vertical-align: top; }
  #contact-form .send-icn {
    fill: white; }
  #contact-form .send-icn:hover {
    fill: black;
    cursor: pointer; }
  #contact-form button {
    background: none;
    border: none;
    outline: none;
    margin: 2vmax 2vmax 0 2vmax; }
  #contact-form button:hover small {
    opacity: 1; }
  #contact-form small {
    display: block;
    opacity: 0; }
  #contact-form .website {
    opacity: 1;
    font-size: 16px;
    color: white;
    position: relative;
    text-align: center;
    display: block;
    margin-top: 7%; }
  #contact-form .website a {
    color: white; }

.mt-0 {
  margin-top: 0 !important; }

.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-50 {
  margin-top: 50px; }

.mt-60 {
  margin-top: 60px; }

.mt-70 {
  margin-top: 70px; }

.mt-80 {
  margin-top: 80px; }

.mt-90 {
  margin-top: 90px; }

.mt-100 {
  margin-top: 100px; }

.mt-110 {
  margin-top: 110px; }

.mt-120 {
  margin-top: 120px; }

.mt-130 {
  margin-top: 130px; }

.mt-140 {
  margin-top: 140px; }

.mt-400 {
  margin-top: 400px; }

.mb-0 {
  margin-bottom: 0 !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-0 {
  padding-top: 0 !important; }

.pt-10 {
  padding-top: 10px; }

.pt-20 {
  padding-top: 20px; }

.pt-30 {
  padding-top: 30px; }

.pt-40 {
  padding-top: 40px; }

.pt-50 {
  padding-top: 50px; }

.pt-60 {
  padding-top: 60px; }

.pt-70 {
  padding-top: 70px; }

.pt-80 {
  padding-top: 80px; }

.pt-90 {
  padding-top: 90px; }

.pt-100 {
  padding-top: 100px; }

.pt-110 {
  padding-top: 110px; }

.pt-120 {
  padding-top: 120px; }

.pt-130 {
  padding-top: 130px; }

.pt-140 {
  padding-top: 140px; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-10 {
  padding-bottom: 10px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-40 {
  padding-bottom: 40px; }

.pb-50 {
  padding-bottom: 50px; }

.pb-60 {
  padding-bottom: 60px; }

.pb-70 {
  padding-bottom: 70px; }

.pb-80 {
  padding-bottom: 80px; }

.pb-90 {
  padding-bottom: 90px; }

.pb-100 {
  padding-bottom: 100px; }

.pb-110 {
  padding-bottom: 110px; }

.pb-120 {
  padding-bottom: 120px; }

.pb-130 {
  padding-bottom: 130px; }

.pb-140 {
  padding-bottom: 140px; }

@media only screen and (max-width: 1200px) {
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-10 {
    margin-top: 10px; }
  .mt-lg-20 {
    margin-top: 20px; }
  .mt-lg-30 {
    margin-top: 30px; }
  .mt-lg-40 {
    margin-top: 40px; }
  .mt-lg-50 {
    margin-top: 50px; }
  .mt-lg-60 {
    margin-top: 60px; }
  .mt-lg-70 {
    margin-top: 70px; }
  .mt-lg-80 {
    margin-top: 80px; }
  .mt-lg-90 {
    margin-top: 90px; }
  .mt-lg-100 {
    margin-top: 100px; }
  .mt-lg-110 {
    margin-top: 110px; }
  .mt-lg-120 {
    margin-top: 120px; }
  .mt-lg-130 {
    margin-top: 130px; }
  .mt-lg-140 {
    margin-top: 140px; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-10 {
    margin-bottom: 10px; }
  .mb-lg-20 {
    margin-bottom: 20px; }
  .mb-lg-30 {
    margin-bottom: 30px; }
  .mb-lg-40 {
    margin-bottom: 40px; }
  .mb-lg-50 {
    margin-bottom: 50px; }
  .mb-lg-60 {
    margin-bottom: 60px; }
  .mb-lg-70 {
    margin-bottom: 70px; }
  .mb-lg-80 {
    margin-bottom: 80px; }
  .mb-lg-90 {
    margin-bottom: 90px; }
  .mb-lg-100 {
    margin-bottom: 100px; }
  .mb-lg-110 {
    margin-bottom: 110px; }
  .mb-lg-120 {
    margin-bottom: 120px; }
  .mb-lg-130 {
    margin-bottom: 130px; }
  .mb-lg-140 {
    margin-bottom: 140px; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-10 {
    padding-top: 10px; }
  .pt-lg-20 {
    padding-top: 20px; }
  .pt-lg-30 {
    padding-top: 30px; }
  .pt-lg-40 {
    padding-top: 40px; }
  .pt-lg-50 {
    padding-top: 50px; }
  .pt-lg-60 {
    padding-top: 60px; }
  .pt-lg-70 {
    padding-top: 70px; }
  .pt-lg-80 {
    padding-top: 80px; }
  .pt-lg-90 {
    padding-top: 90px; }
  .pt-lg-100 {
    padding-top: 100px; }
  .pt-lg-110 {
    padding-top: 110px; }
  .pt-lg-120 {
    padding-top: 120px; }
  .pt-lg-130 {
    padding-top: 130px; }
  .pt-lg-140 {
    padding-top: 140px; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-10 {
    padding-bottom: 10px; }
  .pb-lg-20 {
    padding-bottom: 20px; }
  .pb-lg-30 {
    padding-bottom: 30px; }
  .pb-lg-40 {
    padding-bottom: 40px; }
  .pb-lg-50 {
    padding-bottom: 50px; }
  .pb-lg-60 {
    padding-bottom: 60px; }
  .pb-lg-70 {
    padding-bottom: 70px; }
  .pb-lg-80 {
    padding-bottom: 80px; }
  .pb-lg-90 {
    padding-bottom: 90px; }
  .pb-lg-100 {
    padding-bottom: 100px; }
  .pb-lg-110 {
    padding-bottom: 110px; }
  .pb-lg-120 {
    padding-bottom: 120px; }
  .pb-lg-130 {
    padding-bottom: 130px; }
  .pb-lg-140 {
    padding-bottom: 140px; } }

@media only screen and (max-width: 1024px) {
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-10 {
    margin-top: 10px; }
  .mt-md-20 {
    margin-top: 20px; }
  .mt-md-30 {
    margin-top: 30px; }
  .mt-md-40 {
    margin-top: 40px; }
  .mt-md-50 {
    margin-top: 50px; }
  .mt-md-60 {
    margin-top: 60px; }
  .mt-md-70 {
    margin-top: 70px; }
  .mt-md-80 {
    margin-top: 80px; }
  .mt-md-90 {
    margin-top: 90px; }
  .mt-md-100 {
    margin-top: 100px; }
  .mt-md-110 {
    margin-top: 110px; }
  .mt-md-120 {
    margin-top: 120px; }
  .mt-md-130 {
    margin-top: 130px; }
  .mt-md-140 {
    margin-top: 140px; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-10 {
    margin-bottom: 10px; }
  .mb-md-20 {
    margin-bottom: 20px; }
  .mb-md-30 {
    margin-bottom: 30px; }
  .mb-md-40 {
    margin-bottom: 40px; }
  .mb-md-50 {
    margin-bottom: 50px; }
  .mb-md-60 {
    margin-bottom: 60px; }
  .mb-md-70 {
    margin-bottom: 70px; }
  .mb-md-80 {
    margin-bottom: 80px; }
  .mb-md-90 {
    margin-bottom: 90px; }
  .mb-md-100 {
    margin-bottom: 100px; }
  .mb-md-110 {
    margin-bottom: 110px; }
  .mb-md-120 {
    margin-bottom: 120px; }
  .mb-md-130 {
    margin-bottom: 130px; }
  .mb-md-140 {
    margin-bottom: 140px; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-10 {
    padding-top: 10px; }
  .pt-md-20 {
    padding-top: 20px; }
  .pt-md-30 {
    padding-top: 30px; }
  .pt-md-40 {
    padding-top: 40px; }
  .pt-md-50 {
    padding-top: 50px; }
  .pt-md-60 {
    padding-top: 60px; }
  .pt-md-70 {
    padding-top: 70px; }
  .pt-md-80 {
    padding-top: 80px; }
  .pt-md-90 {
    padding-top: 90px; }
  .pt-md-100 {
    padding-top: 100px; }
  .pt-md-110 {
    padding-top: 110px; }
  .pt-md-120 {
    padding-top: 120px; }
  .pt-md-130 {
    padding-top: 130px; }
  .pt-md-140 {
    padding-top: 140px; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-10 {
    padding-bottom: 10px; }
  .pb-md-20 {
    padding-bottom: 20px; }
  .pb-md-30 {
    padding-bottom: 30px; }
  .pb-md-40 {
    padding-bottom: 40px; }
  .pb-md-50 {
    padding-bottom: 50px; }
  .pb-md-60 {
    padding-bottom: 60px; }
  .pb-md-70 {
    padding-bottom: 70px; }
  .pb-md-80 {
    padding-bottom: 80px; }
  .pb-md-90 {
    padding-bottom: 90px; }
  .pb-md-100 {
    padding-bottom: 100px; }
  .pb-md-110 {
    padding-bottom: 110px; }
  .pb-md-120 {
    padding-bottom: 120px; }
  .pb-md-130 {
    padding-bottom: 130px; }
  .pb-md-140 {
    padding-bottom: 140px; } }

@media only screen and (max-width: 768px) {
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-10 {
    margin-top: 10px; }
  .mt-sm-20 {
    margin-top: 20px; }
  .mt-sm-30 {
    margin-top: 30px; }
  .mt-sm-40 {
    margin-top: 40px; }
  .mt-sm-50 {
    margin-top: 50px; }
  .mt-sm-60 {
    margin-top: 60px; }
  .mt-sm-70 {
    margin-top: 70px; }
  .mt-sm-80 {
    margin-top: 80px; }
  .mt-sm-90 {
    margin-top: 90px; }
  .mt-sm-100 {
    margin-top: 100px; }
  .mt-sm-110 {
    margin-top: 110px; }
  .mt-sm-120 {
    margin-top: 120px; }
  .mt-sm-130 {
    margin-top: 130px; }
  .mt-sm-140 {
    margin-top: 140px; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-10 {
    margin-bottom: 10px; }
  .mb-sm-20 {
    margin-bottom: 20px; }
  .mb-sm-30 {
    margin-bottom: 30px; }
  .mb-sm-40 {
    margin-bottom: 40px; }
  .mb-sm-50 {
    margin-bottom: 50px; }
  .mb-sm-60 {
    margin-bottom: 60px; }
  .mb-sm-70 {
    margin-bottom: 70px; }
  .mb-sm-80 {
    margin-bottom: 80px; }
  .mb-sm-90 {
    margin-bottom: 90px; }
  .mb-sm-100 {
    margin-bottom: 100px; }
  .mb-sm-110 {
    margin-bottom: 110px; }
  .mb-sm-120 {
    margin-bottom: 120px; }
  .mb-sm-130 {
    margin-bottom: 130px; }
  .mb-sm-140 {
    margin-bottom: 140px; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-10 {
    padding-top: 10px; }
  .pt-sm-20 {
    padding-top: 20px; }
  .pt-sm-30 {
    padding-top: 30px; }
  .pt-sm-40 {
    padding-top: 40px; }
  .pt-sm-50 {
    padding-top: 50px; }
  .pt-sm-60 {
    padding-top: 60px; }
  .pt-sm-70 {
    padding-top: 70px; }
  .pt-sm-80 {
    padding-top: 80px; }
  .pt-sm-90 {
    padding-top: 90px; }
  .pt-sm-100 {
    padding-top: 100px; }
  .pt-sm-110 {
    padding-top: 110px; }
  .pt-sm-120 {
    padding-top: 120px; }
  .pt-sm-130 {
    padding-top: 130px; }
  .pt-sm-140 {
    padding-top: 140px; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-10 {
    padding-bottom: 10px; }
  .pb-sm-20 {
    padding-bottom: 20px; }
  .pb-sm-30 {
    padding-bottom: 30px; }
  .pb-sm-40 {
    padding-bottom: 40px !important; }
  .pb-sm-50 {
    padding-bottom: 50px; }
  .pb-sm-60 {
    padding-bottom: 60px; }
  .pb-sm-70 {
    padding-bottom: 70px; }
  .pb-sm-80 {
    padding-bottom: 80px; }
  .pb-sm-90 {
    padding-bottom: 90px; }
  .pb-sm-100 {
    padding-bottom: 100px; }
  .pb-sm-110 {
    padding-bottom: 110px; }
  .pb-sm-120 {
    padding-bottom: 120px; }
  .pb-sm-130 {
    padding-bottom: 130px; }
  .pb-sm-140 {
    padding-bottom: 140px; } }

@media only screen and (max-width: 767px) {
  .mt-xs-0 {
    margin-top: 0 !important; }
  .mt-xs-10 {
    margin-top: 10px; }
  .mt-xs-20 {
    margin-top: 20px; }
  .mt-xs-30 {
    margin-top: 30px; }
  .mt-xs-40 {
    margin-top: 40px; }
  .mt-xs-50 {
    margin-top: 50px; }
  .mt-xs-60 {
    margin-top: 60px; }
  .mt-xs-70 {
    margin-top: 70px; }
  .mt-xs-80 {
    margin-top: 80px; }
  .mt-xs-90 {
    margin-top: 90px; }
  .mt-xs-100 {
    margin-top: 100px; }
  .mt-xs-110 {
    margin-top: 110px; }
  .mt-xs-120 {
    margin-top: 120px; }
  .mt-xs-130 {
    margin-top: 130px; }
  .mt-xs-140 {
    margin-top: 140px; }
  .mt-xs-190 {
    margin-top: 280px; }
  .mb-xs-0 {
    margin-bottom: 0 !important; }
  .mb-xs-10 {
    margin-bottom: 10px; }
  .mb-xs-20 {
    margin-bottom: 20px; }
  .mb-xs-30 {
    margin-bottom: 30px; }
  .mb-xs-40 {
    margin-bottom: 40px; }
  .mb-xs-50 {
    margin-bottom: 50px; }
  .mb-xs-60 {
    margin-bottom: 60px; }
  .mb-xs-70 {
    margin-bottom: 70px; }
  .mb-xs-80 {
    margin-bottom: 80px; }
  .mb-xs-90 {
    margin-bottom: 90px; }
  .mb-xs-100 {
    margin-bottom: 100px; }
  .mb-xs-110 {
    margin-bottom: 110px; }
  .mb-xs-120 {
    margin-bottom: 120px; }
  .mb-xs-130 {
    margin-bottom: 130px; }
  .mb-xs-140 {
    margin-bottom: 140px; }
  .pt-xs-0 {
    padding-top: 0 !important; }
  .pt-xs-10 {
    padding-top: 10px; }
  .pt-xs-20 {
    padding-top: 20px; }
  .pt-xs-30 {
    padding-top: 30px; }
  .pt-xs-40 {
    padding-top: 40px; }
  .pt-xs-50 {
    padding-top: 50px; }
  .pt-xs-60 {
    padding-top: 60px; }
  .pt-xs-70 {
    padding-top: 70px; }
  .pt-xs-80 {
    padding-top: 80px; }
  .pt-xs-90 {
    padding-top: 90px; }
  .pt-xs-100 {
    padding-top: 100px; }
  .pt-xs-110 {
    padding-top: 110px; }
  .pt-xs-120 {
    padding-top: 120px; }
  .pt-xs-130 {
    padding-top: 130px; }
  .pt-xs-140 {
    padding-top: 140px; }
  .pb-xs-0 {
    padding-bottom: 0 !important; }
  .pb-xs-10 {
    padding-bottom: 10px; }
  .pb-xs-20 {
    padding-bottom: 20px; }
  .pb-xs-30 {
    padding-bottom: 30px; }
  .pb-xs-40 {
    padding-bottom: 40px !important; }
  .pb-xs-50 {
    padding-bottom: 50px; }
  .pb-xs-60 {
    padding-bottom: 60px; }
  .pb-xs-70 {
    padding-bottom: 70px; }
  .pb-xs-80 {
    padding-bottom: 80px; }
  .pb-xs-90 {
    padding-bottom: 90px; }
  .pb-xs-100 {
    padding-bottom: 100px; }
  .pb-xs-110 {
    padding-bottom: 110px; }
  .pb-xs-120 {
    padding-bottom: 120px; }
  .pb-xs-130 {
    padding-bottom: 130px; }
  .pb-xs-140 {
    padding-bottom: 140px; } }

@media only screen and (max-width: 480px) {
  .mt-xxs-0 {
    margin-top: 0 !important; }
  .mt-xxs-10 {
    margin-top: 10px; }
  .mt-xxs-20 {
    margin-top: 20px; }
  .mt-xxs-30 {
    margin-top: 30px; }
  .mt-xxs-40 {
    margin-top: 40px; }
  .mt-xxs-50 {
    margin-top: 50px; }
  .mt-xxs-60 {
    margin-top: 60px; }
  .mt-xxs-70 {
    margin-top: 70px; }
  .mt-xxs-80 {
    margin-top: 80px; }
  .mt-xxs-90 {
    margin-top: 90px; }
  .mt-xxs-100 {
    margin-top: 100px; }
  .mt-xxs-110 {
    margin-top: 110px; }
  .mt-xxs-120 {
    margin-top: 120px; }
  .mt-xxs-130 {
    margin-top: 130px; }
  .mt-xxs-140 {
    margin-top: 140px; }
  .mb-xxs-0 {
    margin-bottom: 0 !important; }
  .mb-xxs-10 {
    margin-bottom: 10px; }
  .mb-xxs-20 {
    margin-bottom: 20px; }
  .mb-xxs-30 {
    margin-bottom: 30px; }
  .mb-xxs-40 {
    margin-bottom: 40px; }
  .mb-xxs-50 {
    margin-bottom: 50px; }
  .mb-xxs-60 {
    margin-bottom: 60px; }
  .mb-xxs-70 {
    margin-bottom: 70px; }
  .mb-xxs-80 {
    margin-bottom: 80px; }
  .mb-xxs-90 {
    margin-bottom: 90px; }
  .mb-xxs-100 {
    margin-bottom: 100px; }
  .mb-xxs-110 {
    margin-bottom: 110px; }
  .mb-xxs-120 {
    margin-bottom: 120px; }
  .mb-xxs-130 {
    margin-bottom: 130px; }
  .mb-xxs-140 {
    margin-bottom: 140px; }
  .pt-xxs-0 {
    padding-top: 0 !important; }
  .pt-xxs-10 {
    padding-top: 10px; }
  .pt-xxs-20 {
    padding-top: 20px; }
  .pt-xxs-30 {
    padding-top: 30px; }
  .pt-xxs-40 {
    padding-top: 40px; }
  .pt-xxs-50 {
    padding-top: 50px; }
  .pt-xxs-60 {
    padding-top: 60px; }
  .pt-xxs-70 {
    padding-top: 70px; }
  .pt-xxs-80 {
    padding-top: 80px; }
  .pt-xxs-90 {
    padding-top: 90px; }
  .pt-xxs-100 {
    padding-top: 100px; }
  .pt-xxs-110 {
    padding-top: 110px; }
  .pt-xxs-120 {
    padding-top: 120px; }
  .pt-xxs-130 {
    padding-top: 130px; }
  .pt-xxs-140 {
    padding-top: 140px; }
  .pb-xxs-0 {
    padding-bottom: 0 !important; }
  .pb-xxs-10 {
    padding-bottom: 10px; }
  .pb-xxs-20 {
    padding-bottom: 20px; }
  .pb-xxs-30 {
    padding-bottom: 30px; }
  .pb-xxs-40 {
    padding-bottom: 40px; }
  .pb-xxs-50 {
    padding-bottom: 50px; }
  .pb-xxs-60 {
    padding-bottom: 60px; }
  .pb-xxs-70 {
    padding-bottom: 70px; }
  .pb-xxs-80 {
    padding-bottom: 80px; }
  .pb-xxs-90 {
    padding-bottom: 90px; }
  .pb-xxs-100 {
    padding-bottom: 100px; }
  .pb-xxs-110 {
    padding-bottom: 110px; }
  .pb-xxs-120 {
    padding-bottom: 120px; }
  .pb-xxs-130 {
    padding-bottom: 130px; }
  .pb-xxs-140 {
    padding-bottom: 140px; } }

/* global styles */
.hi-icon a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 100; }

.hi-icon-wrap {
  text-align: center;
  margin: 0 auto; }
  .hi-icon-wrap a {
    text-decoration: none; }
  .hi-icon-wrap .hi-icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff; }
    .hi-icon-wrap .hi-icon.hi-icon-large {
      margin: 15px 30px;
      width: 90px;
      height: 90px; }
      .hi-icon-wrap .hi-icon.hi-icon-large:before {
        speak: none;
        font-size: 48px;
        line-height: 90px; }
    .hi-icon-wrap .hi-icon.hi-icon-medium {
      margin: 10px 20px;
      width: 60px;
      height: 60px; }
      .hi-icon-wrap .hi-icon.hi-icon-medium:before {
        speak: none;
        font-size: 24px;
        line-height: 60px; }
    .hi-icon-wrap .hi-icon.hi-icon-small {
      margin: 7.5px 15px;
      width: 45px;
      height: 45px; }
      .hi-icon-wrap .hi-icon.hi-icon-small:before {
        speak: none;
        font-size: 16px;
        line-height: 45px; }
    .hi-icon-wrap .hi-icon:after {
      pointer-events: none;
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      content: '';
      box-sizing: content-box; }
    .hi-icon-wrap .hi-icon:before {
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      display: block;
      -webkit-font-smoothing: antialiased; }

/* end global styles */
/* Effect 1 light */
.hi-icon-effect-1-light .hi-icon {
  background: rgba(0, 0, 0, 0.8);
  transition: background 0.2s, color 0.2s; }
  .hi-icon-effect-1-light .hi-icon:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(0.8);
    opacity: 0; }

/* Effect 1a light */
.hi-icon-effect-1a-light .hi-icon:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff; }
  .hi-icon-effect-1a-light .hi-icon:hover:after {
    transform: scale(1);
    opacity: 1; }

/* Effect 3 */
.hi-icon-effect-3 .hi-icon {
  box-shadow: 0 0 0 4px #fff;
  transition: color 0.3s; }
  .hi-icon-effect-3 .hi-icon:after {
    top: -2px;
    left: -2px;
    padding: 2px;
    z-index: -1;
    background: #fff;
    transition: transform 0.2s, opacity 0.3s; }

/* Effect 3a */
.hi-icon-effect-3a .hi-icon {
  color: #333; }
  .hi-icon-effect-3a .hi-icon:hover {
    color: #fff; }
    .hi-icon-effect-3a .hi-icon:hover:after {
      transform: scale(1.3);
      opacity: 0; }

/* Effect 3b */
.hi-icon-effect-3b .hi-icon {
  color: #fff; }
  .hi-icon-effect-3b .hi-icon:hover {
    color: #333; }
    .hi-icon-effect-3b .hi-icon:hover:after {
      transform: scale(1);
      opacity: 1; }
  .hi-icon-effect-3b .hi-icon:after {
    transform: scale(1.3);
    opacity: 0; }

.demo-options {
  background: #FBFBFB;
  width: 170px;
  position: fixed;
  top: 185px;
  z-index: 9999;
  left: 0px;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75); }
  .demo-options h2 {
    background: #4b4c4d;
    color: #FFFFFF;
    padding: 0;
    font-size: 15px;
    padding: 5px 15px;
    margin-top: 0;
    line-height: 30px;
    text-transform: uppercase; }
    .demo-options h2 a {
      background: #4b4c4d;
      display: block;
      height: 40px;
      position: absolute;
      right: -36px;
      top: 0;
      width: 40px;
      border-radius: 0 4px 4px 0;
      text-align: center;
      color: #fff;
      padding: 4px 0; }
  .demo-options ul {
    padding: 5px;
    overflow: hidden; }
    .demo-options ul li a {
      width: 100%;
      height: 30px;
      display: block;
      cursor: pointer;
      margin: 0 0 5px 0;
      float: left; }
    .demo-options ul li p {
      font-size: 12px; }
    .demo-options ul #aqua {
      background-color: #47bbae; }
    .demo-options ul #green {
      background-color: #3c948b; }
    .demo-options ul #blue {
      background-color: #1d90ac; }
    .demo-options ul #yellow {
      background-color: #ecb53e; }
    .demo-options ul #orange {
      background-color: #df6c4f; }
    .demo-options ul #red {
      background-color: #ff6347; }

/* Layout Box */
.layout-switcher {
  margin: 0 0 10px 0;
  overflow: hidden; }

.layout-switcher a.layout {
  padding: 8px 7px 7px 7px;
  border-radius: 2px;
  color: #5a5c5d;
  border: 2px solid #EAEAEA;
  width: 39px;
  cursor: pointer;
  float: left;
  display: block;
  margin: 0 6px 0 0;
  text-align: center;
  background: white; }

.layout-switcher a.layout.current {
  cursor: default;
  border: 2px solid; }

/* Color Switcher */
.switcher-box {
  height: auto;
  overflow: hidden;
  margin-bottom: 15px; }
  .switcher-box .styleswitch {
    width: 20px;
    height: 23px;
    display: block;
    cursor: pointer;
    margin: 0 4px 4px 0;
    float: left; }
  .switcher-box .styleswitch.current {
    box-shadow: inset 0 0 5px #000; }

.styleswitch#red {
  background-color: #e7402f; }

.styleswitch#orange {
  background-color: #ef730e; }

.styleswitch#yellow {
  background-color: #f2be0d; }

.styleswitch#turquoise {
  background-color: #2f72a6; }

.styleswitch#green {
  background-color: #9eba30; }

.styleswitch#blue {
  background-color: #2fa6a6; }

.styleswitch#purple {
  background-color: #e62b71; }

.styleswitch#grey {
  background-color: #7f7f7f; }

.styleswitch#brown {
  background-color: #964b00; }

.styleswitch#violet {
  background-color: #9b58b5; }

.skin-green a {
  color: #3c948b; }

.skin-green .btn-primary {
  color: #fff;
  background-color: #3c948b;
  border-color: #35827a;
  box-shadow: inset 0 0 0 0 #35827a; }
  .skin-green .btn-primary:focus, .skin-green .btn-primary.focus {
    color: #fff;
    background-color: #3c948b;
    border-color: #35827a; }
  .skin-green .btn-primary:hover {
    color: #fff;
    background-color: #3c948b;
    border-color: #35827a;
    box-shadow: inset 0 -100px 0 0 #35827a; }
  .skin-green .btn-primary:active, .skin-green .btn-primary.active,
  .open > .skin-green .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #2d7069;
    border-color: #235651; }
    .skin-green .btn-primary:active:hover, .skin-green .btn-primary:active:focus, .skin-green .btn-primary:active.focus, .skin-green .btn-primary.active:hover, .skin-green .btn-primary.active:focus, .skin-green .btn-primary.active.focus,
    .open > .skin-green .btn-primary.dropdown-toggle:hover,
    .open > .skin-green .btn-primary.dropdown-toggle:focus,
    .open > .skin-green .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #235651;
      border-color: #102725; }
  .skin-green .btn-primary:active, .skin-green .btn-primary.active,
  .open > .skin-green .btn-primary.dropdown-toggle {
    background-image: none; }
  .skin-green .btn-primary.disabled:hover, .skin-green .btn-primary.disabled:focus, .skin-green .btn-primary.disabled.focus, .skin-green .btn-primary[disabled]:hover, .skin-green .btn-primary[disabled]:focus, .skin-green .btn-primary[disabled].focus,
  fieldset[disabled] .skin-green .btn-primary:hover,
  fieldset[disabled] .skin-green .btn-primary:focus,
  fieldset[disabled] .skin-green .btn-primary.focus {
    background-color: #3c948b;
    border-color: #35827a; }
  .skin-green .btn-primary .badge {
    color: #3c948b;
    background-color: #fff; }

.skin-green .btn-outline-primary {
  color: #3c948b;
  background-image: none;
  background-color: transparent;
  border-color: #3c948b;
  box-shadow: inset 0 0 0 0 #3c948b; }
  .skin-green .btn-outline-primary:hover {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b;
    box-shadow: inset 0 -100px 0 0 #3c948b; }
  .skin-green .btn-outline-primary:focus, .skin-green .btn-outline-primary.focus {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b; }
  .skin-green .btn-outline-primary:active, .skin-green .btn-outline-primary.active,
  .open > .skin-green .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #3c948b;
    border-color: #3c948b; }
    .skin-green .btn-outline-primary:active:hover, .skin-green .btn-outline-primary:active:focus, .skin-green .btn-outline-primary:active.focus, .skin-green .btn-outline-primary.active:hover, .skin-green .btn-outline-primary.active:focus, .skin-green .btn-outline-primary.active.focus,
    .open > .skin-green .btn-outline-primary.dropdown-toggle:hover,
    .open > .skin-green .btn-outline-primary.dropdown-toggle:focus,
    .open > .skin-green .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #235651;
      border-color: #173936; }
  .skin-green .btn-outline-primary.disabled:focus, .skin-green .btn-outline-primary.disabled.focus, .skin-green .btn-outline-primary:disabled:focus, .skin-green .btn-outline-primary:disabled.focus {
    border-color: #71c5bd; }

.skin-green header.site-header .navbar.dark a:hover {
  color: #3c948b; }

.skin-green header.site-header .navbar.dark ul > li a:hover {
  color: #3c948b; }
  @media (min-width: 992px) {
    .skin-green header.site-header .navbar.dark ul > li a:hover {
      border-top: 3px solid #3c948b; } }

.skin-green header.site-header .navbar.dark ul > li.active a {
  color: #3c948b; }
  @media (min-width: 992px) {
    .skin-green header.site-header .navbar.dark ul > li.active a {
      border-top: 3px solid #3c948b; } }

.skin-green header.site-header .navbar.dark ul > li.no-hover a {
  border-top-width: 0; }

.skin-green .milestone .stat i {
  color: #3c948b; }

.skin-green .filter-container li.active a span {
  background: #3c948b !important; }

.skin-green #progress .tooltip > .tooltip-inner {
  background-color: #3c948b; }

.skin-green #progress .pop-over + .tooltip > .tooltip-arrow {
  border-top: 5px solid #3c948b; }

.skin-green #progress .progress-bar {
  background: #3c948b; }

.skin-green #contact {
  background-color: #3c948b; }

.skin-green .gmap h5 {
  background-color: #3c948b; }

.skin-green .scroll-up-down {
  color: rgba(255, 255, 255, 0.9); }
  .skin-green .scroll-up-down:hover, .skin-green .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }

.skin-blue a {
  color: #1d90ac; }

.skin-blue .btn-primary {
  color: #fff;
  background-color: #1d90ac;
  border-color: #197e96;
  box-shadow: inset 0 0 0 0 #197e96; }
  .skin-blue .btn-primary:focus, .skin-blue .btn-primary.focus {
    color: #fff;
    background-color: #1d90ac;
    border-color: #197e96; }
  .skin-blue .btn-primary:hover {
    color: #fff;
    background-color: #1d90ac;
    border-color: #197e96;
    box-shadow: inset 0 -100px 0 0 #197e96; }
  .skin-blue .btn-primary:active, .skin-blue .btn-primary.active,
  .open > .skin-blue .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #166b80;
    border-color: #105262; }
    .skin-blue .btn-primary:active:hover, .skin-blue .btn-primary:active:focus, .skin-blue .btn-primary:active.focus, .skin-blue .btn-primary.active:hover, .skin-blue .btn-primary.active:focus, .skin-blue .btn-primary.active.focus,
    .open > .skin-blue .btn-primary.dropdown-toggle:hover,
    .open > .skin-blue .btn-primary.dropdown-toggle:focus,
    .open > .skin-blue .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #105262;
      border-color: #072229; }
  .skin-blue .btn-primary:active, .skin-blue .btn-primary.active,
  .open > .skin-blue .btn-primary.dropdown-toggle {
    background-image: none; }
  .skin-blue .btn-primary.disabled:hover, .skin-blue .btn-primary.disabled:focus, .skin-blue .btn-primary.disabled.focus, .skin-blue .btn-primary[disabled]:hover, .skin-blue .btn-primary[disabled]:focus, .skin-blue .btn-primary[disabled].focus,
  fieldset[disabled] .skin-blue .btn-primary:hover,
  fieldset[disabled] .skin-blue .btn-primary:focus,
  fieldset[disabled] .skin-blue .btn-primary.focus {
    background-color: #1d90ac;
    border-color: #197e96; }
  .skin-blue .btn-primary .badge {
    color: #1d90ac;
    background-color: #fff; }

.skin-blue .btn-outline-primary {
  color: #1d90ac;
  background-image: none;
  background-color: transparent;
  border-color: #1d90ac;
  box-shadow: inset 0 0 0 0 #1d90ac; }
  .skin-blue .btn-outline-primary:hover {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac;
    box-shadow: inset 0 -100px 0 0 #1d90ac; }
  .skin-blue .btn-outline-primary:focus, .skin-blue .btn-outline-primary.focus {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac; }
  .skin-blue .btn-outline-primary:active, .skin-blue .btn-outline-primary.active,
  .open > .skin-blue .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #1d90ac;
    border-color: #1d90ac; }
    .skin-blue .btn-outline-primary:active:hover, .skin-blue .btn-outline-primary:active:focus, .skin-blue .btn-outline-primary:active.focus, .skin-blue .btn-outline-primary.active:hover, .skin-blue .btn-outline-primary.active:focus, .skin-blue .btn-outline-primary.active.focus,
    .open > .skin-blue .btn-outline-primary.dropdown-toggle:hover,
    .open > .skin-blue .btn-outline-primary.dropdown-toggle:focus,
    .open > .skin-blue .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #105262;
      border-color: #0b353f; }
  .skin-blue .btn-outline-primary.disabled:focus, .skin-blue .btn-outline-primary.disabled.focus, .skin-blue .btn-outline-primary:disabled:focus, .skin-blue .btn-outline-primary:disabled.focus {
    border-color: #4ec4e1; }

.skin-blue header.site-header .navbar.dark a:hover {
  color: #1d90ac; }

.skin-blue header.site-header .navbar.dark ul > li a:hover {
  color: #1d90ac; }
  @media (min-width: 992px) {
    .skin-blue header.site-header .navbar.dark ul > li a:hover {
      border-top: 3px solid #1d90ac; } }

.skin-blue header.site-header .navbar.dark ul > li.active a {
  color: #1d90ac; }
  @media (min-width: 992px) {
    .skin-blue header.site-header .navbar.dark ul > li.active a {
      border-top: 3px solid #1d90ac; } }

.skin-blue header.site-header .navbar.dark ul > li.no-hover a {
  border-top-width: 0; }

.skin-blue .milestone .stat i {
  color: #1d90ac; }

.skin-blue .filter-container li.active a span {
  background: #1d90ac !important; }

.skin-blue #progress .tooltip > .tooltip-inner {
  background-color: #1d90ac; }

.skin-blue #progress .pop-over + .tooltip > .tooltip-arrow {
  border-top: 5px solid #1d90ac; }

.skin-blue #progress .progress-bar {
  background: #1d90ac; }

.skin-blue #contact {
  background-color: #1d90ac; }

.skin-blue .gmap h5 {
  background-color: #1d90ac; }

.skin-blue .scroll-up-down {
  color: rgba(255, 255, 255, 0.9); }
  .skin-blue .scroll-up-down:hover, .skin-blue .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }

.skin-yellow a {
  color: #ecb53e; }

.skin-yellow .btn-primary {
  color: #fff;
  background-color: #ecb53e;
  border-color: #eaac27;
  box-shadow: inset 0 0 0 0 #eaac27; }
  .skin-yellow .btn-primary:focus, .skin-yellow .btn-primary.focus {
    color: #fff;
    background-color: #ecb53e;
    border-color: #eaac27; }
  .skin-yellow .btn-primary:hover {
    color: #fff;
    background-color: #ecb53e;
    border-color: #eaac27;
    box-shadow: inset 0 -100px 0 0 #eaac27; }
  .skin-yellow .btn-primary:active, .skin-yellow .btn-primary.active,
  .open > .skin-yellow .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #e1a116;
    border-color: #c08a13; }
    .skin-yellow .btn-primary:active:hover, .skin-yellow .btn-primary:active:focus, .skin-yellow .btn-primary:active.focus, .skin-yellow .btn-primary.active:hover, .skin-yellow .btn-primary.active:focus, .skin-yellow .btn-primary.active.focus,
    .open > .skin-yellow .btn-primary.dropdown-toggle:hover,
    .open > .skin-yellow .btn-primary.dropdown-toggle:focus,
    .open > .skin-yellow .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #c08a13;
      border-color: #845e0d; }
  .skin-yellow .btn-primary:active, .skin-yellow .btn-primary.active,
  .open > .skin-yellow .btn-primary.dropdown-toggle {
    background-image: none; }
  .skin-yellow .btn-primary.disabled:hover, .skin-yellow .btn-primary.disabled:focus, .skin-yellow .btn-primary.disabled.focus, .skin-yellow .btn-primary[disabled]:hover, .skin-yellow .btn-primary[disabled]:focus, .skin-yellow .btn-primary[disabled].focus,
  fieldset[disabled] .skin-yellow .btn-primary:hover,
  fieldset[disabled] .skin-yellow .btn-primary:focus,
  fieldset[disabled] .skin-yellow .btn-primary.focus {
    background-color: #ecb53e;
    border-color: #eaac27; }
  .skin-yellow .btn-primary .badge {
    color: #ecb53e;
    background-color: #fff; }

.skin-yellow .btn-outline-primary {
  color: #ecb53e;
  background-image: none;
  background-color: transparent;
  border-color: #ecb53e;
  box-shadow: inset 0 0 0 0 #ecb53e; }
  .skin-yellow .btn-outline-primary:hover {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e;
    box-shadow: inset 0 -100px 0 0 #ecb53e; }
  .skin-yellow .btn-outline-primary:focus, .skin-yellow .btn-outline-primary.focus {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e; }
  .skin-yellow .btn-outline-primary:active, .skin-yellow .btn-outline-primary.active,
  .open > .skin-yellow .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #ecb53e;
    border-color: #ecb53e; }
    .skin-yellow .btn-outline-primary:active:hover, .skin-yellow .btn-outline-primary:active:focus, .skin-yellow .btn-outline-primary:active.focus, .skin-yellow .btn-outline-primary.active:hover, .skin-yellow .btn-outline-primary.active:focus, .skin-yellow .btn-outline-primary.active.focus,
    .open > .skin-yellow .btn-outline-primary.dropdown-toggle:hover,
    .open > .skin-yellow .btn-outline-primary.dropdown-toggle:focus,
    .open > .skin-yellow .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #c08a13;
      border-color: #9b6f0f; }
  .skin-yellow .btn-outline-primary.disabled:focus, .skin-yellow .btn-outline-primary.disabled.focus, .skin-yellow .btn-outline-primary:disabled:focus, .skin-yellow .btn-outline-primary:disabled.focus {
    border-color: #f5d99b; }

.skin-yellow header.site-header .navbar.dark a:hover {
  color: #ecb53e; }

.skin-yellow header.site-header .navbar.dark ul > li a:hover {
  color: #ecb53e; }
  @media (min-width: 992px) {
    .skin-yellow header.site-header .navbar.dark ul > li a:hover {
      border-top: 3px solid #ecb53e; } }

.skin-yellow header.site-header .navbar.dark ul > li.active a {
  color: #ecb53e; }
  @media (min-width: 992px) {
    .skin-yellow header.site-header .navbar.dark ul > li.active a {
      border-top: 3px solid #ecb53e; } }

.skin-yellow header.site-header .navbar.dark ul > li.no-hover a {
  border-top-width: 0; }

.skin-yellow .milestone .stat i {
  color: #ecb53e; }

.skin-yellow .filter-container li.active a span {
  background: #ecb53e !important; }

.skin-yellow #progress .tooltip > .tooltip-inner {
  background-color: #ecb53e; }

.skin-yellow #progress .pop-over + .tooltip > .tooltip-arrow {
  border-top: 5px solid #ecb53e; }

.skin-yellow #progress .progress-bar {
  background: #ecb53e; }

.skin-yellow #contact {
  background-color: #ecb53e; }

.skin-yellow .gmap h5 {
  background-color: #ecb53e; }

.skin-yellow .scroll-up-down {
  color: rgba(255, 255, 255, 0.9); }
  .skin-yellow .scroll-up-down:hover, .skin-yellow .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }

.skin-orange a {
  color: #df6c4f; }

.skin-orange .btn-primary {
  color: #fff;
  background-color: #df6c4f;
  border-color: #db5a39;
  box-shadow: inset 0 0 0 0 #db5a39; }
  .skin-orange .btn-primary:focus, .skin-orange .btn-primary.focus {
    color: #fff;
    background-color: #df6c4f;
    border-color: #db5a39; }
  .skin-orange .btn-primary:hover {
    color: #fff;
    background-color: #df6c4f;
    border-color: #db5a39;
    box-shadow: inset 0 -100px 0 0 #db5a39; }
  .skin-orange .btn-primary:active, .skin-orange .btn-primary.active,
  .open > .skin-orange .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #d44a27;
    border-color: #b63f21; }
    .skin-orange .btn-primary:active:hover, .skin-orange .btn-primary:active:focus, .skin-orange .btn-primary:active.focus, .skin-orange .btn-primary.active:hover, .skin-orange .btn-primary.active:focus, .skin-orange .btn-primary.active.focus,
    .open > .skin-orange .btn-primary.dropdown-toggle:hover,
    .open > .skin-orange .btn-primary.dropdown-toggle:focus,
    .open > .skin-orange .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #b63f21;
      border-color: #7e2c17; }
  .skin-orange .btn-primary:active, .skin-orange .btn-primary.active,
  .open > .skin-orange .btn-primary.dropdown-toggle {
    background-image: none; }
  .skin-orange .btn-primary.disabled:hover, .skin-orange .btn-primary.disabled:focus, .skin-orange .btn-primary.disabled.focus, .skin-orange .btn-primary[disabled]:hover, .skin-orange .btn-primary[disabled]:focus, .skin-orange .btn-primary[disabled].focus,
  fieldset[disabled] .skin-orange .btn-primary:hover,
  fieldset[disabled] .skin-orange .btn-primary:focus,
  fieldset[disabled] .skin-orange .btn-primary.focus {
    background-color: #df6c4f;
    border-color: #db5a39; }
  .skin-orange .btn-primary .badge {
    color: #df6c4f;
    background-color: #fff; }

.skin-orange .btn-outline-primary {
  color: #df6c4f;
  background-image: none;
  background-color: transparent;
  border-color: #df6c4f;
  box-shadow: inset 0 0 0 0 #df6c4f; }
  .skin-orange .btn-outline-primary:hover {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f;
    box-shadow: inset 0 -100px 0 0 #df6c4f; }
  .skin-orange .btn-outline-primary:focus, .skin-orange .btn-outline-primary.focus {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f; }
  .skin-orange .btn-outline-primary:active, .skin-orange .btn-outline-primary.active,
  .open > .skin-orange .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #df6c4f;
    border-color: #df6c4f; }
    .skin-orange .btn-outline-primary:active:hover, .skin-orange .btn-outline-primary:active:focus, .skin-orange .btn-outline-primary:active.focus, .skin-orange .btn-outline-primary.active:hover, .skin-orange .btn-outline-primary.active:focus, .skin-orange .btn-outline-primary.active.focus,
    .open > .skin-orange .btn-outline-primary.dropdown-toggle:hover,
    .open > .skin-orange .btn-outline-primary.dropdown-toggle:focus,
    .open > .skin-orange .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #b63f21;
      border-color: #94331b; }
  .skin-orange .btn-outline-primary.disabled:focus, .skin-orange .btn-outline-primary.disabled.focus, .skin-orange .btn-outline-primary:disabled:focus, .skin-orange .btn-outline-primary:disabled.focus {
    border-color: #efb4a5; }

.skin-orange header.site-header .navbar.dark a:hover {
  color: #df6c4f; }

.skin-orange header.site-header .navbar.dark ul > li a:hover {
  color: #df6c4f; }
  @media (min-width: 992px) {
    .skin-orange header.site-header .navbar.dark ul > li a:hover {
      border-top: 3px solid #df6c4f; } }

.skin-orange header.site-header .navbar.dark ul > li.active a {
  color: #df6c4f; }
  @media (min-width: 992px) {
    .skin-orange header.site-header .navbar.dark ul > li.active a {
      border-top: 3px solid #df6c4f; } }

.skin-orange header.site-header .navbar.dark ul > li.no-hover a {
  border-top-width: 0; }

.skin-orange .milestone .stat i {
  color: #df6c4f; }

.skin-orange .filter-container li.active a span {
  background: #df6c4f !important; }

.skin-orange #progress .tooltip > .tooltip-inner {
  background-color: #df6c4f; }

.skin-orange #progress .pop-over + .tooltip > .tooltip-arrow {
  border-top: 5px solid #df6c4f; }

.skin-orange #progress .progress-bar {
  background: #df6c4f; }

.skin-orange #contact {
  background-color: #df6c4f; }

.skin-orange .gmap h5 {
  background-color: #df6c4f; }

.skin-orange .scroll-up-down {
  color: rgba(255, 255, 255, 0.9); }
  .skin-orange .scroll-up-down:hover, .skin-orange .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }

.skin-red a {
  color: #ff6347; }

.skin-red .btn-primary {
  color: #fff;
  background-color: #ff6347;
  border-color: #ff4d2e;
  box-shadow: inset 0 0 0 0 #ff4d2e; }
  .skin-red .btn-primary:focus, .skin-red .btn-primary.focus {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff4d2e; }
  .skin-red .btn-primary:hover {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff4d2e;
    box-shadow: inset 0 -100px 0 0 #ff4d2e; }
  .skin-red .btn-primary:active, .skin-red .btn-primary.active,
  .open > .skin-red .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff3814;
    border-color: #ef2400; }
    .skin-red .btn-primary:active:hover, .skin-red .btn-primary:active:focus, .skin-red .btn-primary:active.focus, .skin-red .btn-primary.active:hover, .skin-red .btn-primary.active:focus, .skin-red .btn-primary.active.focus,
    .open > .skin-red .btn-primary.dropdown-toggle:hover,
    .open > .skin-red .btn-primary.dropdown-toggle:focus,
    .open > .skin-red .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #ef2400;
      border-color: #ad1a00; }
  .skin-red .btn-primary:active, .skin-red .btn-primary.active,
  .open > .skin-red .btn-primary.dropdown-toggle {
    background-image: none; }
  .skin-red .btn-primary.disabled:hover, .skin-red .btn-primary.disabled:focus, .skin-red .btn-primary.disabled.focus, .skin-red .btn-primary[disabled]:hover, .skin-red .btn-primary[disabled]:focus, .skin-red .btn-primary[disabled].focus,
  fieldset[disabled] .skin-red .btn-primary:hover,
  fieldset[disabled] .skin-red .btn-primary:focus,
  fieldset[disabled] .skin-red .btn-primary.focus {
    background-color: #ff6347;
    border-color: #ff4d2e; }
  .skin-red .btn-primary .badge {
    color: #ff6347;
    background-color: #fff; }

.skin-red .btn-outline-primary {
  color: #ff6347;
  background-image: none;
  background-color: transparent;
  border-color: #ff6347;
  box-shadow: inset 0 0 0 0 #ff6347; }
  .skin-red .btn-outline-primary:hover {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff6347;
    box-shadow: inset 0 -100px 0 0 #ff6347; }
  .skin-red .btn-outline-primary:focus, .skin-red .btn-outline-primary.focus {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff6347; }
  .skin-red .btn-outline-primary:active, .skin-red .btn-outline-primary.active,
  .open > .skin-red .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff6347;
    border-color: #ff6347; }
    .skin-red .btn-outline-primary:active:hover, .skin-red .btn-outline-primary:active:focus, .skin-red .btn-outline-primary:active.focus, .skin-red .btn-outline-primary.active:hover, .skin-red .btn-outline-primary.active:focus, .skin-red .btn-outline-primary.active.focus,
    .open > .skin-red .btn-outline-primary.dropdown-toggle:hover,
    .open > .skin-red .btn-outline-primary.dropdown-toggle:focus,
    .open > .skin-red .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #ef2400;
      border-color: #c71e00; }
  .skin-red .btn-outline-primary.disabled:focus, .skin-red .btn-outline-primary.disabled.focus, .skin-red .btn-outline-primary:disabled:focus, .skin-red .btn-outline-primary:disabled.focus {
    border-color: #ffb9ad; }

.skin-red header.site-header .navbar.dark a:hover {
  color: #ff6347; }

.skin-red header.site-header .navbar.dark ul > li a:hover {
  color: #ff6347; }
  @media (min-width: 992px) {
    .skin-red header.site-header .navbar.dark ul > li a:hover {
      border-top: 3px solid #ff6347; } }

.skin-red header.site-header .navbar.dark ul > li.active a {
  color: #ff6347; }
  @media (min-width: 992px) {
    .skin-red header.site-header .navbar.dark ul > li.active a {
      border-top: 3px solid #ff6347; } }

.skin-red header.site-header .navbar.dark ul > li.no-hover a {
  border-top-width: 0; }

.skin-red .milestone .stat i {
  color: #ff6347; }

.skin-red .filter-container li.active a span {
  background: #ff6347 !important; }

.skin-red #progress .tooltip > .tooltip-inner {
  background-color: #ff6347; }

.skin-red #progress .pop-over + .tooltip > .tooltip-arrow {
  border-top: 5px solid #ff6347; }

.skin-red #progress .progress-bar {
  background: #ff6347; }

.skin-red #contact {
  background-color: #ff6347; }

.skin-red .gmap h5 {
  background-color: #ff6347; }

.skin-red .scroll-up-down {
  color: rgba(255, 255, 255, 0.9); }
  .skin-red .scroll-up-down:hover, .skin-red .scroll-up-down:focus {
    color: rgba(255, 255, 255, 0.9); }