/*
[Table of contents]
1. General ------------------- #line 93
  1.1. Fonts ----------------- #line 95
  1.2. Animation ------------- #line 111
  1.3. Title ----------------- #line 275
  1.4. Text ------------------ #line 290
  1.5. Images ---------------- #line 318
  1.6. Lists ----------------- #line 360
  1.7. Blockquote ------------ #line 366
  1.8. Video ----------------- #line 409
  1.9. Retina ---------------- #line 437
2. Bootstrap Elements -------- #line 450
  2.1. Accordions ------------ #line 450
  2.2. Alerts ---------------- #line 555
  2.3. Buttons --------------- #line 612
  2.4. Drop Down ------------- #line 721
  2.5. Forms ----------------- #line 738
  2.6. List Group ------------ #line 1052
  2.7. Panels ---------------- #line 1107
  2.8. Tables ---------------- #line 1114
  2.9. Tabs ------------------ #line 1163
  2.10. Tooltips ------------- #line 1263
  2.11. Pagination ----------- #line 1271
3. Header -------------------- #line 1301
  3.1. Logo ------------------ #line 1336
  3.2. Dropdown Items -------- #line 1372
  3.3. Menu ------------------ #line 1506
4. Widgets ------------------- #line 1825
  4.1. Search ---------------- #line 1845
  4.2. Menu ------------------ #line 1865
  4.3. Tags ------------------ #line 1890
  4.4. Recent Posts ---------- #line 1915
  4.5. Links ----------------- #line 1956
  4.6. Calendar -------------- #line 1971
  4.7. Facebook -------------- #line 2056
5. Main Content -------------- #line 2069
6. One Page ------------------ #line 2184
  6.1. Pagination ------------ #line 2184
  6.2. Section Scroll -------- #line 2490
  6.3. Structure ------------- #line 2507
  6.4. Banners Section ------- #line 2841
  6.5. About Us Section ------ #line 3052
  6.6. Servises Section ------ #line 3076
  6.7. Team Section ---------- #line 3082
  6.8. Success Section ------- #line 3149
  6.9. Video Section --------- #line 3158
  6.10. Contact Section ------ #line 3178
  6.11. Call Action Section -- #line 3251
  6.12. Pricing Section ------ #line 3263
7. Carousels ----------------- #line 3434
8. Content Elements ---------- #line 4367
  8.1. Charts ---------------- #line 4367
  8.2. Dividers -------------- #line 4402
  8.3. Features -------------- #line 4444
  8.4. Pricings -------------- #line 4579
  8.5. Team ------------------ #line 4797
  8.6. Skills ---------------- #line 4857
  8.7. Posts ----------------- #line 4892
  8.8. Testimonials ---------- #line 4926
  8.9. Success --------------- #line 4962
  8.10. Services ------------- #line 5070
  8.11. Facts ---------------- #line 5596
  8.12. Works ---------------- #line 5982
  8.13. Actions -------------- #line 6676
  8.14. Promo ---------------- #line 6713
  8.15. Contact -------------- #line 7086
  8.16. Numbered List -------- #line 7165
  8.17. Countdown ------------ #line 7383
  8.18. Sandwich Animation --- #line 7426
9. Blog ---------------------- #line 7492
    9.1. Single Post --------- #line 7612
    9.2. Comments ------------ #line 7705
10. Footer ------------------- #line 7810
11. Other Styles ------------- #line 7949
  11.1. Revolution Slider ---- #line 7949
  11.2. Info Box ------------- #line 7958
  11.3. Animation Box -------- #line 8113
  11.4. Page 404 ------------- #line 8141
  11.5. Under Construction --- #line 8166
*/
/******************************************************************************
  General
*******************************************************************************/
/* Fonts */
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i&amp;subset=latin-ext" rel="stylesheet">

/* Animation */
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  75% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  75% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/* line 64, ../sass/_general.scss */
html {
  font-size: 16px;
  overflow: auto;
}


/* line 74, ../sass/_general.scss */
body {
  font-weight: 300;
  height: 100%;
  min-width: 320px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* line 81, ../sass/_general.scss */
.preloader {
  background-color: #6B6E70;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9999;
}
.right {
	float: right!important;
}
/* line 91, ../sass/_general.scss */
.preloader .loader {
  -webkit-animation: loader 4s infinite ease;
  animation: loader 4s infinite ease;
  border: 4px solid #164194;
  display: inline-block;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  top: 50%;
  width: 30px;
}

/* line 102, ../sass/_general.scss */
.preloader .loader .loader-inner {
  -webkit-animation: loader-inner 4s infinite ease-in;
  animation: loader-inner 4s infinite ease-in;
  background-color: #164194;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

/* line 110, ../sass/_general.scss */
.preloader.white {
  background-color: #000;
}

/* line 113, ../sass/_general.scss */
.preloader.white .loader {
  border: 4px solid #fff;
}

/* line 116, ../sass/_general.scss */
.preloader.white .loader .loader-inner {
  background-color: #fff;
}

/* line 121, ../sass/_general.scss */
.preloader.light {
  background-color: #fff;
}

/* line 125, ../sass/_general.scss */
* {
  outline: none;
  word-break: break-word;
}

/* Title */
/* line 131, ../sass/_general.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;

}

/* line 139, ../sass/_general.scss */
h6,
.h6 {
  font-weight: 800;
}

/* Text */
/* line 145, ../sass/_general.scss */
p {
  margin-bottom: 30px;
}

/* line 148, ../sass/_general.scss */
p:last-child {
  margin-bottom: 0;
}

/* line 151, ../sass/_general.scss */
a {
  border-bottom: 0px solid rgba(215, 62, 77, 0.1);
  font-size: 18px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 156, ../sass/_general.scss */
a:hover,
a:focus {
  border-bottom: 0px solid rgba(215, 62, 77, 0.5);
  outline: none;
  text-decoration: none;
}

/* line 163, ../sass/_general.scss */
a:active {
  border-bottom: 1px solid #164194;
}

/* line 167, ../sass/_general.scss */
.dropdown-menu>li>a {
  border: 0 none;
}

/* Images */
/* line 172, ../sass/_general.scss */
img,
svg {
  height: auto;
  max-width: 100%;
}

/* line 177, ../sass/_general.scss */
.alignnone {
  margin: 0 0 15px;
}

/* line 180, ../sass/_general.scss */
.aligncenter {
  clear: both;
  margin: 0 auto 15px;
  text-align: center;
}

/* line 185, ../sass/_general.scss */
.alignleft {
  float: left;
  margin: 0 30px 15px 0;
}

/* line 189, ../sass/_general.scss */
.alignright {
  float: right;
  margin: 0 0 15px 30px;
}

/* line 193, ../sass/_general.scss */
.caption {
  color: #a9bbc9;
  display: inline-block;
  font-size: 0.81em;
  font-style: italic;
  line-height: 1.62;
  margin-top: 5px;
  margin-bottom: 15px;
  max-width: 100%;
}

/* line 203, ../sass/_general.scss */
.caption img {
  display: block;
  margin: 0 auto 15px;
}

/* Lists */
/* line 210, ../sass/_general.scss */
ul,
ol {
  padding-left: 25px;
}

/* Blockquote */
/* line 216, ../sass/_general.scss */
blockquote {
  border-left-width: 1px;
  line-height: 1.6;
  padding: 0 0 0 20px;
}

/* line 221, ../sass/_general.scss */
blockquote.blockquote-reverse,
blockquote.pull-right {
  border-right-width: 1px;
  padding-right: 20px;
}

/* line 227, ../sass/_general.scss */
blockquote p {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 12px;
}

/* line 233, ../sass/_general.scss */
blockquote footer,
blockquote small,
blockquote .small {
  font-size: 0.7em;
  line-height: 1.43;
}

/* line 241, ../sass/_general.scss */
.no-left-indent {
  padding-left: 0;
}

/* line 244, ../sass/_general.scss */
.no-right-indent {
  padding-right: 0;
}

/* line 247, ../sass/_general.scss */
.map-canvas {
  height: 330px;
}

/* line 250, ../sass/_general.scss */
.map-content .title {
  font-size: 20px;
  margin: 0;
}

/* line 254, ../sass/_general.scss */
.map-canvas img {
  max-width: inherit;
}

/* Video */
/* line 259, ../sass/_general.scss */
embed,
iframe,
object,
video,
audio {
  border: 0 none;
  max-width: 100%;
}

/* line 267, ../sass/_general.scss */
.video-box {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

/* line 273, ../sass/_general.scss */
.video-box embed,
.video-box iframe,
.video-box object,
.video-box video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/******************************************************************************
  Accordions
*******************************************************************************/
/* line 5, ../sass/_accordions.scss */
.panel-group .panel {
  background: none;
  border: 0 none;
  box-shadow: none;
  margin: 0 0 26px;
}

/* line 11, ../sass/_accordions.scss */
.panel-group .panel+.panel {
  margin-top: 0;
}

/* line 14, ../sass/_accordions.scss */
.panel-group .panel .panel-heading {
  background: none;
  border: 0 none;
  padding: 0;
  color: #1eb3c5;
}

/* line 20, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title {
  font-family: 'Ubuntu', sans-serif;;
  overflow: hidden;
  position: relative;
  text-transform: none;
}

/* line 26, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title a {
  border: 0 none;
  color: inherit;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  padding-right: 21px;
}

/* line 32, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title a:after {
  color: #1eb3c5;
  content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .";
  display: inline-block;
  font-size: .5em;
  line-height: 40px;
  margin: -10px 25px 0 5px;
  pointer-events: none;
  position: absolute;
}

/* line 43, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title a:hover {
  color: #164194;
}

/* line 47, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title .collapse-btn {
  color: #164194;
  float: right;
  height: 20px;
  margin: 1px 0;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 20px;
}

/* line 57, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title .collapse-btn:before,
.panel-group .panel .panel-heading .panel-title .collapse-btn:after {
  background: #164194;
  display: block;
  content: "";
  height: 100%;
  left: 50%;
  margin: 0 0 0 -1px;
  position: absolute;
  top: 0;
  width: 2px;
}

/* line 69, ../sass/_accordions.scss */
.panel-group .panel .panel-heading .panel-title .collapse-btn:after {
  height: 2px;
  left: 0;
  margin: -1px 0 0;
  top: 50%;
  width: 100%;
}

/* line 79, ../sass/_accordions.scss */
.panel-group .panel .panel-body {
  border: 0 none !important;
  line-height: 1.375em;
  padding: 26px 0 0;
}

/* line 87, ../sass/_accordions.scss */
.panel-group .panel.active .panel-heading .panel-title a {
  color: #164194;
}

/* line 91, ../sass/_accordions.scss */
.panel-group .panel.active .panel-heading .panel-title .collapse-btn:before {
  display: none;
}

/* line 102, ../sass/_accordions.scss */
.panel-group.second-style .panel .panel-heading {
  color: #7d6d5e;
}

/* line 106, ../sass/_accordions.scss */
.panel-group.second-style .panel .panel-heading .panel-title a:after {
  color: inherit;
}

/* line 115, ../sass/_accordions.scss */
.panel-group.third-style .panel .panel-heading {
  color: #b58664;
}

/* line 120, ../sass/_accordions.scss */
.panel-group.third-style .panel .panel-heading .panel-title a:hover {
  color: #b58664;
}

/* line 123, ../sass/_accordions.scss */
.panel-group.third-style .panel .panel-heading .panel-title a:after {
  color: #fff;
}

/* line 128, ../sass/_accordions.scss */
.panel-group.third-style .panel .panel-heading .panel-title .collapse-btn:before,
.panel-group.third-style .panel .panel-heading .panel-title .collapse-btn:after {
  background: #b58664;
}

/* line 138, ../sass/_accordions.scss */
.panel-group.third-style .panel.active .panel-heading .panel-title a {
  color: #b58664;
}

/******************************************************************************
  Alerts
*******************************************************************************/
/* line 4, ../sass/_alerts.scss */
.alert {
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-size: .88em;
  line-height: 1.29;
  margin-bottom: 10px;
  padding: 18px 25px 18px 21px;
  position: relative;
}

/* line 13, ../sass/_alerts.scss */
.alert .close {
  color: #fff;
  font-size: 20px;
  line-height: 16px;
  opacity: .5;
  position: absolute;
  right: 8px;
  top: 6px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 23, ../sass/_alerts.scss */
.alert .close:hover {
  opacity: .75;
}

/* line 26, ../sass/_alerts.scss */
.alert .close .fa {
  font-size: 16px;
  vertical-align: top;
}

/* line 31, ../sass/_alerts.scss */
.alert .icon {
  color: #fff;
  color: rgba(255, 255, 255, 0.75);
  float: left;
  font-size: 2em;
  line-height: 1;
  margin: 0 23px 0 0;
  min-width: 24px;
  text-align: center;
  vertical-align: top;
}

/* line 42, ../sass/_alerts.scss */
.alert .content {
  overflow: hidden;
}

/* line 45, ../sass/_alerts.scss */
.alert.alert-default {
  background-color: #1e2d3a;
  border-color: #1e2d3a;
}

/* line 49, ../sass/_alerts.scss */
.alert.alert-primary {
  background-color: #375099;
  border-color: #375099;
}

/* line 53, ../sass/_alerts.scss */
.alert.alert-black {
  background-color: #000;
  border-color: #000;
}

/******************************************************************************
  Buttons
*******************************************************************************/
/* line 4, ../sass/_buttons.scss */
.btn {
  border-radius: 2px;
  font-size: 1.13em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: .1em;
  overflow: hidden;
  padding: 6px 30px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  white-space: normal;
}

/* line 18, ../sass/_buttons.scss */
.btn:hover,
.btn:focus {
  border-width: 1px;
}

/* line 22, ../sass/_buttons.scss */
.btn:active,
.btn.active {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* line 26, ../sass/_buttons.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none;
}

/* line 31, ../sass/_buttons.scss */
.btn:before {
  border-top: 500px solid rgba(0, 0, 0, 0.05);
  border-right: 500px solid transparent;
  content: "";
  display: block;
  height: 0;
  left: 72%;
  margin: -1px 0 0 -500px;
  position: absolute;
  top: 0;
  width: 0;
  -webkit-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
}

/* line 44, ../sass/_buttons.scss */
.btn:hover:before {
  left: 63%;
}

/* line 47, ../sass/_buttons.scss */
.btn.btn-link:before,
.btn:active:before,
.btn.active:before,
.btn.disabled:before,
.btn[disabled]:before,
fieldset[disabled] .btn:before {
  opacity: 0;
}

/* line 55, ../sass/_buttons.scss */
.btn.btn-primary {
  background-color: #375099;
  border-color: #375099;
}

/* line 59, ../sass/_buttons.scss */
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: rgba(55, 80, 153, 0.9);
  border-color: rgba(55, 80, 153, 0.9);
}

/* line 65, ../sass/_buttons.scss */
.btn.btn-success {
  background-color: #179680;
  border-color: #179680;
}

/* line 69, ../sass/_buttons.scss */
.btn.btn-success:hover,
.btn.btn-success:focus {
  background-color: rgba(23, 150, 128, 0.9);
  border-color: rgba(23, 150, 128, 0.9);
}

/* line 76, ../sass/_buttons.scss */
.btn.btn-info {
  background-color: #20bdd0;
  border-color: #20bdd0;
}

/* line 80, ../sass/_buttons.scss */
.btn.btn-info:hover,
.btn.btn-info:focus {
  background-color: rgba(32, 189, 208, 0.9);
  border-color: rgba(32, 189, 208, 0.9);
}

/* line 87, ../sass/_buttons.scss */
.btn.btn-warning {
  background-color: #d6973d;
  border-color: #d6973d;
}

/* line 91, ../sass/_buttons.scss */
.btn.btn-warning:hover,
.btn.btn-warning:focus {
  background-color: rgba(214, 151, 61, 0.9);
  border-color: rgba(214, 151, 61, 0.9);
}

/* line 97, ../sass/_buttons.scss */
.btn.btn-danger {
  background-color: #6B6E70;
  border-color: #6B6E70;
}

/* line 101, ../sass/_buttons.scss */
.btn.btn-danger:hover,
.btn.btn-danger:focus {
  background-color: #164194;
  border-color: #164194;
}

/* line 107, ../sass/_buttons.scss */
.btn.btn-black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

/* line 112, ../sass/_buttons.scss */
.btn.btn-black:hover,
.btn.btn-black:focus {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.9);
}

/* line 118, ../sass/_buttons.scss */
.btn.btn-lg,
.btn-group-lg>.btn {
  font-size: 1.5em;
  padding: 6px 40px;
}

/* line 123, ../sass/_buttons.scss */
.btn.btn-sm,
.btn-group-sm>.btn {
  font-size: 1.125em;
  padding: 2px 20px;
}

/* line 128, ../sass/_buttons.scss */
.btn.btn-xs,
.btn-group-xs>.btn {
  font-size: .9em;
  padding: 2px 15px;
}

/******************************************************************************
  Drop Down
*******************************************************************************/
/* line 4, ../sass/_dropdown.scss */
.dropdown-menu {
  box-shadow: none;
  min-width: 150px;
}

/* line 9, ../sass/_dropdown.scss */
.dropdown-menu>li>a {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.3;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

/******************************************************************************
  Forms
*******************************************************************************/
/* line 4, ../sass/_forms.scss */
input[type="file"] {
  line-height: 1;
}

/* line 7, ../sass/_forms.scss */
textarea {
  min-height: 67px;
  resize: none;
}

/* line 11, ../sass/_forms.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 14, ../sass/_forms.scss */
.form-control {
  box-shadow: none;
  color: #768088;
  height: 42px;
  line-height: 1.3;
  padding: 5px 15px;
}

/* line 21, ../sass/_forms.scss */
.inverse .form-control {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  color: #fff;
}

/* line 26, ../sass/_forms.scss */
.form-control:focus {
  border-color: rgba(30, 45, 58, 0.7);
  color: #1e2d3a;
  box-shadow: none;
}

/* line 31, ../sass/_forms.scss */
.inverse .form-control:focus {
  color: #fff;
}

/* line 36, ../sass/_forms.scss */
.inverse ::-webkit-input-placeholder {
  color: #fff;
}

/* line 39, ../sass/_forms.scss */
.inverse :-moz-placeholder {
  color: #fff;
}

/* line 42, ../sass/_forms.scss */
.inverse ::-moz-placeholder {
  color: #fff;
}

/* line 45, ../sass/_forms.scss */
.inverse :-ms-input-placeholder {
  color: #fff;
}

/* line 48, ../sass/_forms.scss */
.input-lg,
.form-horizontal .form-group-lg .form-control,
.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
  height: 49px;
}

/* line 55, ../sass/_forms.scss */
.input-sm,
.form-horizontal .form-group-sm .form-control,
.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
  height: 34px;
}

/* line 62, ../sass/_forms.scss */
select.input-sm,
.input-group-sm>select.form-control,
.input-group-sm>select.input-group-addon,
.input-group-sm>.input-group-btn>select.btn,
.form-group-sm .form-control,
select.input-lg,
.input-group-lg>select.form-control,
.input-group-lg>select.input-group-addon,
.input-group-lg>.input-group-btn>select.btn,
.form-group-lg .form-control {
  line-height: 1.3;
}

/* line 74, ../sass/_forms.scss */
.radio,
.checkbox {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 79, ../sass/_forms.scss */
.radio label,
.checkbox label {
  color: #111;
  font-weight: 300;
  padding-left: 32px;
}

/* line 85, ../sass/_forms.scss */
.radio.disabled,
.checkbox.disabled {
  opacity: .5;
}

/* line 88, ../sass/_forms.scss */
.radio.disabled .new-radio,
.radio.disabled .new-checkbox,
.checkbox.disabled .new-radio,
.checkbox.disabled .new-checkbox {
  background: #aac0d0;
  border-color: transparent;
}

/* line 93, ../sass/_forms.scss */
.inverse .radio.disabled .new-radio,
.inverse .radio.disabled .new-checkbox,
.inverse .checkbox.disabled .new-radio,
.inverse .checkbox.disabled .new-checkbox {
  background-color: rgba(0, 0, 0, 0.2);
}

/* radio/checkbox styling */
/* line 100, ../sass/_forms.scss */
.new-radio,
.new-checkbox {
  background: #fff;
  border: 1px solid rgba(170, 192, 208, 0.5);
  border-radius: 3px;
  cursor: pointer;
  float: left;
  height: 24px;
  margin: 3px 0 0 -32px;
  position: absolute;
  width: 24px;
}

/* line 112, ../sass/_forms.scss */
.inverse .new-radio,
.inverse .new-checkbox {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

/* line 117, ../sass/_forms.scss */
.new-radio input,
.new-checkbox input {
  cursor: pointer;
  margin: 0 !important;
  opacity: 0;
}

/* line 123, ../sass/_forms.scss */
.new-radio svg,
.new-checkbox svg {
  display: none;
  height: 18px;
  margin: 2px 0 0 2px;
  vertical-align: top;
  width: 18px;
}

/* line 131, ../sass/_forms.scss */
.new-radio.checked,
.new-checkbox.checked {
  background: #aac0d0;
  border-color: transparent;
}

/* line 135, ../sass/_forms.scss */
.inverse .new-radio.checked,
.inverse .new-checkbox.checked {
  background: rgba(0, 0, 0, 0.2);
}

/* line 138, ../sass/_forms.scss */
.new-radio.checked svg,
.new-checkbox.checked svg {
  display: block;
}

/* line 141, ../sass/_forms.scss */
.inverse .new-radio.checked svg,
.inverse .new-checkbox.checked svg {
  opacity: .75;
}

/* line 147, ../sass/_forms.scss */
.new-radio {
  border-radius: 12px;
}

/* line 150, ../sass/_forms.scss */
.new-radio span {
  background: #fff;
  border-radius: 5px;
  display: none;
  height: 10px;
  margin: 6px 0 0 6px;
  width: 10px;
}

/* line 158, ../sass/_forms.scss */
.inverse .new-radio span {
  background: rgba(255, 255, 255, 0.75);
}

/* line 163, ../sass/_forms.scss */
.new-radio.checked span {
  display: block;
}

/* line 171, ../sass/_forms.scss */
.form-inline .radio label,
.form-inline .checkbox label,
.navbar-form .radio label,
.navbar-form .checkbox label {
  padding-left: 32px;
}

/* line 175, ../sass/_forms.scss */
.form-inline .radio input[type="radio"],
.form-inline .radio input[type="checkbox"],
.form-inline .checkbox input[type="radio"],
.form-inline .checkbox input[type="checkbox"],
.navbar-form .radio input[type="radio"],
.navbar-form .radio input[type="checkbox"],
.navbar-form .checkbox input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
  position: absolute;
}

/* line 181, ../sass/_forms.scss */
.radio-inline,
.checkbox-inline {
  padding-left: 32px;
}

/* line 186, ../sass/_forms.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #179680;
}

/* line 194, ../sass/_forms.scss */
.has-success .help-block label,
.has-success .control-label label,
.has-success .radio label,
.has-success .checkbox label,
.has-success .radio-inline label,
.has-success .checkbox-inline label {
  color: #179680;
}

/* line 200, ../sass/_forms.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #d6973d;
}

/* line 208, ../sass/_forms.scss */
.has-warning .help-block label,
.has-warning .control-label label,
.has-warning .radio label,
.has-warning .checkbox label,
.has-warning .radio-inline label,
.has-warning .checkbox-inline label {
  color: #d6973d;
}

/* line 214, ../sass/_forms.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #164194;
}

/* line 222, ../sass/_forms.scss */
.has-error .help-block label,
.has-error .control-label label,
.has-error .radio label,
.has-error .checkbox label,
.has-error .radio-inline label,
.has-error .checkbox-inline label {
  color: #164194;
}

/* line 227, ../sass/_forms.scss */
.bootstrap-select {
  background: none;
}

/* line 230, ../sass/_forms.scss */
.inverse .bootstrap-select {
  background: none;
}

/* line 233, ../sass/_forms.scss */
.bootstrap-select .selectpicker {
  font-size: 1em;
  font-weight: 300;
  font-family: 'Ubuntu', sans-serif;;
  letter-spacing: 0;
  line-height: 1.5;
  outline: none;
  padding: 8px 40px 8px 14px;
  text-transform: none;
  white-space: nowrap;
}

/* line 244, ../sass/_forms.scss */
.bootstrap-select .selectpicker:before {
  display: none;
}

/* line 247, ../sass/_forms.scss */
.bootstrap-select .selectpicker:hover,
.bootstrap-select .selectpicker:focus {
  outline: none !important;
}

/* line 251, ../sass/_forms.scss */
.bootstrap-select .selectpicker.btn-default {
  background: #fff !important;
  border-color: rgba(170, 192, 208, 0.5);
  box-shadow: none;
  color: #768088;
}

/* line 257, ../sass/_forms.scss */
.inverse .bootstrap-select .selectpicker.btn-default {
  background: rgba(0, 0, 0, 0.2) !important;
  border-color: transparent;
  color: #fff;
}

/* line 263, ../sass/_forms.scss */
.bootstrap-select .selectpicker .caret {
  border: 0 none;
  font-size: 1.2em;
  font-family: FontAwesome;
  margin: -10px 14px 0 0 !important;
}

/* line 269, ../sass/_forms.scss */
.inverse .bootstrap-select .selectpicker .caret {
  color: #aac0d0;
}

/* line 272, ../sass/_forms.scss */
.bootstrap-select .selectpicker .caret:before {
  content: "\f107";
  display: block;
  line-height: 1;
  position: absolute;
  vertical-align: top;
}

/* line 284, ../sass/_forms.scss */
.bootstrap-select.dropup .caret:before {
  content: "\f106";
}

/* line 291, ../sass/_forms.scss */
.bootstrap-select.open .selectpicker.btn-default {
  border: 1px solid #1e2d3a;
  border: 1px solid rgba(30, 45, 58, 0.7);
}

/* line 297, ../sass/_forms.scss */
.bootstrap-select.input-sm .selectpicker {
  padding-top: 5px;
  padding-bottom: 5px;
}

/******************************************************************************
  List Group
*******************************************************************************/
/* line 4, ../sass/_list-group.scss */
.list-group-item {
  border-color: #ddd;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

/* line 8, ../sass/_list-group.scss */
.list-group-item:hover,
.list-group-item:focus {
  border-width: 1px;
  border-color: #ddd;
}

/* line 14, ../sass/_list-group.scss */
.list-group-item>.badge {
  margin-top: 4.5px;
}

/* List Group styling */
/* line 19, ../sass/_list-group.scss */
.list-group-item-success,
.list-group-item-success:hover,
.list-group-item-success:focus {
  border-color: #179680;
  color: #fff;
}

/* line 30, ../sass/_list-group.scss */
.list-group-item-info,
.list-group-item-info:hover,
.list-group-item-info:focus {
  border-color: #20bdd0;
  color: #fff;
}

/* line 39, ../sass/_list-group.scss */
.list-group-item-warning,
.list-group-item-warning:hover,
.list-group-item-warning:focus {
  border-color: #d6973d;
  color: #fff;
}

/* line 48, ../sass/_list-group.scss */
.list-group-item-danger,
.list-group-item-danger:hover,
.list-group-item-danger:focus {
  border-color: #164194;
  color: #fff;
}

/* line 58, ../sass/_list-group.scss */
a.list-group-item {
  color: #1e2d3a;
  font-size: 1em;
}

/* line 62, ../sass/_list-group.scss */
a.list-group-item-success,
a.list-group-item-success:hover,
a.list-group-item-success:focus,
a.list-group-item-info,
a.list-group-item-info:hover,
a.list-group-item-info:focus,
a.list-group-item-warning,
a.list-group-item-warning:hover,
a.list-group-item-warning:focus,
a.list-group-item-danger,
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #fff;
}

/******************************************************************************
  Panels
*******************************************************************************/
/* line 10, ../sass/_panels.scss */
.panel.panel-primary .panel-heading,
.panel.panel-success .panel-heading,
.panel.panel-info .panel-heading,
.panel.panel-warning .panel-heading,
.panel.panel-danger .panel-heading {
  color: #fff;
}

/******************************************************************************
  Tables
*******************************************************************************/
/* line 5, ../sass/_tables.scss */
.table>thead>tr>th,
.table>thead>tr>td,
.table>tbody>tr>th,
.table>tbody>tr>td,
.table>tfoot>tr>th,
.table>tfoot>tr>td {
  line-height: 1.82;
}

/* line 13, ../sass/_tables.scss */
.table>thead>tr>th {
  border-bottom-width: 1px;
  color: #164194;
  font-size: 1.25em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  text-transform: uppercase;
}

/* line 22, ../sass/_tables.scss */
.table.table-center,
.table.table-center td,
.table.table-center th {
  text-align: center;
}

/* line 27, ../sass/_tables.scss */
.table.table-hover>tbody>tr>td,
.table.table-hover>tbody>tr>th,
.table.table-hover>tbody>tr:hover>td,
.table.table-hover>tbody>tr:hover>th {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

/* line 33, ../sass/_tables.scss */
.table.table-bordered>thead>tr>th,
.table.table-bordered>thead>tr>td,
.table.table-hover>tbody>tr:hover>td,
.table.table-hover>tbody>tr:hover>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th {
  background: rgba(0, 0, 0, 0.01);
}

/* line 51, ../sass/_tables.scss */
.table .success,
.table .info,
.table .warning,
.table .danger {
  color: #fff;
}

/******************************************************************************
  Tabs
*******************************************************************************/
/* line 4, ../sass/_tabs.scss */
.nav-tabs {
  border-bottom: 0 none;
  color: #768088;
  font-size: 0.81em;
}

/* line 10, ../sass/_tabs.scss */
.nav-tabs>li>a {
  color: rgba(118, 128, 136, 0.75);
  font-size: 1em;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 15, ../sass/_tabs.scss */
.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
  background: none;
  border-bottom-color: transparent;
  color: #768088;
}

/* line 24, ../sass/_tabs.scss */
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  border-bottom-color: #fff;
  color: #768088;
}

/* line 33, ../sass/_tabs.scss */
.nav-tabs>li.open>a,
.nav-tabs>li.open>a:hover,
.nav-tabs>li.open>a:focus {
  border-color: #dbe0e5;
}

/* line 40, ../sass/_tabs.scss */
.nav-tabs>li:last-child a {
  margin-right: 0;
}

/* line 47, ../sass/_tabs.scss */
.tab-content {
  background: #fff;
  border: 1px solid #dbe0e5;
  border-radius: 3px;
  padding: 18px 17px 14px;
}

/* line 53, ../sass/_tabs.scss */
.tab-content .tab-pane {
  color: #768088;
  font-size: 0.88em;
  line-height: 1.64;
  padding: 0;
}

/* line 61, ../sass/_tabs.scss */
.tabs-left>.nav-tabs {
  border: 0 none;
  float: left;
  margin: 0 -1px 0 0;
}

/* line 66, ../sass/_tabs.scss */
.tabs-left>.nav-tabs>li {
  float: none;
  margin: 0;
}

/* line 70, ../sass/_tabs.scss */
.tabs-left>.nav-tabs>li>a {
  border-color: transparent;
  border-radius: 3px 0 0 3px;
  margin: 0 0 2px;
}

/* line 76, ../sass/_tabs.scss */
.tabs-left>.nav-tabs>li.active>a {
  border-color: #dbe0e5;
  border-right-color: transparent;
}

/* line 83, ../sass/_tabs.scss */
.tabs-left>.tab-content {
  border-left: 1px solid #dbe0e5;
  margin: 0;
  overflow: auto;
}

/* line 89, ../sass/_tabs.scss */
.accordion-tab,
.tabs-left .accordion-tab {
  float: none;
}

/* line 93, ../sass/_tabs.scss */
.accordion-tab>li,
.tabs-left .accordion-tab>li {
  background-color: #fff;
  border: 1px solid #dbe0e5;
  border-radius: 3px;
  float: none;
  margin: 0 0 3px;
}

/* line 100, ../sass/_tabs.scss */
.accordion-tab>li>a,
.tabs-left .accordion-tab>li>a {
  border-color: transparent !important;
  margin: 0;
}

/* line 104, ../sass/_tabs.scss */
.accordion-tab>li>.tab-pane,
.tabs-left .accordion-tab>li>.tab-pane {
  border-top: 1px solid #dbe0e5;
  border-radius: 0 0 3px 3px;
  display: none;
  padding: 5px 17px;
}

/* line 111, ../sass/_tabs.scss */
.accordion-tab>li.active>a,
.tabs-left .accordion-tab>li.active>a {
  background: none;
}

/******************************************************************************
  Tooltips
*******************************************************************************/
/* line 4, ../sass/_tooltips.scss */
a[data-toggle="tooltip"],
.tooltip-link {
  white-space: nowrap;
}

/******************************************************************************
  Pagination
*******************************************************************************/
/* line 4, ../sass/_pagination.scss */
.pagination {
  margin: 80px 0 0;
  border-radius: 0;
}

/* line 9, ../sass/_pagination.scss */
.pagination>li>a,
.pagination>li>a:visited,
.pagination>li>span {
  border: 0 none;
  border-radius: 2px;
  color: #fbfdfe;
  font-size: .75em;
  font-weight: 300;
  min-width: 36px;
  margin: 0 2px;
  padding: 5px 12px;
  text-align: center;
  -webkit-transition: bottom 0.2s ease-in-out, background 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out, background 0.2s ease-in-out;
}

/* line 25, ../sass/_pagination.scss */
.pagination>li>a .fa,
.pagination>li>a:visited .fa,
.pagination>li>span .fa {
  font-size: 1.2em;
  line-height: .8;
  vertical-align: middle;
}

/******************************************************************************
  Header
*******************************************************************************/
/* line 4, ../sass/_header.scss */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 500;
  width: 100%;
}

/* line 14, ../sass/_header.scss */
.site-header .container-fluid,
.site-header .container {
  
}

/* line 18, ../sass/_header.scss */
.site-header .container-fluid .row>*,
.site-header .container .row>* {
  height: 70px;
}


/* line 26, ../sass/_header.scss */
.site-header .left-align {
  text-align: left;
}

/* line 29, ../sass/_header.scss */
.site-header .right-align {
  text-align: right;
}

/* line 43, ../sass/_header.scss */
.site-header .logo-box .logo-t {
  display: table;
  height: 70px;
  vertical-align: middle;
  width: 100%;
}


/* line 52, ../sass/_header.scss */
.site-header .logo-box .logo-t .logo-tr {
  display: table-row;
}

/* line 55, ../sass/_header.scss */
.site-header .logo-box .logo-t .logo-tr .logo-tc {
  border: 0 none;
  display: table-cell;
  height: 70px;
  vertical-align: middle;
}


/* line 64, ../sass/_header.scss */
.site-header .logo-box .logo-t .logo-tr .logo-tc .logo {
  border: 0 none;
}

/* line 73, ../sass/_header.scss */
.site-header .dropdown-item {
  font-family: 'Ubuntu', sans-serif;
  margin: 0;
}

/* line 77, ../sass/_header.scss */
.site-header .dropdown-item+.dropdown-item {
  margin-left: 1px;
}

/* line 81, ../sass/_header.scss */
.site-header .dropdown-item .btn {
 border: 0 none;
border-radius: 0;
box-shadow: none;
font-size: 18px;
font-weight: 300;
height: 70px;
letter-spacing: 0;
padding:10px 4px 5px 20px;
}


/* line 98, ../sass/_header.scss */
.site-header .dropdown-item .btn:hover,
.site-header .dropdown-item .btn:focus,
.site-header .dropdown-item .btn:active,
.site-header .dropdown-item .btn.active {
  border: 0 none;
  box-shadow: none;
}

/* line 106, ../sass/_header.scss */
.site-header .dropdown-item .btn.btn-default {
  background: none;
  -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
  transition: background .2s ease-in-out, color .2s ease-in-out;
}

/* line 112, ../sass/_header.scss */
.site-header .dropdown-item .btn.btn-default:hover {
  background: #fff;
}

/* line 116, ../sass/_header.scss */
.site-header .dropdown-item .btn:before {
  display: none;
}

/* line 120, ../sass/_header.scss */
.site-header .dropdown-item .btn .caret {
  border: 0 none;
  font-size: 15px;
  font-family: FontAwesome;
  height: auto;
  margin: 8px 8px !important;
  vertical-align: top;
  width: auto;
}

/* line 129, ../sass/_header.scss */
.site-header .dropdown-item .btn .caret:before {
  content: "\f107";
  display: block;
  line-height: 1;
  vertical-align: top;
}

/* line 138, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu {
  background: none;
  border: 0 none;
  border-radius: 0;
  display: block !important;
  font-size: 1.75em;
  margin: 0;
  min-width: inherit;
  padding: 1px 0;
  -webkit-transition: visibility 0.2s ease-in-out;
  transition: visibility 0.2s ease-in-out;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  visibility: hidden;
  white-space: nowrap;
}


/* line 155, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li {
  display: inline-block;
  margin: 0 1px 0 0;
  vertical-align: top;
}

/* line 160, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li:last-child {
  margin-right: 0;
}

/* line 164, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a {
  background: #f4f5f6;
  color: #000;
  padding: 17px 20px;
  min-width: 70px;
  text-align: center;
}

/* line 175, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a:hover,
.site-header .dropdown-item .dropdown-menu li a:focus {
  background: #fff;
  color: rgba(30, 45, 58, 0.85);
  -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
  transition: background .2s ease-in-out, color .2s ease-in-out;
}

/* line 184, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a .fa {
  vertical-align: text-bottom;
}

/* line 187, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a .fa.fa-facebook {
  color: #214bb5;
}

/* line 190, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a .fa.fa-twitter {
  color: #1dafe5;
}

/* line 193, ../sass/_header.scss */
.site-header .dropdown-item .dropdown-menu li a .fa.fa-pinterest {
  color: #d4355b;
}

/* line 201, ../sass/_header.scss */
.site-header .dropdown-item.share .btn {
  color: #a4abb0;
}

/* line 207, ../sass/_header.scss */
.site-header .dropdown-item.open .btn-default,
.site-header .dropdown-item.open .btn-default:hover {
  background: #f4f5f6;
  color: #164194;
  -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
  transition: background .2s ease-in-out, color .2s ease-in-out;
}

/* line 216, ../sass/_header.scss */
.site-header .dropdown-item.open .dropdown-menu {
  -webkit-transition-delay: 0;
  transition-delay: 0;
  visibility: visible;
}

/* line 222, ../sass/_header.scss */
.site-header .right-align .dropdown-item .dropdown-menu {
  left: auto;
  right: 0;
}

/* line 228, ../sass/_header.scss */
.site-header .navbar {
  background: none;
  border: 0 none;
  border-radius: 0;
  margin: 0;
}

/* line 234, ../sass/_header.scss */
.site-header .navbar .navbar-toggle {
  background: #f4f5f6;
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  float: none;
  height: 70px;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px 20px;
}


/* line 251, ../sass/_header.scss */
.site-header .navbar .navbar-toggle:before {
  display: none;
}

/* line 255, ../sass/_header.scss */
.site-header .navbar .navbar-toggle .icon {
  display: block;
  height: 24px;
  margin: 18px auto 0;
  width: 30px;
  -webkit-transition: margin 0.2s ease-in-out;
  transition: margin 0.2s ease-in-out;
}

/* line 267, ../sass/_header.scss */
.site-header .navbar .navbar-toggle .icon.open-icon {
  margin-top: 27px;
  padding-top: 1.5px;
}

/* line 272, ../sass/_header.scss */
.site-header .navbar .navbar-toggle .icon svg {
  width: 24px;
}


/* line 279, ../sass/_header.scss */
.site-header .navbar .navbar-toggle .icon-bar {
  background: #b2b3b4;
  border-radius: 2px;
  height: 3px;
  width: 30px;
}


/* line 288, ../sass/_header.scss */
.site-header .navbar .navbar-toggle .icon-bar+.icon-bar {
  margin-top: 6px;
}


/* line 295, ../sass/_header.scss */
.site-header .navbar .navbar-toggle.collapsed {
  background: none;
}

/* line 298, ../sass/_header.scss */
.site-header .navbar .navbar-toggle.collapsed:hover {
  background: #fff;
}

/* line 301, ../sass/_header.scss */
.site-header .navbar .navbar-toggle.collapsed:focus {
  background: none;
}

/* line 306, ../sass/_header.scss */
.site-header .navbar .navbar-toggle.collapsed .icon.close-icon {
  margin-top: -50px;
}

/* line 313, ../sass/_header.scss */
.site-header .left-align .navbar .navbar-toggle {
  margin-left: 0;
}

/* line 316, ../sass/_header.scss */
.site-header .right-align .navbar .navbar-toggle {
  margin-right: 0;
}

/* line 320, ../sass/_header.scss */
.site-header .nav ul {
  list-style: none;
  padding-left: 0;
}

/* line 324, ../sass/_header.scss */
.site-header .nav a {
  border: 0 none;
}

/* line 328, ../sass/_header.scss */
.site-header .header-menu {
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

/* line 336, ../sass/_header.scss */
.site-header .header-menu .animated {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

/* line 340, ../sass/_header.scss */
.site-header .header-menu .navbar-collapse {
  border: 0 none;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* line 347, ../sass/_header.scss */
.site-header .header-menu .navbar-collapse.collapse {
  display: none !important;
}

/* line 350, ../sass/_header.scss */
.site-header .header-menu .navbar-collapse.in {
  display: block !important;
}

/* line 355, ../sass/_header.scss */
.site-header .header-menu .nav {
  float: none;
  margin: 87px auto 84px;
  padding: 0;
  position: relative;
}

/* line 369, ../sass/_header.scss */
.site-header .header-menu .nav li {
  float: left;
  padding: 0 15px;
  position: static;
  width: 50%;
}


/* line 379, ../sass/_header.scss */
.site-header .header-menu .nav li>a {
  background: none;
  display: block;
  line-height: 1.5;
  font-size: 2.5em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

/* line 394, ../sass/_header.scss */
.site-header .header-menu .nav li>a span {
  border-bottom: 0px solid transparent;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

/* line 398, ../sass/_header.scss */
.site-header .header-menu .nav li>a:hover span {
  border-bottom: 0px solid #1eb3c5;
}

/* line 401, ../sass/_header.scss */
.site-header .header-menu .nav li>a .caret {
  border: 0 none !important;
  color: #a4abb0;
  font-size: 15px;
  font-family: FontAwesome;
  height: auto;
  margin: -7px 0 0 4px;
  position: absolute;
  top: 50%;
  width: auto;
}

/* line 412, ../sass/_header.scss */
.site-header .header-menu .nav li>a .caret:before {
  content: "\f107";
  display: block;
  line-height: 1;
  vertical-align: top;
}

/* line 420, ../sass/_header.scss */
.site-header .header-menu .nav li .sub {
  display: none;
}

/* line 423, ../sass/_header.scss */
.site-header .header-menu .nav li .sub .back {
  margin: -20px 15px 0 0;
  padding: 0;
  position: absolute;
  right: 100%;
  text-align: right;
  width: auto;
}


/* line 442, ../sass/_header.scss */
.site-header .header-menu .nav li .sub .back .sub-breadcrumbs {
  color: #bbbebf;
  font-size: .875em;
  line-height: 1.3;
  margin-bottom: 15px;
}

/* line 451, ../sass/_header.scss */
.site-header .header-menu .nav li .sub .back .btn {
  line-height: 1;
  padding: 7px 15px;
  white-space: nowrap;
}

/* line 456, ../sass/_header.scss */
.site-header .header-menu .nav li .sub .back .btn .fa {
  margin-right: 9px;
}

/* line 465, ../sass/_header.scss */
.site-header .header-menu .sub-view>li {
  display: none;
}

/* line 468, ../sass/_header.scss */
.site-header .header-menu .sub-view>li.parent.active {
  display: block;
  float: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

/* line 476, ../sass/_header.scss */
.site-header .header-menu .sub-view>li.parent.active>a {
  display: none;
}

/* line 480, ../sass/_header.scss */
.site-header .header-menu .sub-view>li.parent.active>.sub {
  display: block;
}


/* line 494, ../sass/_header.scss */
.site-header.second-site-header {
  background: transparent;
  padding: 0;
}


/* line 501, ../sass/_header.scss */
.site-header.second-site-header .container-fluid,
.site-header.second-site-header .container {
  position: relative;
  z-index: 1;
}


/* line 512, ../sass/_header.scss */
.site-header.second-site-header .navbar .btn,
.site-header.second-site-header .navbar .btn.collapsed:focus {
  background: rgba(255, 255, 255, 0.9);
}

/* line 516, ../sass/_header.scss */
.site-header.second-site-header .header-menu {
  top: 0;
}

/* line 520, ../sass/_header.scss */
.site-header.second-site-header .header-menu .navbar-collapse .nav {
  padding-top: 70px;
}

/* line 530, ../sass/_header.scss */
.site-header.site-header-black .navbar .navbar-toggle .icon svg path {
  fill: #000;
}

/* line 536, ../sass/_header.scss */
.site-header.site-header-black a {
  color: #000;
}

/* line 544, ../sass/_header.scss */
.site-header.site-header-black .header-menu .nav li>a:hover span {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.5);
}

/* line 555, ../sass/_header.scss */
.dropdown.open .dropdown-menu {
  -webkit-animation: fadeInUp .3s;
  animation: fadeInUp .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/******************************************************************************
  Widgets
*******************************************************************************/

/* line 9, ../sass/_widgets.scss */
.sidebar .widget {
  margin: 0 auto 51px;
  max-width: 300px;
}

/* line 13, ../sass/_widgets.scss */
.sidebar .widget .title {
  color: #768088;
  font-size: 1.125em;
  line-height: 1.3;
  margin-bottom: 25px;
}

/* line 19, ../sass/_widgets.scss */
.sidebar .widget:last-child,
.sidebar .widget.last {
  margin-bottom: 0;
}

/* line 26, ../sass/_widgets.scss */
.sidebar .widget.search form {
  position: relative;
}

/* line 29, ../sass/_widgets.scss */
.sidebar .widget.search form .form-control {
  padding-right: 40px;
}

/* line 32, ../sass/_widgets.scss */
.sidebar .widget.search form .form-control::-webkit-input-placeholder,
.sidebar .widget.search form .form-control:-moz-placeholder,
.sidebar .widget.search form .form-control::-moz-placeholder,
.sidebar .widget.search form .form-control:-ms-input-placeholder {
  color: #aac0d0;
}

/* line 39, ../sass/_widgets.scss */
.sidebar .widget.search form .btn {
  background: url(../img/svg/search.svg) no-repeat 50% 50%;
  border: 0 none;
  bottom: 1px;
  padding: 0;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: 1px;
  width: 36px;
}

/* line 55, ../sass/_widgets.scss */
.sidebar .widget.menu ul {
  list-style: none;
  margin: -8px 0 -7px;
  padding: 0;
}

/* line 60, ../sass/_widgets.scss */
.sidebar .widget.menu ul li {
  color: #aac0d0;
  list-style: none;
}

/* line 64, ../sass/_widgets.scss */
.sidebar .widget.menu ul li a {
  border: 0 none !important;
  color: #aac0d0;
  font-size: .8125em;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 70, ../sass/_widgets.scss */
.sidebar .widget.menu ul li a:hover {
  color: #d1dde5;
}

/* line 75, ../sass/_widgets.scss */
.sidebar .widget.menu ul li.active a {
  color: #768088;
}

/* line 79, ../sass/_widgets.scss */
.sidebar .widget.menu ul li span {
  color: #d2dde5;
}

/* line 88, ../sass/_widgets.scss */
.sidebar .widget.tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 93, ../sass/_widgets.scss */
.sidebar .widget.tags ul li {
  float: left;
  margin: 0 2px 2px 0;
}

/* line 97, ../sass/_widgets.scss */
.sidebar .widget.tags ul li a {
  background: #aac0d0;
  border: 0 none !important;
  border-radius: 2px;
  color: #fbfdfe;
  display: block;
  font-size: .6875em;
  font-weight: 300;
  padding: 6px 9px;
  text-transform: uppercase;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

/* line 109, ../sass/_widgets.scss */
.sidebar .widget.tags ul li a:hover {
  background: rgba(170, 192, 208, 0.8);
}

/* line 119, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 124, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li {
  overflow: hidden;
  padding-bottom: 20px;
}

/* line 128, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li:last-child {
  padding-bottom: 0;
}

/* line 131, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li .image {
  border: 0 none !important;
  display: block;
  float: left;
  height: 45px;
  margin: 0 10px 0 0;
  width: 45px;
}

/* line 139, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li .title {
  color: #768088;
  font-family: 'Ubuntu', sans-serif;;
  font-size: .75em;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 6px;
  text-transform: none;
}

/* line 148, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li .title a {
  border: 0 none !important;
  color: #768088;
  font-family: 'Ubuntu', sans-serif;;
  font-size: 1em;
}

/* line 155, ../sass/_widgets.scss */
.sidebar .widget.recent-posts ul li .time {
  color: #aac0d0;
  display: block;
  font-size: .75em;
  line-height: 1;
}

/* line 167, ../sass/_widgets.scss */
.sidebar .widget.links ul {
  list-style: none;
  margin: -7px 0;
  padding: 0;
}

/* line 173, ../sass/_widgets.scss */
.sidebar .widget.links ul li a {
  border: 0 none !important;
  color: #aac0d0;
  font-size: .8125em;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 179, ../sass/_widgets.scss */
.sidebar .widget.links ul li a:hover {
  color: #d2dde5;
}

/* line 189, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box {
  background: #fff;
  border: 1px solid #f2f6f8;
  margin: 0;
  padding: 10px 21px 14px;
}


/* line 203, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker {
  padding: 0;
  width: 100%;
}

/* line 207, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table {
  color: #768088;
  font-size: .75em;
  font-weight: 300;
  width: 100%;
}

/* line 214, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th {
  font-weight: normal;
  padding: 1px 4px;
}

/* line 218, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.prev,
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next,
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.datepicker-switch {
  background: none !important;
  padding-bottom: 14px;
  width: 30px;
}

/* line 225, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.prev,
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next {
  font-size: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 233, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.prev:before,
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next:before {
  color: #aac0d0;
  content: "\f104";
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 243, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.prev:hover,
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next:hover {
  opacity: .8;
}

/* line 247, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next {
  text-align: left;
}

/* line 250, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr th.next:before {
  content: "\f105";
}

/* line 255, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr td {
  border-radius: 3px;
  padding: 1px 4px;
  text-align: center;
  text-shadow: none;
}

/* line 261, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.day:hover,
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.day.focused {
  background: #aac0d0;
  color: #fff;
}

/* line 266, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.old,
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.new {
  color: #aac0d0;
}

/* line 270, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.today {
  background: #aac0d0;
  color: #fff;
}

/* line 274, ../sass/_widgets.scss */
.sidebar .widget.calendar .datepicker-box .datepicker table tr td.active {
  background: none;
  color: #164194;
}

/* line 287, ../sass/_widgets.scss */
.sidebar .widget.facebook-widget .fb-like-box {
  border: 1px solid rgba(170, 192, 208, 0.5);
  max-width: 300px;
  width: 100%;
}

/* line 292, ../sass/_widgets.scss */
.sidebar .widget.facebook-widget .fb-like-box>span {
  max-width: 100% !important;
}

/* line 295, ../sass/_widgets.scss */
.sidebar .widget.facebook-widget .fb-like-box iframe {
  width: 100% !important;
}

/******************************************************************************
  Main
*******************************************************************************/
/* line 4, ../sass/_main.scss */
.main {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* line 8, ../sass/_main.scss */
.main .section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-width: 0 !important;
  border-color: rgba(0, 0, 0, 0.02);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  table-layout: fixed;
}

/* line 25, ../sass/_main.scss */
.main .section.background-image .fp-tableCell,
.main .section.background-overlay .fp-tableCell {
  background-color: inherit;
}

/* line 29, ../sass/_main.scss */
.main .section.shadow .slide {
  overflow: hidden;
}

/* line 32, ../sass/_main.scss */
.main .section.shadow .slide .fp-tableCell {
  overflow: hidden;
}

/* line 36, ../sass/_main.scss */
.main .section.fp-table.shadow:before,
.main .section.shadow .slide .fp-tableCell:before {
  border-top-width: 1500px;
  border-top-style: solid;
  border-top-color: inherit;
  border-right: 1500px solid transparent;
  content: "";
  display: none;
  height: 0;
  left: 50%;
  margin: 0 0 0 -1442px;
  position: absolute;
  top: 0;
  width: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 52, ../sass/_main.scss */
.loaded .main .section.fp-table.shadow:before,
.loaded .main .section.shadow .slide .fp-tableCell:before {
  display: block;
}

/* line 56, ../sass/_main.scss */
.main .section .slide-nav {
  position: relative;
}

/* line 60, ../sass/_main.scss */
.main .section.centered-without-title .section-title {
  margin-top: -88px;
}

/* line 66, ../sass/_main.scss */
.main .section.centered-without-title .section-wrap {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

/* line 75, ../sass/_main.scss */
.main .section .video-background {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 83, ../sass/_main.scss */
.main .section .video-background .tubular-player {
  max-width: inherit;
  position: absolute;
}

/* line 87, ../sass/_main.scss */
.main .section .video-background video {
  max-width: inherit;
  min-height: 100%;
  min-width: 100%;
}

/* line 95, ../sass/_main.scss */
.main .content.col-md-offset-1 {
  margin-right: 8.33333%;
}

/* line 103, ../sass/_main.scss */
.main.left-sidebar .content {
  float: right;
}

/* line 112, ../sass/_main.scss */
.page-header {
  margin: 0 0 30px;
  padding-bottom: 5px;
}

/* line 116, ../sass/_main.scss */
.page-header .title:only-child {
  margin: 0;
}

/******************************************************************************
  One Page
*******************************************************************************/
/* Pagination */
/* line 7, ../sass/_one-page.scss */
#fp-nav.left,
.fp-slidesNav.left {
  left: 21px;
}

/* line 10, ../sass/_one-page.scss */
#fp-nav.right,
.fp-slidesNav.right {
  right: 21px;
}

/* line 14, ../sass/_one-page.scss */
#fp-nav ul li,
.fp-slidesNav ul li {
  border-color: #164194;
  border-color: rgba(215, 62, 77, 0.17);
  border-width: 0;
  height: auto;
  margin: 0 0 34px;
  width: 13px;
}

/* line 22, ../sass/_one-page.scss */
#fp-nav ul li:before,
.fp-slidesNav ul li:before {
  border-color: inherit;
  border-width: 0;
  border-style: solid;
  border-left-width: 1px;
  content: "";
  display: block;
  height: 40px;
  left: 50%;
  margin: 0 0 0 -.5px;
  pointer-events: none;
  position: absolute;
  top: 10px;
  width: 0px;
}

/* line 37, ../sass/_one-page.scss */
#fp-nav ul li:last-child:before,
.fp-slidesNav ul li:last-child:before {
  display: none;
}

/* line 43, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li:hover a,
body:not(.touch-device) .fp-slidesNav ul li:hover a {
  padding: 1px;
}

/* line 46, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li:hover a span,
body:not(.touch-device) .fp-slidesNav ul li:hover a span {
  opacity: 1;
}

/* line 50, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li:hover .fp-tooltip,
body:not(.touch-device) .fp-slidesNav ul li:hover .fp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* line 57, ../sass/_one-page.scss */
#fp-nav ul li a,
.fp-slidesNav ul li a {
  border: 0;
  height: 13px;
  padding: 3px;
  -webkit-transition: padding .1s linear;
  transition: padding .1s linear;
  width: 13px;
}

/* line 64, ../sass/_one-page.scss */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: #164194;
  border: 0 none;
  border-radius: 500px;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: .5;
  position: relative;
  top: 0;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  width: 100%;
}

/* line 80, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li a:hover,
body:not(.touch-device) .fp-slidesNav ul li a:hover {
  padding: 1px;
}

/* line 83, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li a:hover span,
body:not(.touch-device) .fp-slidesNav ul li a:hover span {
  opacity: 1;
}

/* line 89, ../sass/_one-page.scss */
#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
  cursor: default;
  padding: 0 !important;
}

/* line 93, ../sass/_one-page.scss */
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  background: #164194;
  height: 100%;
  margin: 0;
  opacity: .8;
  width: 100%;
}

/* line 100, ../sass/_one-page.scss */
#fp-nav ul li a.active+.fp-tooltip,
.fp-slidesNav ul li a.active+.fp-tooltip {
  display: none !important;
}

/* line 107, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li:hover a span,
body:not(.touch-device) .fp-slidesNav ul li:hover a span {
  height: 100%;
  margin: 0;
  width: 100%;
}

/* line 113, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav ul li:hover a.active span,
body:not(.touch-device) .fp-slidesNav ul li:hover a.active span {
  height: 100%;
  margin: 0;
  opacity: .8;
  width: 100%;
}

/* line 125, ../sass/_one-page.scss */
#fp-nav ul li:last-child {
  margin-bottom: 0;
}

/* line 129, ../sass/_one-page.scss */
.fixed-header #fp-nav {
  padding-top: 35px;
}

/* line 134, ../sass/_one-page.scss */
.fixed-footer #fp-nav {
  padding-bottom: 35px;
}

/* line 143, ../sass/_one-page.scss */
#fp-nav.mini {
  margin-top: -10px !important;
}

/* line 146, ../sass/_one-page.scss */
#fp-nav.mini.fp-next.fp-prev {
  margin-top: -32px !important;
}

/* line 150, ../sass/_one-page.scss */
#fp-nav.mini ul li {
  display: none;
}

/* line 153, ../sass/_one-page.scss */
#fp-nav.mini ul li:before,
#fp-nav.mini ul li .fp-tooltip {
  display: none !important;
}

/* line 157, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev,
#fp-nav.mini ul li.next {
  display: block;
  height: 20px;
  width: 20px;
}

/* line 163, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev a,
#fp-nav.mini ul li.next a {
  height: 20px;
  padding: 0 !important;
  width: 20px;
}

/* line 168, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev a:before,
#fp-nav.mini ul li.next a:before {
  content: "\f107";
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 26px;
  height: 9px;
  line-height: 9px;
  left: 2px;
  position: absolute;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
  top: 0;
}

/* line 183, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev a span,
#fp-nav.mini ul li.next a span {
  height: 10px;
  left: 10px;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.2s ease-in-out, height 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, height 0.2s ease-in-out;
  width: 1px;
}

/* line 195, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav.mini ul li.prev a:hover:before,
body:not(.touch-device) #fp-nav.mini ul li.next a:hover:before {
  top: 11px;
}

/* line 198, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav.mini ul li.prev a:hover span,
body:not(.touch-device) #fp-nav.mini ul li.next a:hover span {
  height: 16px;
  opacity: 1;
}

/* line 208, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev a:before {
  content: "\f106";
  top: 11px;
}

/* line 212, ../sass/_one-page.scss */
#fp-nav.mini ul li.prev a span {
  bottom: 0;
  top: auto;
}

/* line 218, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav.mini ul li.prev a:hover:before {
  top: 0;
}

/* line 228, ../sass/_one-page.scss */
body:not(.touch-device) #fp-nav.mini ul li:hover a span {
  height: 10px;
  width: 1px;
}

/* line 239, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip {
  background: #164194;
  border-radius: 11px;
  color: #fff;
  font-size: 1em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1;
  min-height: 22px;
  min-width: 30px;
  opacity: 0;
  overflow: visible;
  padding: 4px 10px 3px;
  pointer-events: none;
  text-transform: uppercase;
  top: -5px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: auto;
}

/* line 259, ../sass/_one-page.scss */
.touch-device #fp-nav ul li .fp-tooltip {
  display: none !important;
}

/* line 262, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip:before {
  background: inherit;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 11px;
  width: 21px;
}

/* line 271, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip:after {
  bottom: 0;
  content: "";
  position: absolute;
  top: 0;
  width: 21px;
}

/* line 279, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.left {
  left: 31px;
}

/* line 282, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.left:before {
  right: 100%;
}

/* line 285, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.left:after {
  right: 100%;
}

/* line 290, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.right {
  right: 31px;
}

/* line 293, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.right:before {
  left: 100%;
}

/* line 296, ../sass/_one-page.scss */
#fp-nav ul li .fp-tooltip.right:after {
  left: 100%;
}

/* line 300, ../sass/_one-page.scss */
.active+#fp-nav ul li .fp-tooltip {
  display: none !important;
  opacity: 0 !important;
}

/* line 306, ../sass/_one-page.scss */
.fp-controlArrow {
  display: none !important;
}

/* line 309, ../sass/_one-page.scss */
.fp-slidesNav {
  line-height: 1;
  vertical-align: top;
}

/* line 313, ../sass/_one-page.scss */
.fp-slidesNav.top {
  top: 20px;
}

/* line 320, ../sass/_one-page.scss */
.fp-slidesNav.bottom {
  bottom: 20px;
}

/* line 328, ../sass/_one-page.scss */
.fp-slidesNav ul li {
  margin: 0 34px 0 0;
}

/* line 331, ../sass/_one-page.scss */
.fp-slidesNav ul li:before {
  border-width: 0;
  border-top-width: 1px;
  height: 0;
  left: 10px;
  margin: -.5px 0 0;
  top: 50%;
  width: 40px;
}

/* line 341, ../sass/_one-page.scss */
.fp-slidesNav ul li:last-child {
  margin: 0;
}


/* Section Scroll */
/* line 389, ../sass/_one-page.scss */
.slimScrollDiv .slimScrollRail {
  right: 2px !important;
  width: 1px !important;
}

/* line 393, ../sass/_one-page.scss */
.slimScrollDiv .slimScrollBar {
  background: rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  opacity: 1 !important;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 3px !important;
}

/* line 400, ../sass/_one-page.scss */
.slimScrollDiv .slimScrollBar:hover {
  background: #164194 !important;
}

/* Structure */
/* line 407, ../sass/_one-page.scss */
.one-page {
  overflow: hidden;
}

/* line 413, ../sass/_one-page.scss */
.one-page .site-header {
  top: 0;
}

/* line 416, ../sass/_one-page.scss */
.one-page .site-footer {
  position: absolute;
  bottom: 0;
}

/* line 449, ../sass/_one-page.scss */
.one-page .main {
  padding-top: 0;
  padding-bottom: 0;
}

/* line 495, ../sass/_one-page.scss */
.one-page .main .section .fp-slide.fp-table {
  table-layout: fixed;
}

/* line 498, ../sass/_one-page.scss */
.one-page .main .section.section-footer {
  padding-bottom: 0;
}

/* line 531, ../sass/_one-page.scss */
.one-page .main .section .mCSB_inside>.mCSB_container {
  margin-right: 0;
  min-height: 100%;
}

/* line 535, ../sass/_one-page.scss */
.one-page .main .section .section-content:not(.not-scroll) {
  overflow: hidden;
}

/* line 538, ../sass/_one-page.scss */
.one-page .main .section .section-content:not(.not-scroll).mCS_no_scrollbar {
  overflow: visible;
}

/* line 542, ../sass/_one-page.scss 
.one-page .main .section .section-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}*/

/* line 550, ../sass/_one-page.scss */
.one-page .main .section .section-wrap.top-padding {
  padding-bottom: 0;
}

/* line 553, ../sass/_one-page.scss */
.one-page .main .section .section-wrap.bottom-padding {
  padding-top: 0;
}

/* line 560, ../sass/_one-page.scss */
.one-page .main .section .fp-tableCell .video-background {
  visibility: hidden;
}

/* line 564, ../sass/_one-page.scss */
.one-page .main .section .section-title {
  font-size: 3em;
  line-height: 1.22;
  margin-bottom: 30px;
}

/* line 573, ../sass/_one-page.scss */
.one-page .main .section .filter-box .section-title-block {
  position: relative;
  z-index: 1;
}

/* line 577, ../sass/_one-page.scss */
.one-page .main .section .section-title-block {
  margin-bottom: 30px;
}

/* line 584, ../sass/_one-page.scss */
.one-page .main .section .section-title-block .section-title {
  margin-bottom: 0;
}

/* line 587, ../sass/_one-page.scss */
.one-page .main .section .section-title-block .filter-buttons {
  margin-top: 24px;
}

/* line 594, ../sass/_one-page.scss */
.one-page .main .section .section-title-block .filter-buttons .btn .caret {
  margin: -2px 0 0 4px;
}


/* line 666, ../sass/_one-page.scss */
.one-page .main .section .section-title-block .text-right>.filter-buttons .dropdown-menu {
  left: auto;
  right: 0;
}

/* line 677, ../sass/_one-page.scss */
.one-page .main .section .section-bg {
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
}

/* line 693, ../sass/_one-page.scss */
.one-page .main .section .section-bg img {
  height: 100%;
  max-width: inherit;
  text-align: center;
  width: auto;
}

/* line 703, ../sass/_one-page.scss */
.one-page .main .section .section-bg.left {
  right: 50%;
  text-align: left;
}

/* line 711, ../sass/_one-page.scss */
.one-page .main .section .section-bg.right {
  left: 50%;
}

/* line 718, ../sass/_one-page.scss */
.one-page .main .section .section-bg.right img {
  float: right;
}

/* line 727, ../sass/_one-page.scss */
.one-page .main .section.vertical-top .fp-tableCell {
  vertical-align: top;
}

/* line 732, ../sass/_one-page.scss */
.one-page .main .section.vertical-bottom .fp-tableCell {
  vertical-align: bottom;
}

/* line 737, ../sass/_one-page.scss */
.one-page .main .section.align-without-title .section-wrap {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

/* line 753, ../sass/_one-page.scss */
.one-page .main .section.align-without-title .section-wrap .section-title {
  margin-top: -88px;
}

/* line 770, ../sass/_one-page.scss */
.one-page.normal-scroll .main .section {
  height: auto !important;
}

/* line 773, ../sass/_one-page.scss */
.one-page.normal-scroll .main .section .fp-tableCell {
  height: auto !important;
}

/* line 778, ../sass/_one-page.scss */
.one-page.normal-scroll #fp-nav {
  display: none !important;
}

/* line 784, ../sass/_one-page.scss */
.loaded.one-page .main .section.section-header {
  display: table;
}

/* Banners */
/* line 792, ../sass/_one-page.scss */
.section.banners-section .slide-nav .fp-slidesNav.top {
  top: 100px;
}

/* line 799, ../sass/_one-page.scss */
.section.banners-section .slide {
  position: relative;
}

/* line 802, ../sass/_one-page.scss */
.section.banners-section .slide .image {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 50%;
}
/* line 832, ../sass/_one-page.scss */
.section.banners-section .slide .info .descriptions {
  font-size: 1.25em;
  line-height: 1.5;
  margin-bottom: 45px;
}

/* line 847, ../sass/_one-page.scss */
.section.banners-section .slide .info .btn {
  padding: 8px 50px 7px;
}

/* line 850, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links {
  margin-top: 146px;
}

/* line 862, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links a {
  border-radius: 3px;
  border: 0 none !important;
  display: inline-block;
  min-height: 70px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  vertical-align: top;
}

/* line 873, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links a+a {
  margin-left: 17px;
}

/* line 879, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links a img {
  opacity: .5;
}

/* line 882, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* line 885, ../sass/_one-page.scss */
.section.banners-section .slide .info .doenload-links a:hover img {
  opacity: 1;
}

/* line 901, ../sass/_one-page.scss */
.section.banners-section .slide.slide-one .fp-tableCell:before {
  border-top-color: rgba(0, 0, 0, 0.15);
}

/* line 908, ../sass/_one-page.scss */
.section.banners-section .slide.slide-two .fp-tableCell:before {
  border-top-color: rgba(0, 0, 0, 0.15);
}

/* line 911, ../sass/_one-page.scss */
.section.banners-section .slide.slide-two .fp-tableCell .images {
  margin-top: -5%;
  margin-bottom: -13%;
  max-width: 350px;
}

/* line 921, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three {
  background: url(../content/img/banner-3.jpg) 0 0 no-repeat #0e937c;
  background-size: contain;
}

/* line 925, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .fp-tableCell {
  padding-bottom: 50px;
  vertical-align: bottom;
}

/* line 932, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .fp-tableCell:before {
  border: 0 none;
  border-bottom: 1500px solid rgba(0, 0, 0, 0.08);
  border-left: 1500px solid transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 48%;
  margin: 0;
  position: absolute;
  top: auto;
  width: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 951, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .info {
  position: relative;
}

/* line 954, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .info .descriptions {
  color: #fff;
}

/* line 957, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .info .btn-info {
  background: #e4e630;
  border-color: #e4e630;
}

/* line 961, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .info .doenload-links {
  bottom: 0;
  position: absolute;
  right: 100%;
  width: 100%;
}

/* line 971, ../sass/_one-page.scss */
.section.banners-section .slide.slide-three .info .doenload-links a {
  background: rgba(0, 0, 0, 0.3);
}

/* line 977, ../sass/_one-page.scss */
.section.banners-section .slide.slide-four {
  background: #525d61;
}

/* line 981, ../sass/_one-page.scss */
.section.banners-section .slide.slide-four .fp-tableCell:before {
  border-top-color: rgba(0, 0, 0, 0.15);
}

/* About Us */
/* line 991, ../sass/_one-page.scss */
.section.about-us-section .section-content {
  height: 100%;
}

/* line 994, ../sass/_one-page.scss */
.section.about-us-section .fp-tableCell {
  position: static !important;
}

/* line 997, ../sass/_one-page.scss */
.section.about-us-section .descriptions {
  font-size: 1.25em;
  line-height: 1.5;
}

/* Servises */
/* line 1014, ../sass/_one-page.scss */
.section.services-section .section-wrap .services-wrap .wrap-container .column .circle-wrap .skill-wrap .line {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Team */
/* line 1023, ../sass/_one-page.scss */
.section.team-section .team-carousel .carousel {
  max-height: 418px;
  overflow: hidden;
}

/* line 1027, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel {
  max-height: inherit;
  position: static;
}

/* line 1032, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .employee .title {
  color: #23b89e;
}

/* line 1036, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .employee .social a {
  color: #23b89e;
  color: rgba(35, 184, 158, 0.75);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 1041, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .employee .social a:hover,
.section.team-section .team-carousel .owl-carousel .employee .social a:focus {
  color: #164194;
}

/* line 1047, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .employee+.employee {
  margin-bottom: 0;
}

/* line 1052, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-pagination {
  bottom: 20px;
  left: 0;
  position: absolute;
}

/* line 1060, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-pagination .owl-page {
  margin: 0 17px;
  position: relative;
}

/* line 1064, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-pagination .owl-page:before {
  background: rgba(255, 255, 255, 0.17);
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  margin: -.5px 0 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 45px;
}

/* line 1076, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-pagination .owl-page span {
  position: relative;
}

/* line 1080, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-pagination .owl-page:last-of-type:before {
  display: none;
}

/* line 1086, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-buttons {
  top: -209px;
  position: relative;
}

/* line 1090, ../sass/_one-page.scss */
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-buttons .owl-prev,
.section.team-section .team-carousel .owl-carousel .owl-controls .owl-buttons .owl-next {
  color: #fff7cc;
  margin: -10px 0 0 0;
  top: 0;
}

/* Success */
/* line 1104, ../sass/_one-page.scss */
.section.success-section .section-title {
  margin-bottom: 5px;
}

/* line 1107, ../sass/_one-page.scss */
.section.success-section .description {
  font-size: 1.5em;
  margin-bottom: 53px;
}

/* Video */
/* line 1115, ../sass/_one-page.scss */
.section.video-section .description {
  font-size: 1.25em;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* line 1122, ../sass/_one-page.scss */
.section.video-section .carousel .owl-buttons .owl-prev,
.section.video-section .carousel .owl-buttons .owl-next {
  color: #aac0d0;
  left: -40px;
}

/* line 1127, ../sass/_one-page.scss */
.section.video-section .carousel .owl-buttons .owl-prev:after,
.section.video-section .carousel .owl-buttons .owl-next:after {
  background: #aac0d0;
}

/* line 1131, ../sass/_one-page.scss */
.section.video-section .carousel .owl-buttons .owl-next {
  left: auto;
  right: -40px;
}

/* Contacts */
/* line 1141, ../sass/_one-page.scss */
.section.contact-section .contact-info {
  color: #fff;
}

/* line 1144, ../sass/_one-page.scss */
.section.contact-section .contact-info .icon {
  border-color: #fff7cc;
  color: #fff7cc;
}

/* line 1148, ../sass/_one-page.scss */
.section.contact-section .contact-info .title {
  color: #fff7cc;
}

/* line 1151, ../sass/_one-page.scss */
.section.contact-section .contact-info a {
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 1158, ../sass/_one-page.scss */
.section.contact-section .contact-form .form-title {
  color: #fff7cc;
}

/* line 1161, ../sass/_one-page.scss */
.section.contact-section .contact-form .name,
.section.contact-section .contact-form .email {
  max-width: 255px;
}

/* line 1165, ../sass/_one-page.scss */
.section.contact-section .contact-form .comment {
  max-width: 410px;
}

/* line 1168, ../sass/_one-page.scss */
.section.contact-section .contact-form .btn {
  background: #fff7cc;
  border-color: #fff7cc;
  color: #375099;
}

/* line 1176, ../sass/_one-page.scss */
.section.contact-section.white-contact-section .contact-info .icon {
  border-color: #fff;
  color: #fff;
}

/* line 1180, ../sass/_one-page.scss */
.section.contact-section.white-contact-section .contact-info .title {
  color: #fff;
}

/* line 1185, ../sass/_one-page.scss */
.section.contact-section.white-contact-section .contact-form .form-title {
  color: #fff;
}

/* line 1188, ../sass/_one-page.scss */
.section.contact-section.white-contact-section .contact-form .form-control {
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

/* line 1192, ../sass/_one-page.scss */
.section.contact-section.white-contact-section .contact-form .btn {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* line 1199, ../sass/_one-page.scss */
.section.contact-section .pen-box {
  left: 0;
  position: absolute;
  right: 0;
}

/* line 1206, ../sass/_one-page.scss */
.section.map-section .section-content {
  height: 100%;
}

/* line 1209, ../sass/_one-page.scss */
.section.map-section .section-wrap {
  padding-bottom: 380px !important;
}

/* line 1215, ../sass/_one-page.scss */
.section.map-section .map-canvas {
  bottom: 0;
  position: absolute;
  width: 100%;
}

/* Call Action */
/* line 1224, ../sass/_one-page.scss */
.section.call-action-section .section-wrap {
  padding-bottom: 0 !important;
}

/* line 1227, ../sass/_one-page.scss */
.section.call-action-section .descriptions {
  font-size: 1.25em;
  line-height: 1.5;
}

/* line 1231, ../sass/_one-page.scss */
.section.call-action-section .actions {
  overflow: visible;
}

/* Pricing */
/* line 1239, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel {
  position: static;
}

/* line 1243, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .employee .title {
  color: #23b89e;
}

/* line 1247, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .employee .social a {
  color: #23b89e;
  color: rgba(35, 184, 158, 0.75);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 1252, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .employee .social a:hover,
.section.pricing-section .pricings-carousel .owl-carousel .employee .social a:focus {
  color: #164194;
}

/* line 1258, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .employee+.employee {
  margin-bottom: 0;
}

/* line 1263, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-pagination {
  bottom: 20px;
  left: 0;
  margin: 0;
  position: absolute;
}

/* line 1272, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-pagination .owl-page {
  margin: 0 17px;
  position: relative;
}

/* line 1276, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-pagination .owl-page:before {
  background: rgba(255, 255, 255, 0.17);
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  margin: -.5px 0 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 45px;
}

/* line 1288, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-pagination .owl-page span {
  position: relative;
}

/* line 1292, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-pagination .owl-page:last-of-type:before {
  display: none;
}

/* line 1298, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-buttons {
  top: -287px;
  position: relative;
}

/* line 1302, ../sass/_one-page.scss */
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-buttons .owl-prev,
.section.pricing-section .pricings-carousel .owl-carousel .owl-controls .owl-buttons .owl-next {
  color: #fff7cc;
  margin: -10px 0 0 0;
  top: 0;
}

/* line 1315, ../sass/_one-page.scss */
.section.promo-2-section .section-wrap {
  overflow: hidden;
}

/* line 1322, ../sass/_one-page.scss */
.section .section-wrap .logo-box {
  margin-bottom: 30px;
}

/* line 1325, ../sass/_one-page.scss */
.section .section-wrap .logo-box .logo {
  border: 0 none !important;
  display: inline-block;
}

/* line 1334, ../sass/_one-page.scss */
.section.contact-section-business .contact-form .btn {
  color: #2e2e2e;
}

/* line 1340, ../sass/_one-page.scss */
.section.contact-section-business-2 .section-title {
  margin-top: 60px;
}

/* line 1343, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-info {
  color: #636668;
}

/* line 1346, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-info a {
  border-color: #636668;
  border-color: rgba(99, 102, 102, 0.2);
  color: #636668;
}

/* line 1351, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-info .icon {
  border-color: #da5866;
  color: #da5866;
}

/* line 1355, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-info .title {
  color: #da5866;
}

/* line 1359, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form {
  background: #fff;
  margin-top: 50px;
  padding: 50px 90px;
}

/* line 1367, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-title {
  color: #da5866;
}

/* line 1370, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-control {
  background: #e7f1f8;
  color: #375099;
}

/* line 1377, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-control::-webkit-input-placeholder {
  color: #375099;
}

/* line 1380, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-control:-moz-placeholder {
  color: #375099;
}

/* line 1383, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-control::-moz-placeholder {
  color: #375099;
}

/* line 1386, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .form-control:-ms-input-placeholder {
  color: #375099;
}

/* line 1390, ../sass/_one-page.scss */
.section.contact-section-business-2 .contact-form .btn {
  background: #da5866;
  border-color: #da5866;
  color: #fff;
}

/* line 1400, ../sass/_one-page.scss */
.section.blog-section-business .news .news-content .title,
.section.blog-section-business .news .news-content .description,
.section.blog-section-business .news .news-content .more {
  color: #fbf1e7;
}

/* line 1406, ../sass/_one-page.scss */
.section.blog-section-business .news .meta {
  color: #b58664;
}

/* line 1412, ../sass/_one-page.scss */
.section.blog-section-business .news-carousel .owl-controls .owl-prev,
.section.blog-section-business .news-carousel .owl-controls .owl-next {
  color: #b58664;
}

/* line 1416, ../sass/_one-page.scss */
.section.blog-section-business .news-carousel .owl-controls .owl-prev:after,
.section.blog-section-business .news-carousel .owl-controls .owl-next:after {
  background: #b58664;
}

/* line 1425, ../sass/_one-page.scss */
.section.contact-section-under-construction .contact-form .form-title {
  color: #fff;
}

/* line 1428, ../sass/_one-page.scss */
.section.contact-section-under-construction .contact-form .btn {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* line 1435, ../sass/_one-page.scss */
.section.contact-section-under-construction .contact-info .title {
  color: #fff;
}

/* line 1438, ../sass/_one-page.scss */
.section.contact-section-under-construction .contact-info .icon {
  border-color: #fff;
  color: #fff;
}

/******************************************************************************
  Carousels
*******************************************************************************/
/* line 4, ../sass/_carousels.scss */
.carousel,
.owl-carousel {
  width: auto;
}

/* line 8, ../sass/_carousels.scss */
.carousel .grid-post,
.owl-carousel .grid-post {
  margin-bottom: 0;
}

/* line 12, ../sass/_carousels.scss */
.carousel .owl-item>.col-xs-1,
.carousel .owl-item>.col-sm-1,
.carousel .owl-item>.col-md-1,
.carousel .owl-item>.col-lg-1,
.carousel .owl-item>.col-xs-2,
.carousel .owl-item>.col-sm-2,
.carousel .owl-item>.col-md-2,
.carousel .owl-item>.col-lg-2,
.carousel .owl-item>.col-xs-3,
.carousel .owl-item>.col-sm-3,
.carousel .owl-item>.col-md-3,
.carousel .owl-item>.col-lg-3,
.carousel .owl-item>.col-xs-4,
.carousel .owl-item>.col-sm-4,
.carousel .owl-item>.col-md-4,
.carousel .owl-item>.col-lg-4,
.carousel .owl-item>.col-xs-5,
.carousel .owl-item>.col-sm-5,
.carousel .owl-item>.col-md-5,
.carousel .owl-item>.col-lg-5,
.carousel .owl-item>.col-xs-6,
.carousel .owl-item>.col-sm-6,
.carousel .owl-item>.col-md-6,
.carousel .owl-item>.col-lg-6,
.carousel .owl-item>.col-xs-7,
.carousel .owl-item>.col-sm-7,
.carousel .owl-item>.col-md-7,
.carousel .owl-item>.col-lg-7,
.carousel .owl-item>.col-xs-8,
.carousel .owl-item>.col-sm-8,
.carousel .owl-item>.col-md-8,
.carousel .owl-item>.col-lg-8,
.carousel .owl-item>.col-xs-9,
.carousel .owl-item>.col-sm-9,
.carousel .owl-item>.col-md-9,
.carousel .owl-item>.col-lg-9,
.carousel .owl-item>.col-xs-10,
.carousel .owl-item>.col-sm-10,
.carousel .owl-item>.col-md-10,
.carousel .owl-item>.col-lg-10,
.carousel .owl-item>.col-xs-11,
.carousel .owl-item>.col-sm-11,
.carousel .owl-item>.col-md-11,
.carousel .owl-item>.col-lg-11,
.carousel .owl-item>.col-xs-12,
.carousel .owl-item>.col-sm-12,
.carousel .owl-item>.col-md-12,
.carousel .owl-item>.col-lg-12,
.owl-carousel .owl-item>.col-xs-1,
.owl-carousel .owl-item>.col-sm-1,
.owl-carousel .owl-item>.col-md-1,
.owl-carousel .owl-item>.col-lg-1,
.owl-carousel .owl-item>.col-xs-2,
.owl-carousel .owl-item>.col-sm-2,
.owl-carousel .owl-item>.col-md-2,
.owl-carousel .owl-item>.col-lg-2,
.owl-carousel .owl-item>.col-xs-3,
.owl-carousel .owl-item>.col-sm-3,
.owl-carousel .owl-item>.col-md-3,
.owl-carousel .owl-item>.col-lg-3,
.owl-carousel .owl-item>.col-xs-4,
.owl-carousel .owl-item>.col-sm-4,
.owl-carousel .owl-item>.col-md-4,
.owl-carousel .owl-item>.col-lg-4,
.owl-carousel .owl-item>.col-xs-5,
.owl-carousel .owl-item>.col-sm-5,
.owl-carousel .owl-item>.col-md-5,
.owl-carousel .owl-item>.col-lg-5,
.owl-carousel .owl-item>.col-xs-6,
.owl-carousel .owl-item>.col-sm-6,
.owl-carousel .owl-item>.col-md-6,
.owl-carousel .owl-item>.col-lg-6,
.owl-carousel .owl-item>.col-xs-7,
.owl-carousel .owl-item>.col-sm-7,
.owl-carousel .owl-item>.col-md-7,
.owl-carousel .owl-item>.col-lg-7,
.owl-carousel .owl-item>.col-xs-8,
.owl-carousel .owl-item>.col-sm-8,
.owl-carousel .owl-item>.col-md-8,
.owl-carousel .owl-item>.col-lg-8,
.owl-carousel .owl-item>.col-xs-9,
.owl-carousel .owl-item>.col-sm-9,
.owl-carousel .owl-item>.col-md-9,
.owl-carousel .owl-item>.col-lg-9,
.owl-carousel .owl-item>.col-xs-10,
.owl-carousel .owl-item>.col-sm-10,
.owl-carousel .owl-item>.col-md-10,
.owl-carousel .owl-item>.col-lg-10,
.owl-carousel .owl-item>.col-xs-11,
.owl-carousel .owl-item>.col-sm-11,
.owl-carousel .owl-item>.col-md-11,
.owl-carousel .owl-item>.col-lg-11,
.owl-carousel .owl-item>.col-xs-12,
.owl-carousel .owl-item>.col-sm-12,
.owl-carousel .owl-item>.col-md-12,
.owl-carousel .owl-item>.col-lg-12 {
  width: 100%;
}

/* line 63, ../sass/_carousels.scss */
.carousel .owl-prev,
.carousel .owl-next,
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  color: #ccc;
  color: rgba(0, 0, 0, 0.1);
  border: 0 none !important;
  font-size: 0;
  height: 20px;
  left: -20px;
  line-height: 20px;
  margin-top: -10px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  vertical-align: top;
  width: 20px;
}

/* line 80, ../sass/_carousels.scss */
.carousel .owl-prev:before,
.carousel .owl-next:before,
.owl-carousel .owl-prev:before,
.owl-carousel .owl-next:before {
  content: "\f104";
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 26px;
  line-height: 20px;
  left: 11px;
  position: absolute;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
}

/* line 93, ../sass/_carousels.scss */
.carousel .owl-prev:after,
.carousel .owl-next:after,
.owl-carousel .owl-prev:after,
.owl-carousel .owl-next:after {
  background: #ccc;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  height: 1px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
  width: 10px;
}

/* line 110, ../sass/_carousels.scss */
body:not(.touch-device) .carousel .owl-prev:hover,
body:not(.touch-device) .carousel .owl-next:hover,
body:not(.touch-device) .owl-carousel .owl-prev:hover,
body:not(.touch-device) .owl-carousel .owl-next:hover {
  color: rgba(0, 0, 0, 0.2);
}

/* line 113, ../sass/_carousels.scss */
body:not(.touch-device) .carousel .owl-prev:hover:before,
body:not(.touch-device) .carousel .owl-next:hover:before,
body:not(.touch-device) .owl-carousel .owl-prev:hover:before,
body:not(.touch-device) .owl-carousel .owl-next:hover:before {
  left: 0;
}

/* line 116, ../sass/_carousels.scss */
body:not(.touch-device) .carousel .owl-prev:hover:after,
body:not(.touch-device) .carousel .owl-next:hover:after,
body:not(.touch-device) .owl-carousel .owl-prev:hover:after,
body:not(.touch-device) .owl-carousel .owl-next:hover:after {
  opacity: 1;
  width: 16px;
}

/* line 123, ../sass/_carousels.scss */
.carousel .owl-next,
.owl-carousel .owl-next {
  left: auto;
  right: -20px;
}

/* line 127, ../sass/_carousels.scss */
.carousel .owl-next:before,
.owl-carousel .owl-next:before {
  content: "\f105";
  left: auto;
  right: 11px;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
}

/* line 133, ../sass/_carousels.scss */
.carousel .owl-next:after,
.owl-carousel .owl-next:after {
  left: 0;
  right: auto;
}

/* line 139, ../sass/_carousels.scss */
body:not(.touch-device) .carousel .owl-next:hover:before,
body:not(.touch-device) .owl-carousel .owl-next:hover:before {
  left: auto;
  right: 0;
}

/* line 146, ../sass/_carousels.scss */
.carousel .owl-pagination,
.owl-carousel .owl-pagination {
  height: 13px;
  margin: 51px 0 0;
  padding: 0 15px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

/* line 154, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page,
.owl-carousel .owl-pagination .owl-page {
  display: inline-block;
  height: 13px;
  margin: 0 16px;
  padding: 2px;
  position: relative;
  vertical-align: top;
  width: 13px;
}

/* line 163, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page:before,
.owl-carousel .owl-pagination .owl-page:before {
  background: rgba(0, 0, 0, 0.17);
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  margin: -.5px 0 0 4px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 37px;
}

/* line 175, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page span,
.owl-carousel .owl-pagination .owl-page span {
  background: #ccc;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 500px;
  display: block;
  height: 100%;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 100%;
}

/* line 185, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page:hover span,
.owl-carousel .owl-pagination .owl-page:hover span {
  background: rgba(0, 0, 0, 0.2);
}

/* line 189, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page.active,
.owl-carousel .owl-pagination .owl-page.active {
  padding: 0;
}

/* line 192, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page.active span,
.owl-carousel .owl-pagination .owl-page.active span {
  background: rgba(0, 0, 0, 0.2);
}

/* line 197, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-page:last-of-type:before,
.owl-carousel .owl-pagination .owl-page:last-of-type:before {
  display: none !important;
}

/* line 204, ../sass/_carousels.scss */
.carousel .owl-pagination+.owl-buttons .owl-prev,
.carousel .owl-pagination+.owl-buttons .owl-next,
.owl-carousel .owl-pagination+.owl-buttons .owl-prev,
.owl-carousel .owl-pagination+.owl-buttons .owl-next {
  margin-top: -42px;
}

/* line 209, ../sass/_carousels.scss */
.carousel .owl-pagination .owl-prev,
.carousel .owl-pagination .owl-next,
.owl-carousel .owl-pagination .owl-prev,
.owl-carousel .owl-pagination .owl-next {
  display: inline-block;
  left: 0;
  margin: -4px 17px 0;
  position: relative;
  top: 0;
}

/* line 220, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-prev,
body .carousel.carousel-white .owl-next,
body .owl-carousel.carousel-white .owl-prev,
body .owl-carousel.carousel-white .owl-next {
  color: #fff;
  color: rgba(255, 255, 255, 0.65);
}

/* line 225, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-prev:hover,
body .carousel.carousel-white .owl-next:hover,
body .owl-carousel.carousel-white .owl-prev:hover,
body .owl-carousel.carousel-white .owl-next:hover {
  color: #fff;
}

/* line 228, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-prev:after,
body .carousel.carousel-white .owl-next:after,
body .owl-carousel.carousel-white .owl-prev:after,
body .owl-carousel.carousel-white .owl-next:after {
  background: #fff;
  background: rgba(255, 255, 255, 0.65);
}

/* line 234, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-page:before,
body .owl-carousel.carousel-white .owl-page:before {
  background: rgba(255, 255, 255, 0.17);
}

/* line 237, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-page span,
body .owl-carousel.carousel-white .owl-page span {
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

/* line 242, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-page:hover span,
body .owl-carousel.carousel-white .owl-page:hover span {
  background: rgba(255, 255, 255, 0.8);
}

/* line 247, ../sass/_carousels.scss */
body .carousel.carousel-white .owl-page.active span,
body .owl-carousel.carousel-white .owl-page.active span {
  background: rgba(255, 255, 255, 0.8);
}

/* line 254, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-prev,
body .carousel.carousel-black .owl-next,
body .owl-carousel.carousel-black .owl-prev,
body .owl-carousel.carousel-black .owl-next {
  color: #000;
  color: rgba(0, 0, 0, 0.65);
}

/* line 259, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-prev:hover,
body .carousel.carousel-black .owl-next:hover,
body .owl-carousel.carousel-black .owl-prev:hover,
body .owl-carousel.carousel-black .owl-next:hover {
  color: #000;
}

/* line 262, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-prev:after,
body .carousel.carousel-black .owl-next:after,
body .owl-carousel.carousel-black .owl-prev:after,
body .owl-carousel.carousel-black .owl-next:after {
  background: #000;
  background: rgba(0, 0, 0, 0.65);
}

/* line 268, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-page:before,
body .owl-carousel.carousel-black .owl-page:before {
  background: rgba(0, 0, 0, 0.17);
}

/* line 271, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-page span,
body .owl-carousel.carousel-black .owl-page span {
  background: #000;
  background: rgba(0, 0, 0, 0.5);
}

/* line 276, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-page:hover span,
body .owl-carousel.carousel-black .owl-page:hover span {
  background: rgba(0, 0, 0, 0.8);
}

/* line 281, ../sass/_carousels.scss */
body .carousel.carousel-black .owl-page.active span,
body .owl-carousel.carousel-black .owl-page.active span {
  background: rgba(0, 0, 0, 0.8);
}

/* line 288, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-prev,
body .carousel.carousel-primary .owl-next,
body .owl-carousel.carousel-primary .owl-prev,
body .owl-carousel.carousel-primary .owl-next {
  color: #375099;
  color: rgba(55, 80, 153, 0.65);
}

/* line 293, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-prev:hover,
body .carousel.carousel-primary .owl-next:hover,
body .owl-carousel.carousel-primary .owl-prev:hover,
body .owl-carousel.carousel-primary .owl-next:hover {
  color: #375099;
}

/* line 296, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-prev:after,
body .carousel.carousel-primary .owl-next:after,
body .owl-carousel.carousel-primary .owl-prev:after,
body .owl-carousel.carousel-primary .owl-next:after {
  background: #375099;
  background: rgba(55, 80, 153, 0.65);
}

/* line 302, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-page:before,
body .owl-carousel.carousel-primary .owl-page:before {
  background: rgba(55, 80, 153, 0.17);
}

/* line 305, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-page span,
body .owl-carousel.carousel-primary .owl-page span {
  background: #375099;
  background: rgba(55, 80, 153, 0.5);
}

/* line 310, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-page:hover span,
body .owl-carousel.carousel-primary .owl-page:hover span {
  background: rgba(55, 80, 153, 0.8);
}

/* line 315, ../sass/_carousels.scss */
body .carousel.carousel-primary .owl-page.active span,
body .owl-carousel.carousel-primary .owl-page.active span {
  background: rgba(55, 80, 153, 0.8);
}

/* line 322, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-prev,
body .carousel.carousel-success .owl-next,
body .owl-carousel.carousel-success .owl-prev,
body .owl-carousel.carousel-success .owl-next {
  color: #179680;
  color: rgba(23, 150, 128, 0.65);
}

/* line 327, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-prev:hover,
body .carousel.carousel-success .owl-next:hover,
body .owl-carousel.carousel-success .owl-prev:hover,
body .owl-carousel.carousel-success .owl-next:hover {
  color: #179680;
}

/* line 330, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-prev:after,
body .carousel.carousel-success .owl-next:after,
body .owl-carousel.carousel-success .owl-prev:after,
body .owl-carousel.carousel-success .owl-next:after {
  background: #179680;
  background: rgba(23, 150, 128, 0.65);
}

/* line 336, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-page:before,
body .owl-carousel.carousel-success .owl-page:before {
  background: rgba(23, 150, 128, 0.17);
}

/* line 339, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-page span,
body .owl-carousel.carousel-success .owl-page span {
  background: #179680;
  background: rgba(23, 150, 128, 0.5);
}

/* line 344, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-page:hover span,
body .owl-carousel.carousel-success .owl-page:hover span {
  background: rgba(23, 150, 128, 0.8);
}

/* line 349, ../sass/_carousels.scss */
body .carousel.carousel-success .owl-page.active span,
body .owl-carousel.carousel-success .owl-page.active span {
  background: rgba(23, 150, 128, 0.8);
}

/* line 356, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-prev,
body .carousel.carousel-info .owl-next,
body .owl-carousel.carousel-info .owl-prev,
body .owl-carousel.carousel-info .owl-next {
  color: #20bdd0;
  color: rgba(32, 189, 208, 0.65);
}

/* line 361, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-prev:hover,
body .carousel.carousel-info .owl-next:hover,
body .owl-carousel.carousel-info .owl-prev:hover,
body .owl-carousel.carousel-info .owl-next:hover {
  color: #20bdd0;
}

/* line 364, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-prev:after,
body .carousel.carousel-info .owl-next:after,
body .owl-carousel.carousel-info .owl-prev:after,
body .owl-carousel.carousel-info .owl-next:after {
  background: #20bdd0;
  background: rgba(32, 189, 208, 0.65);
}

/* line 370, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-page:before,
body .owl-carousel.carousel-info .owl-page:before {
  background: rgba(32, 189, 208, 0.17);
}

/* line 373, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-page span,
body .owl-carousel.carousel-info .owl-page span {
  background: #20bdd0;
  background: rgba(32, 189, 208, 0.5);
}

/* line 378, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-page:hover span,
body .owl-carousel.carousel-info .owl-page:hover span {
  background: rgba(32, 189, 208, 0.8);
}

/* line 383, ../sass/_carousels.scss */
body .carousel.carousel-info .owl-page.active span,
body .owl-carousel.carousel-info .owl-page.active span {
  background: rgba(32, 189, 208, 0.8);
}

/* line 390, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-prev,
body .carousel.carousel-warning .owl-next,
body .owl-carousel.carousel-warning .owl-prev,
body .owl-carousel.carousel-warning .owl-next {
  color: #d6973d;
  color: rgba(214, 151, 61, 0.65);
}

/* line 395, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-prev:hover,
body .carousel.carousel-warning .owl-next:hover,
body .owl-carousel.carousel-warning .owl-prev:hover,
body .owl-carousel.carousel-warning .owl-next:hover {
  color: #d6973d;
}

/* line 398, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-prev:after,
body .carousel.carousel-warning .owl-next:after,
body .owl-carousel.carousel-warning .owl-prev:after,
body .owl-carousel.carousel-warning .owl-next:after {
  background: #d6973d;
  background: rgba(214, 151, 61, 0.65);
}

/* line 404, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-page:before,
body .owl-carousel.carousel-warning .owl-page:before {
  background: rgba(214, 151, 61, 0.17);
}

/* line 407, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-page span,
body .owl-carousel.carousel-warning .owl-page span {
  background: #d6973d;
  background: rgba(214, 151, 61, 0.5);
}

/* line 412, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-page:hover span,
body .owl-carousel.carousel-warning .owl-page:hover span {
  background: rgba(214, 151, 61, 0.8);
}

/* line 417, ../sass/_carousels.scss */
body .carousel.carousel-warning .owl-page.active span,
body .owl-carousel.carousel-warning .owl-page.active span {
  background: rgba(214, 151, 61, 0.8);
}

/* line 424, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-prev,
body .carousel.carousel-danger .owl-next,
body .owl-carousel.carousel-danger .owl-prev,
body .owl-carousel.carousel-danger .owl-next {
  color: #164194;
  color: rgba(215, 62, 77, 0.65);
}

/* line 429, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-prev:hover,
body .carousel.carousel-danger .owl-next:hover,
body .owl-carousel.carousel-danger .owl-prev:hover,
body .owl-carousel.carousel-danger .owl-next:hover {
  color: #164194;
}

/* line 432, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-prev:after,
body .carousel.carousel-danger .owl-next:after,
body .owl-carousel.carousel-danger .owl-prev:after,
body .owl-carousel.carousel-danger .owl-next:after {
  background: #164194;
  background: rgba(215, 62, 77, 0.65);
}

/* line 438, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-page:before,
body .owl-carousel.carousel-danger .owl-page:before {
  background: rgba(215, 62, 77, 0.17);
}

/* line 441, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-page span,
body .owl-carousel.carousel-danger .owl-page span {
  background: #164194;
  background: rgba(215, 62, 77, 0.5);
}

/* line 446, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-page:hover span,
body .owl-carousel.carousel-danger .owl-page:hover span {
  background: rgba(215, 62, 77, 0.8);
}

/* line 451, ../sass/_carousels.scss */
body .carousel.carousel-danger .owl-page.active span,
body .owl-carousel.carousel-danger .owl-page.active span {
  background: rgba(215, 62, 77, 0.8);
}

/* line 458, ../sass/_carousels.scss */
.carousel.bottom-navigation .owl-buttons,
.owl-carousel.bottom-navigation .owl-buttons {
  display: none !important;
}

/* line 463, ../sass/_carousels.scss */
.carousel.bottom-navigation .owl-controls .owl-pagination .owl-prev,
.owl-carousel.bottom-navigation .owl-controls .owl-pagination .owl-prev {
  margin-left: 0;
}

/* line 466, ../sass/_carousels.scss */
.carousel.bottom-navigation .owl-controls .owl-pagination .owl-next,
.owl-carousel.bottom-navigation .owl-controls .owl-pagination .owl-next {
  margin-right: 0;
}

/* line 479, ../sass/_carousels.scss */
.navigation .prev,
.navigation .next {
  border: 0 none;
  color: #ccc;
  color: rgba(0, 0, 0, 0.1);
  display: block;
  font-size: 26px;
  height: 20px;
  line-height: 20px;
  margin: -10px 0 0;
  position: absolute;
  top: 50%;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  width: 20px;
}

/* line 494, ../sass/_carousels.scss */
.navigation .prev:after,
.navigation .next:after {
  background: #ccc;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  height: 1px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
  width: 10px;
}

/* line 509, ../sass/_carousels.scss */
.navigation .prev .fa,
.navigation .next .fa {
  display: block;
  left: 11px;
  line-height: 20px;
  position: absolute;
  -webkit-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
  vertical-align: top;
  width: 9px;
}

/* line 519, ../sass/_carousels.scss */
body:not(.touch-device) .navigation .prev:hover,
body:not(.touch-device) .navigation .next:hover {
  color: rgba(0, 0, 0, 0.2);
}

/* line 522, ../sass/_carousels.scss */
body:not(.touch-device) .navigation .prev:hover:after,
body:not(.touch-device) .navigation .next:hover:after {
  opacity: 1;
  width: 16px;
}

/* line 526, ../sass/_carousels.scss */
body:not(.touch-device) .navigation .prev:hover .fa,
body:not(.touch-device) .navigation .next:hover .fa {
  left: 0;
}

/* line 533, ../sass/_carousels.scss */
.navigation .next:after {
  left: 0;
  right: auto;
}

/* line 537, ../sass/_carousels.scss */
.navigation .next .fa {
  left: auto;
  right: 11px;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
}

/* line 544, ../sass/_carousels.scss */
body:not(.touch-device) .navigation .next:hover .fa {
  left: auto;
  right: 0;
}

/* line 552, ../sass/_carousels.scss */
.navigation .pager a {
  border: 0 none;
  display: inline-block;
  height: 11px;
  margin: 0 7px;
  padding: 2px;
  vertical-align: top;
  width: 11px;
}

/* line 561, ../sass/_carousels.scss */
.navigation .pager a span {
  background: #ccc;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 500px;
  display: block;
  height: 100%;
  text-indent: -9999px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 100%;
}

/* line 572, ../sass/_carousels.scss */
.navigation .pager a:hover span {
  background: rgba(0, 0, 0, 0.2);
}

/* line 576, ../sass/_carousels.scss */
.navigation .pager a.selected {
  padding: 0;
}

/* line 579, ../sass/_carousels.scss */
.navigation .pager a.selected span {
  background: rgba(0, 0, 0, 0.2);
}

/* line 586, ../sass/_carousels.scss */
body .carousel-white .navigation .prev,
body .carousel-white .navigation .next {
  color: #fff;
}

/* line 590, ../sass/_carousels.scss */
body .carousel-white .navigation .prev:after,
body .carousel-white .navigation .next:after {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
}

/* line 594, ../sass/_carousels.scss */
body .carousel-white .navigation .prev:hover,
body .carousel-white .navigation .next:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 600, ../sass/_carousels.scss */
body .carousel-white .navigation .pager a span {
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

/* line 606, ../sass/_carousels.scss */
body .carousel-white .navigation .pager a:hover span,
body .carousel-white .navigation .pager a.selected span {
  background: rgba(255, 255, 255, 0.8);
}

/* line 614, ../sass/_carousels.scss */
body .carousel-primary .navigation .prev,
body .carousel-primary .navigation .next {
  color: #375099;
}

/* line 618, ../sass/_carousels.scss */
body .carousel-primary .navigation .prev:after,
body .carousel-primary .navigation .next:after {
  background: #375099;
  background: rgba(55, 80, 153, 0.8);
}

/* line 622, ../sass/_carousels.scss */
body .carousel-primary .navigation .prev:hover,
body .carousel-primary .navigation .next:hover {
  color: rgba(55, 80, 153, 0.8);
}

/* line 628, ../sass/_carousels.scss */
body .carousel-primary .navigation .pager a span {
  background: #375099;
  background: rgba(55, 80, 153, 0.5);
}

/* line 634, ../sass/_carousels.scss */
body .carousel-primary .navigation .pager a:hover span,
body .carousel-primary .navigation .pager a.selected span {
  background: rgba(55, 80, 153, 0.8);
}

/* line 642, ../sass/_carousels.scss */
body .carousel-success .navigation .prev,
body .carousel-success .navigation .next {
  color: #179680;
}

/* line 646, ../sass/_carousels.scss */
body .carousel-success .navigation .prev:after,
body .carousel-success .navigation .next:after {
  background: #179680;
  background: rgba(23, 150, 128, 0.8);
}

/* line 650, ../sass/_carousels.scss */
body .carousel-success .navigation .prev:hover,
body .carousel-success .navigation .next:hover {
  color: rgba(23, 150, 128, 0.8);
}

/* line 656, ../sass/_carousels.scss */
body .carousel-success .navigation .pager a span {
  background: #179680;
  background: rgba(23, 150, 128, 0.5);
}

/* line 662, ../sass/_carousels.scss */
body .carousel-success .navigation .pager a:hover span,
body .carousel-success .navigation .pager a.selected span {
  background: rgba(23, 150, 128, 0.8);
}

/* line 670, ../sass/_carousels.scss */
body .carousel-info .navigation .prev,
body .carousel-info .navigation .next {
  color: #20bdd0;
}

/* line 674, ../sass/_carousels.scss */
body .carousel-info .navigation .prev:after,
body .carousel-info .navigation .next:after {
  background: #20bdd0;
  background: rgba(32, 189, 208, 0.8);
}

/* line 678, ../sass/_carousels.scss */
body .carousel-info .navigation .prev:hover,
body .carousel-info .navigation .next:hover {
  color: rgba(32, 189, 208, 0.8);
}

/* line 684, ../sass/_carousels.scss */
body .carousel-info .navigation .pager a span {
  background: #20bdd0;
  background: rgba(32, 189, 208, 0.5);
}

/* line 690, ../sass/_carousels.scss */
body .carousel-info .navigation .pager a:hover span,
body .carousel-info .navigation .pager a.selected span {
  background: rgba(32, 189, 208, 0.8);
}

/* line 698, ../sass/_carousels.scss */
body .carousel-warning .navigation .prev,
body .carousel-warning .navigation .next {
  color: #d6973d;
}

/* line 702, ../sass/_carousels.scss */
body .carousel-warning .navigation .prev:after,
body .carousel-warning .navigation .next:after {
  background: #d6973d;
  background: rgba(214, 151, 61, 0.8);
}

/* line 706, ../sass/_carousels.scss */
body .carousel-warning .navigation .prev:hover,
body .carousel-warning .navigation .next:hover {
  color: rgba(214, 151, 61, 0.8);
}

/* line 712, ../sass/_carousels.scss */
body .carousel-warning .navigation .pager a span {
  background: #d6973d;
  background: rgba(214, 151, 61, 0.5);
}

/* line 718, ../sass/_carousels.scss */
body .carousel-warning .navigation .pager a:hover span,
body .carousel-warning .navigation .pager a.selected span {
  background: rgba(214, 151, 61, 0.8);
}

/* line 726, ../sass/_carousels.scss */
body .carousel-danger .navigation .prev,
body .carousel-danger .navigation .next {
  color: #164194;
}

/* line 730, ../sass/_carousels.scss */
body .carousel-danger .navigation .prev:after,
body .carousel-danger .navigation .next:after {
  background: #164194;
  background: rgba(215, 62, 77, 0.8);
}

/* line 734, ../sass/_carousels.scss */
body .carousel-danger .navigation .prev:hover,
body .carousel-danger .navigation .next:hover {
  color: rgba(215, 62, 77, 0.8);
}

/* line 740, ../sass/_carousels.scss */
body .carousel-danger .navigation .pager a span {
  background: #164194;
  background: rgba(215, 62, 77, 0.5);
}

/* line 746, ../sass/_carousels.scss */
body .carousel-danger .navigation .pager a:hover span,
body .carousel-danger .navigation .pager a.selected span {
  background: rgba(215, 62, 77, 0.8);
}

/* line 754, ../sass/_carousels.scss */
.carousel {
  width: 10000px;
}

/* line 757, ../sass/_carousels.scss */
.carousel.owl-carousel {
  width: auto;
}

/* line 760, ../sass/_carousels.scss */
.carousel>.col-xs-1,
.carousel>.col-xs-2,
.carousel>.col-xs-3,
.carousel>.col-xs-4,
.carousel>.col-xs-5,
.carousel>.col-xs-6,
.carousel>.col-xs-7,
.carousel>.col-xs-8,
.carousel>.col-xs-9,
.carousel>.col-xs-10,
.carousel>.col-xs-11,
.carousel>.col-xs-12 {
  max-width: 750px;
}

/******************************************************************************
  Charts
*******************************************************************************/
/* line 4, ../sass/elements/_charts.scss */
.chart {
  background: #fff;
  border-radius: 3px;
  color: #fff;
}

/* line 9, ../sass/elements/_charts.scss */
.chart .jqplot-data-label {
  color: #fff;
  font-size: .75em;
  font-family: 'Ubuntu', sans-serif;;
  font-weight: 300;
}

/* line 15, ../sass/elements/_charts.scss */
.chart .jqplot-table-legend {
  background: none;
  border: 0 none;
  margin-left: 0;
  margin-right: 0;
}

/* line 21, ../sass/elements/_charts.scss */
.chart .jqplot-table-legend .jqplot-table-legend-swatch {
  border-radius: 50px;
  border: 8px solid;
  display: inline-block;
  height: 16px;
  vertical-align: top;
  width: 16px;
}

/* line 29, ../sass/elements/_charts.scss */
.chart .jqplot-table-legend .jqplot-table-legend {
  color: #777;
  font-size: 13px;
  line-height: 1;
  padding-left: 7px;
}

/******************************************************************************
  Dividers
*******************************************************************************/
/* line 4, ../sass/elements/_dividers.scss */
.divider {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* line 8, ../sass/elements/_dividers.scss */
.divider .title {
  display: table-cell;
  font-size: 48px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 18, ../sass/elements/_dividers.scss */
.divider .line {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}

/* line 23, ../sass/elements/_dividers.scss */
.divider .line:only-child {
  display: block;
  width: 100%;
}

/* line 28, ../sass/elements/_dividers.scss */
.divider .line:before {
  border-top: 1px solid #ccc;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  margin-right: 16px;
}

/* line 35, ../sass/elements/_dividers.scss */
.divider .line:only-child:before {
  margin-right: 0;
}

/* line 40, ../sass/elements/_dividers.scss */
.divider .title+.line:before {
  margin: 0 0 0 16px;
}

/* line 46, ../sass/elements/_dividers.scss */
.divider.left .line,
.divider.right .line {
  width: 100%;
}

/******************************************************************************
  Features
*******************************************************************************/
/* line 4, ../sass/elements/_features.scss */
.feature-box,
a.feature-box {
  background: rgba(0, 0, 0, 0.05);
  border: 0 none !important;
  border-radius: 3px;
  color: #777;
  display: block;
  font-size: .875em;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 345px;
  padding: 30px 25px 28px;
  text-align: center;
}

/* line 18, ../sass/elements/_features.scss */
.feature-box .icon,
a.feature-box .icon {
  font-size: 4em;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 16px;
  width: 80px;
}

/* line 25, ../sass/elements/_features.scss */
.feature-box .icon.border,
a.feature-box .icon.border {
  border: 1px solid #777;
  border-radius: 50%;
  font-size: 2em;
}

/* line 30, ../sass/elements/_features.scss */
.feature-box .icon.background,
a.feature-box .icon.background {
  background: #777;
  border-radius: 50%;
  color: #fff;
  font-size: 2em;
}

/* line 36, ../sass/elements/_features.scss */
.feature-box .icon .fa,
a.feature-box .icon .fa {
  line-height: inherit;
  vertical-align: top;
}

/* line 41, ../sass/elements/_features.scss */
.feature-box .title,
a.feature-box .title {
  font-size: 1.5em;
  line-height: 1.55;
  margin: 0 0 3px;
}

/* line 47, ../sass/elements/_features.scss */
.feature-box.feature-box-primary .icon,
a.feature-box.feature-box-primary .icon {
  color: #375099;
}

/* line 50, ../sass/elements/_features.scss */
.feature-box.feature-box-primary .icon.border,
a.feature-box.feature-box-primary .icon.border {
  border-color: #375099;
}

/* line 54, ../sass/elements/_features.scss */
.feature-box.feature-box-primary .icon.background,
a.feature-box.feature-box-primary .icon.background {
  background: #375099;
  color: #fff;
}

/* line 59, ../sass/elements/_features.scss */
.feature-box.feature-box-primary .title,
a.feature-box.feature-box-primary .title {
  color: #375099;
}

/* line 64, ../sass/elements/_features.scss */
.feature-box.feature-box-success .icon,
a.feature-box.feature-box-success .icon {
  color: #179680;
}

/* line 67, ../sass/elements/_features.scss */
.feature-box.feature-box-success .icon.border,
a.feature-box.feature-box-success .icon.border {
  border-color: #179680;
}

/* line 71, ../sass/elements/_features.scss */
.feature-box.feature-box-success .icon.background,
a.feature-box.feature-box-success .icon.background {
  background: #179680;
  color: #fff;
}

/* line 76, ../sass/elements/_features.scss */
.feature-box.feature-box-success .title,
a.feature-box.feature-box-success .title {
  color: #179680;
}

/* line 81, ../sass/elements/_features.scss */
.feature-box.feature-box-info .icon,
a.feature-box.feature-box-info .icon {
  color: #20bdd0;
}

/* line 84, ../sass/elements/_features.scss */
.feature-box.feature-box-info .icon.border,
a.feature-box.feature-box-info .icon.border {
  border-color: #20bdd0;
}

/* line 88, ../sass/elements/_features.scss */
.feature-box.feature-box-info .icon.background,
a.feature-box.feature-box-info .icon.background {
  background: #20bdd0;
  color: #fff;
}

/* line 93, ../sass/elements/_features.scss */
.feature-box.feature-box-info .title,
a.feature-box.feature-box-info .title {
  color: #20bdd0;
}

/* line 98, ../sass/elements/_features.scss */
.feature-box.feature-box-warning .icon,
a.feature-box.feature-box-warning .icon {
  color: #d6973d;
}

/* line 101, ../sass/elements/_features.scss */
.feature-box.feature-box-warning .icon.border,
a.feature-box.feature-box-warning .icon.border {
  border-color: #d6973d;
}

/* line 105, ../sass/elements/_features.scss */
.feature-box.feature-box-warning .icon.background,
a.feature-box.feature-box-warning .icon.background {
  background: #d6973d;
  color: #fff;
}

/* line 110, ../sass/elements/_features.scss */
.feature-box.feature-box-warning .title,
a.feature-box.feature-box-warning .title {
  color: #d6973d;
}

/* line 115, ../sass/elements/_features.scss */
.feature-box.feature-box-danger .icon,
a.feature-box.feature-box-danger .icon {
  color: #164194;
}

/* line 118, ../sass/elements/_features.scss */
.feature-box.feature-box-danger .icon.border,
a.feature-box.feature-box-danger .icon.border {
  border-color: #164194;
}

/* line 122, ../sass/elements/_features.scss */
.feature-box.feature-box-danger .icon.background,
a.feature-box.feature-box-danger .icon.background {
  background: #164194;
  color: #fff;
}

/* line 127, ../sass/elements/_features.scss */
.feature-box.feature-box-danger .title,
a.feature-box.feature-box-danger .title {
  color: #164194;
}

/******************************************************************************
  Pricings
*******************************************************************************/
/* line 4, ../sass/elements/_pricings.scss */
.pricing {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  color: #777;
  font-size: .875em;
  line-height: 1.5;
  margin: 0 auto 30px;
  max-width: 293px;
  padding: 16px 0 30px;
  text-align: center;
}

/* line 15, ../sass/elements/_pricings.scss */
.pricing .icon {
  font-size: 4em;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 16px;
  width: 80px;
}

/* line 22, ../sass/elements/_pricings.scss */
.pricing .icon.border {
  border: 1px solid #777;
  border-radius: 50%;
  font-size: 2em;
}

/* line 27, ../sass/elements/_pricings.scss */
.pricing .icon.background {
  background: #777;
  border-radius: 50%;
  color: #fff;
  font-size: 2em;
}

/* line 33, ../sass/elements/_pricings.scss */
.pricing .icon .fa {
  line-height: inherit;
  vertical-align: top;
}

/* line 38, ../sass/elements/_pricings.scss */
.pricing .title {
  font-size: 2em;
  line-height: 1.58;
  margin: 0 0 26px;
}

/* line 43, ../sass/elements/_pricings.scss */
.pricing .options {
  border-top: 1px solid #777;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

/* line 50, ../sass/elements/_pricings.scss */
.pricing .options li {
  border-bottom: 1px solid #777;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 0 14px;
}

/* line 56, ../sass/elements/_pricings.scss */
.pricing .price-box {
  border-bottom: 1px solid #777;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1;
  padding: 0 0 30px;
}

/* line 62, ../sass/elements/_pricings.scss */
.pricing .price-box .price {
  font-size: 2.25em;
}

/* line 65, ../sass/elements/_pricings.scss */
.pricing .price-box .price-label {
  color: #999;
  font-size: .85em;
  font-weight: 300;
}

/* line 71, ../sass/elements/_pricings.scss */
.pricing .btn {
  margin: 29px auto 0;
}

/* line 76, ../sass/elements/_pricings.scss */
.pricing.pricing-primary .icon {
  color: #375099;
}

/* line 79, ../sass/elements/_pricings.scss */
.pricing.pricing-primary .icon.border {
  border-color: #375099;
}

/* line 83, ../sass/elements/_pricings.scss */
.pricing.pricing-primary .icon.background {
  background: #375099;
  color: #fff;
}

/* line 88, ../sass/elements/_pricings.scss */
.pricing.pricing-primary .title,
.pricing.pricing-primary .price-box .price {
  color: #375099;
}

/* line 94, ../sass/elements/_pricings.scss */
.pricing.pricing-success .icon {
  color: #179680;
}

/* line 97, ../sass/elements/_pricings.scss */
.pricing.pricing-success .icon.border {
  border-color: #179680;
}

/* line 101, ../sass/elements/_pricings.scss */
.pricing.pricing-success .icon.background {
  background: #179680;
  color: #fff;
}

/* line 106, ../sass/elements/_pricings.scss */
.pricing.pricing-success .title,
.pricing.pricing-success .price-box .price {
  color: #179680;
}

/* line 112, ../sass/elements/_pricings.scss */
.pricing.pricing-info .icon {
  color: #20bdd0;
}

/* line 115, ../sass/elements/_pricings.scss */
.pricing.pricing-info .icon.border {
  border-color: #20bdd0;
}

/* line 119, ../sass/elements/_pricings.scss */
.pricing.pricing-info .icon.background {
  background: #20bdd0;
  color: #fff;
}

/* line 124, ../sass/elements/_pricings.scss */
.pricing.pricing-info .title,
.pricing.pricing-info .price-box .price {
  color: #20bdd0;
}

/* line 130, ../sass/elements/_pricings.scss */
.pricing.pricing-warning .icon {
  color: #d6973d;
}

/* line 133, ../sass/elements/_pricings.scss */
.pricing.pricing-warning .icon.border {
  border-color: #d6973d;
}

/* line 137, ../sass/elements/_pricings.scss */
.pricing.pricing-warning .icon.background {
  background: #d6973d;
  color: #fff;
}

/* line 142, ../sass/elements/_pricings.scss */
.pricing.pricing-warning .title,
.pricing.pricing-warning .price-box .price {
  color: #d6973d;
}

/* line 148, ../sass/elements/_pricings.scss */
.pricing.pricing-danger .icon {
  color: #164194;
}

/* line 151, ../sass/elements/_pricings.scss */
.pricing.pricing-danger .icon.border {
  border-color: #164194;
}

/* line 155, ../sass/elements/_pricings.scss */
.pricing.pricing-danger .icon.background {
  background: #164194;
  color: #fff;
}

/* line 160, ../sass/elements/_pricings.scss */
.pricing.pricing-danger .title,
.pricing.pricing-danger .price-box .price {
  color: #164194;
}

/* line 165, ../sass/elements/_pricings.scss */
.inverse .pricing {
  background: #fff;
  background: rgba(255, 255, 255, 0.98);
}

/* Pricings Simple */
/* line 171, ../sass/elements/_pricings.scss */
.pricing-simple {
  max-width: 370px;
  padding: 0;
}

/* line 175, ../sass/elements/_pricings.scss */
.pricing-simple .header {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px 3px 0 0;
  display: table;
  padding: 20px;
  position: relative;
  width: 100%;
}

/* line 183, ../sass/elements/_pricings.scss */
.pricing-simple .header .icon {
  font-size: 3em;
  height: 62px;
  left: 20px;
  line-height: 62px;
  margin: -31px 0 0;
  position: absolute;
  top: 50%;
  width: 62px;
}

/* line 193, ../sass/elements/_pricings.scss */
.pricing-simple .header .icon.border,
.pricing-simple .header .icon.background {
  font-size: 2.3em;
}

/* line 198, ../sass/elements/_pricings.scss */
.pricing-simple .header .title {
  display: table-cell;
  font-size: 1.57em;
  height: 60px;
  line-height: 1.37;
  margin: 0;
  padding: 0 65px;
  vertical-align: middle;
}

/* line 208, ../sass/elements/_pricings.scss */
.pricing-simple .options {
  border: 0 none;
}

/* line 211, ../sass/elements/_pricings.scss */
.pricing-simple .options li {
  border: 0 none;
  line-height: 1.6;
}

/* line 215, ../sass/elements/_pricings.scss */
.pricing-simple .options li:nth-child(2n) {
  background: rgba(0, 0, 0, 0.05);
}

/* line 218, ../sass/elements/_pricings.scss */
.pricing-simple .options li:last-child {
  border-radius: 0 0 3px 3px;
}

/* line 225, ../sass/elements/_pricings.scss */
.pricing-simple.pricing-primary .header,
.pricing-simple.pricing-primary .options li:nth-child(2n) {
  background: rgba(55, 80, 153, 0.05);
}

/* line 231, ../sass/elements/_pricings.scss */
.pricing-simple.pricing-success .header,
.pricing-simple.pricing-success .options li:nth-child(2n) {
  background: rgba(23, 150, 128, 0.05);
}

/* line 237, ../sass/elements/_pricings.scss */
.pricing-simple.pricing-info .header,
.pricing-simple.pricing-info .options li:nth-child(2n) {
  background: rgba(32, 189, 208, 0.05);
}

/* line 243, ../sass/elements/_pricings.scss */
.pricing-simple.pricing-warning .header,
.pricing-simple.pricing-warning .options li:nth-child(2n) {
  background: rgba(214, 151, 61, 0.05);
}

/* line 249, ../sass/elements/_pricings.scss */
.pricing-simple.pricing-danger .header,
.pricing-simple.pricing-danger .options li:nth-child(2n) {
  background: rgba(215, 62, 77, 0.05);
}

/* line 256, ../sass/elements/_pricings.scss */
.pricings-carousel .pricing {
  margin-bottom: 0;
}

/******************************************************************************
  Team
*******************************************************************************/
/* line 4, ../sass/elements/_team.scss */
.employee {
  background: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto 30px;
  max-width: 370px;
  padding: 9px;
  position: relative;
}

/* line 13, ../sass/elements/_team.scss */
.employee .image {
  float: left;
  padding-right: 20px;
  width: 140px;
}

/* line 18, ../sass/elements/_team.scss */
.employee .employee-content {
  overflow: hidden;
  padding: 0 0 30px;
}

/* line 22, ../sass/elements/_team.scss */
.employee .employee-content .title {
  font-size: 1.125em;
  margin: 5px 0 1px;
}

/* line 26, ../sass/elements/_team.scss */
.employee .employee-content .post {
  color: #768088;
  font-size: .75em;
  line-height: 1.4;
}

/* line 31, ../sass/elements/_team.scss */
.employee .employee-content .description {
  display: -webkit-box;
  font-size: .8125em;
  font-weight: 300;
  line-height: 1.38;
  margin: 19px 0 0;
  max-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* line 43, ../sass/elements/_team.scss */
.employee .employee-content .social {
  bottom: 10px;
  position: absolute;
}

/* line 47, ../sass/elements/_team.scss */
.employee .employee-content .social a {
  border: 0 none;
  display: block;
  float: left;
  font-size: .7em;
  margin: 0 28px 0 0;
}

/* line 54, ../sass/elements/_team.scss */
.employee .employee-content .social a:last-child {
  margin-right: 0;
}

/* line 57, ../sass/elements/_team.scss */
.employee .employee-content .social a:hover {
  color: #164194;
}

/******************************************************************************
  Skills
*******************************************************************************/
/* line 4, ../sass/elements/_skills.scss */
.skill-wrap {
  background: #f2f2f2;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 500px;
  display: inline-block;
  padding: 2px;
  position: relative;
  text-align: center;
}

/* line 13, ../sass/elements/_skills.scss */
.skill-wrap .skill-percent {
  font-size: 3.125em;
  font-family: 'Ubuntu', sans-serif;
  left: 10px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 40px;
}

/* line 22, ../sass/elements/_skills.scss */
.skill-wrap .skill-name {
  color: #768088;
  font-size: .8125em;
  font-weight: 300;
  left: 10px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 95px;
}

/* line 32, ../sass/elements/_skills.scss */
.skill-wrap canvas {
  vertical-align: top;
}

/******************************************************************************
  Posts
*******************************************************************************/
/* line 4, ../sass/elements/_grid-posts.scss */
.grid-post {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  margin: 0 auto 30px;
  max-width: 370px;
  padding: 10px 10px 30px;
  text-align: center;
  visibility: visible !important;
}

/* line 13, ../sass/elements/_grid-posts.scss */
.grid-post .image {
  margin-bottom: 21px;
}

/* line 16, ../sass/elements/_grid-posts.scss */
.grid-post .title {
  font-size: 1.75em;
  margin-bottom: 1px;
}

/* line 20, ../sass/elements/_grid-posts.scss */
.grid-post .meta {
  color: #aaa;
  font-size: .75em;
  margin: 0 0 11px;
}

/* line 25, ../sass/elements/_grid-posts.scss */
.grid-post .description {
  color: #777;
  font-size: .875em;
  line-height: 1.75;
  margin: 0 0 18px;
}

/* line 31, ../sass/elements/_grid-posts.scss */
.grid-post.bg-white {
  background: #fff;
}

/******************************************************************************
  Testimonials
*******************************************************************************/
/* line 4, ../sass/elements/_testimonials.scss */
.testimonials {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 46px 40px 41px;
}

/* line 13, ../sass/elements/_testimonials.scss */
.testimonials .testimonial {
  text-align: center;
}

/* line 16, ../sass/elements/_testimonials.scss */
.testimonials .testimonial .icon {
  color: #164194;
  font-size: 3.5em;
  line-height: 1;
  margin-bottom: 27px;
  vertical-align: top;
}

/* line 23, ../sass/elements/_testimonials.scss */
.testimonials .testimonial .icon .fa {
  vertical-align: top;
}

/* line 28, ../sass/elements/_testimonials.scss */
.testimonials .testimonial blockquote {
  border: 0 none;
  margin: 0;
  padding: 0;
}

/* line 34, ../sass/elements/_testimonials.scss */
.testimonials .owl-pagination {
  margin-top: 41px;
  padding: 0;
}

/******************************************************************************
  Success
*******************************************************************************/
/* line 5, ../sass/elements/_success.scss */
.success-carousel .stories {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  margin-top: 75px;
  padding: 41px 70px;
  position: relative;
}

/* line 15, ../sass/elements/_success.scss */
.success-carousel .stories .avatars {
  height: 130px;
  left: 50%;
  margin: -65px 0 0 -65px;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 130px;
}

/* line 25, ../sass/elements/_success.scss */
.success-carousel .stories .avatars .avatar {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 75px;
  height: 130px;
  margin: 0;
  padding: 5px;
  width: 130px;
}

/* line 33, ../sass/elements/_success.scss */
.success-carousel .stories .avatars .avatar img {
  border-radius: 60px;
}

/* line 38, ../sass/elements/_success.scss */
.success-carousel .stories .content {
  width: 10000px;
}

/* line 41, ../sass/elements/_success.scss */
.success-carousel .stories .content .story {
  float: left;
  padding-top: 46px;
  text-align: center;
}

/* line 46, ../sass/elements/_success.scss */
.success-carousel .stories .content .story blockquote {
  border: 0 none;
  margin: 0;
  padding: 0;
}

/* line 53, ../sass/elements/_success.scss */
.success-carousel .stories .navigation {
  line-height: 1;
  overflow: hidden;
  vertical-align: top;
}

/* line 58, ../sass/elements/_success.scss */
.success-carousel .stories .navigation .prev,
.success-carousel .stories .navigation .next {
  left: 30px;
}

/* line 66, ../sass/elements/_success.scss */
.success-carousel .stories .navigation .next {
  left: auto;
  right: 30px;
}

/* line 74, ../sass/elements/_success.scss */
.success-carousel .stories .navigation .pager {
  margin: 41px 0 0;
}

/* line 79, ../sass/elements/_success.scss */
.success-carousel .logos {
  margin-top: 36px;
  text-align: center;
}

/* line 83, ../sass/elements/_success.scss */
.success-carousel .logos .logo {
  border: 0;
  display: inline-block;
  margin-top: 20px;
  opacity: .25;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: top;
}

/* line 91, ../sass/elements/_success.scss */
.success-carousel .logos .logo:hover {
  opacity: 1;
}

/* line 94, ../sass/elements/_success.scss */
.success-carousel .logos .logo.selected {
  opacity: .75;
}

/* line 102, ../sass/elements/_success.scss */
.success-carousel.inverse .stories {
  background: #fff;
  background: rgba(255, 255, 255, 0.98);
  color: #1e2d3a;
}

/* line 108, ../sass/elements/_success.scss */
.success-carousel.inverse .stories .avatars .avatar {
  background: rgba(255, 255, 255, 0.75);
}

/* line 113, ../sass/elements/_success.scss */
.success-carousel.inverse .stories blockquote footer,
.success-carousel.inverse .stories blockquote .footer {
  color: #1e2d3a;
}

/******************************************************************************
  Services
*******************************************************************************/
@-webkit-keyframes pulse {
  from {
    background-color: rgba(0, 0, 0, 0.03);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: transparent;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  to {
    background-color: transparent;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  from {
    background-color: rgba(0, 0, 0, 0.03);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: transparent;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  to {
    background-color: transparent;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes pulse-inverse {
  from {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  to {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse-inverse {
  from {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  to {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* line 74, ../sass/elements/_services.scss */
.services-wrap {
  display: table;
  position: relative;
  width: 100%;
  z-index: 0;
}

/* line 89, ../sass/elements/_services.scss */
.services-wrap .wrap-container {
  display: table-row;
}

/* line 97, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column {
  display: table-cell;
  vertical-align: middle;
  width: 25%;
}

/* line 106, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap {
  border-radius: 500px;
  height: 170px;
  position: relative;
  width: 150px;
}

/* line 120, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap {
  background: none;
  cursor: pointer;
  display: block;
  height: 170px;
  margin-left: -10px;
  padding: 12px;
  -webkit-transition: padding 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out;
  width: 170px;
}

/* line 134, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap:before {
  background: #f2f2f2;
  border-radius: 500px;
  bottom: 10px;
  content: "";
  display: block;
  left: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
}

/* line 150, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap:hover {
  padding: 8px;
}

/* line 153, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap:hover:before {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

/* line 160, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap canvas {
  height: 100%;
  position: relative;
  width: 100%;
}

/* line 165, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .skill-percent {
  display: none;
}

/* line 168, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .skill-name {
  color: #1e2d3a;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.125em;
  font-weight: 300;
  left: 15px;
  margin-top: -9px;
  right: 15px;
  text-transform: uppercase;
  top: 50%;
}

/* line 179, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .double-name+.skill-percent+.skill-name {
  margin-top: -18px;
}

/* line 182, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .line {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 1px;
  left: 50%;
  margin: -.5px 0 0;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  z-index: -1;
}

/* line 196, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .line .default {
  background: rgba(0, 0, 0, 0.03);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 204, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .skill-wrap .line .active {
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  left: 0;
  position: absolute;
  width: 0;
}

/* line 217, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap.active .skill-wrap {
  padding: 10px;
}

/* line 220, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap.active .skill-wrap:before {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

/* line 228, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column .circle-wrap .description {
  display: none;
}

/* line 233, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-two .circle-wrap {
  margin: 0 0 120px auto;
}

/* line 242, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-two .circle-wrap+.circle-wrap {
  margin-bottom: 0;
}

/* line 247, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three {
  min-width: 400px;
  padding: 0 8px;
  position: relative;
  width: 400px;
}

/* line 267, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .circle-wrap {
  margin: 0 auto;
  width: 170px;
}

/* line 275, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .circle-wrap .skill-wrap {
  margin-left: 0;
}

/* line 277, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .circle-wrap .skill-wrap .line {
  margin: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* line 284, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .circle-wrap:first-child .skill-wrap .line {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 291, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle {
  background: #f2f2f2;
  height: 260px;
  margin: 70px auto;
  min-height: 260px;
  padding: 55px 25px;
  text-align: center;
  width: 260px;
  z-index: 1;
}

/* line 308, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle:before {
  border-radius: 500px;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: pulse 2s ease-in-out infinite;
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}

/* line 321, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .circle-content {
  display: table-cell;
  height: 150px;
  vertical-align: middle;
  width: 100%;
}

/* line 327, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .circle-content .title {
  font-size: 1.5em;
  margin: 0;
}

/* line 332, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content {
  background: #f2f2f2;
  border-radius: 500px;
  bottom: -70px;
  font-size: .875em;
  line-height: 1.5;
  left: -70px;
  opacity: 0;
  padding: 59px 50px 59px 70px;
  position: absolute;
  right: -70px;
  top: -70px;
  visibility: hidden;
  z-index: -1;
}

/* line 368, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content.opened {
  visibility: visible;
  -webkit-transform: translateZ(0);
  z-index: 999;
}

/* line 373, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .close {
  border: 0 none;
  color: #768088;
  display: block;
  fill: #768088;
  font-size: 1em;
  height: 15px;
  left: 50%;
  line-height: 1;
  margin-left: -7.5px;
  opacity: 1;
  position: absolute;
  top: 20px;
  text-shadow: none;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  width: 15px;
}

/* line 390, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .close:hover {
  fill: #164194;
}

/* line 394, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .description {
  display: block;
}

/* line 397, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .description .title {
  font-size: 1.5em;
  margin-bottom: 18px;
  padding-right: 20px;
}

/* line 402, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .description .text {
  height: 190px;
  text-align: left;
}

/* line 409, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .description p {
  margin-bottom: 21px;
}

/* line 412, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-three .main-circle .opened-content .description p:last-child {
  margin-bottom: 0;
}

/* line 421, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-four .circle-wrap {
  margin: 0 0 120px 0;
}


/* line 430, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-four .circle-wrap+.circle-wrap {
  margin-bottom: 0;
}

/* line 444, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-five .circle-wrap {
  margin: 0 0 0 auto;
}

/* line 455, ../sass/elements/_services.scss */
.services-wrap .wrap-container .column.column-five .circle-wrap .skill-wrap .line {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 493, ../sass/elements/_services.scss */
.services-wrap.inverse .wrap-container .column .circle-wrap .skill-wrap .line .default {
  background: rgba(255, 255, 255, 0.15);
}

/* line 496, ../sass/elements/_services.scss */
.services-wrap.inverse .wrap-container .column .circle-wrap .skill-wrap .line .active {
  background: #fff;
}

/* line 501, ../sass/elements/_services.scss */
.services-wrap.inverse .wrap-container .column .circle-wrap.main-circle:before {
  -webkit-animation: pulse-inverse 2s ease-in-out infinite;
  animation: pulse-inverse 2s ease-in-out infinite;
}

/******************************************************************************
  Facts
*******************************************************************************/
/* line 4, ../sass/elements/_facts.scss */
.facts {
  margin-top: 10px;
}

/* line 11, ../sass/elements/_facts.scss */
.facts .facts-title {
  background: #f2f2f2;
  border-radius: 50%;
  display: table;
  height: 260px;
  margin: 0 auto -45px;
  position: relative;
  width: 260px;
  z-index: 1;
}

/* line 27, ../sass/elements/_facts.scss */
.facts .facts-title:after {
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: pulse 2s ease-in-out infinite;
  animation: pulse 2s ease-in-out infinite;
  z-index: 0;
}

/* line 40, ../sass/elements/_facts.scss */
.facts .facts-title:before {
  border: 1px solid #dbe0e5;
  border-radius: 50%;
  bottom: 6px;
  content: "";
  left: 6px;
  position: absolute;
  right: 6px;
  top: 6px;
}

/* line 50, ../sass/elements/_facts.scss */
.facts .facts-title .line {
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  bottom: -49px;
  content: "";
  left: -49px;
  pointer-events: none;
  position: absolute;
  right: -49px;
  top: -49px;
  z-index: 0;
}

/* line 65, ../sass/elements/_facts.scss */
.facts .facts-title .line+.line {
  bottom: -123px;
  left: -123px;
  right: -123px;
  top: -123px;
}

/* line 71, ../sass/elements/_facts.scss */
.facts .facts-title .line+.line+.line {
  bottom: -213px;
  left: -213px;
  right: -213px;
  top: -213px;
}

/* line 77, ../sass/elements/_facts.scss */
.facts .facts-title .line+.line+.line+.line {
  bottom: -318px;
  left: -318px;
  right: -318px;
  top: -318px;
}

/* line 86, ../sass/elements/_facts.scss */
.facts .facts-title .title-wrap {
  display: table-row;
  height: 100%;
  width: 100%;
}

/* line 91, ../sass/elements/_facts.scss */
.facts .facts-title .title-wrap .title {
  display: table-cell;
  font-size: 1.5em;
  padding: 25px;
  text-align: center;
  vertical-align: middle;
}

/* line 100, ../sass/elements/_facts.scss */
.facts .facts-list {
  margin: 0 auto;
  max-width: 1100px;
  z-index: 1;
}

/* line 108, ../sass/elements/_facts.scss */
.facts .facts-list:before,
.facts .facts-list:after {
  content: "";
  display: table;
  width: 100%;
}

/* line 115, ../sass/elements/_facts.scss */
.facts .facts-list .fact {
  float: left;
  height: 170px;
  position: relative;
  width: 170px;
}

/* line 121, ../sass/elements/_facts.scss */
.facts .facts-list .fact:before {
  background: rgba(0, 0, 0, 0.03);
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  width: 400px;
}

/* line 144, ../sass/elements/_facts.scss */
.facts .facts-list .fact .fa {
  font-size: 15px;
  left: 50%;
  margin: -53px 0 0 -8px;
  opacity: .7;
  position: absolute;
  top: 50%;
  vertical-align: top;
  z-index: 1;
}

/* line 154, ../sass/elements/_facts.scss */
.facts .facts-list .fact .fa:before {
  margin-left: 1px;
}

/* line 158, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap {
  background: #f2f2f2;
  cursor: pointer;
  height: 150px;
  margin: 10px;
  padding: 2px;
  -webkit-transition: height 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, width 0.2s ease-in-out;
  transition: height 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, width 0.2s ease-in-out;
  width: 150px;
  z-index: 1;
}

/* line 172, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap:hover {
  height: 170px;
  margin: 0;
  padding: 8px;
  width: 170px;
}

/* line 178, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap .skill-percent {
  font-size: 3.125em;
  margin-top: -34px;
  top: 50%;
}

/* line 183, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap .skill-name {
  color: #768088;
  font-size: .8125em;
  margin-top: 22px;
  top: 50%;
}

/* line 189, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap canvas {
  height: 100%;
  width: 100%;
}

/* line 194, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill:before {
  border: 1px solid #000;
  border-radius: 50%;
  bottom: 5px;
  content: "";
  left: 5px;
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transition: bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
}

/* line 209, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill:hover:before {
  bottom: 12px;
  left: 12px;
  right: 12px;
  top: 12px;
}

/* line 216, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill.text-primary:before {
  border-color: #375099;
}

/* line 221, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill.text-success:before {
  border-color: #179680;
}

/* line 226, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill.text-info:before {
  border-color: #20bdd0;
}

/* line 231, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill.text-warning:before {
  border-color: #d6973d;
}

/* line 236, ../sass/elements/_facts.scss */
.facts .facts-list .fact .skill-wrap.full-skill.text-danger:before {
  border-color: #164194;
}

/* line 242, ../sass/elements/_facts.scss */
.facts .facts-list .fact+.fact {
  float: right;
}

/* line 248, ../sass/elements/_facts.scss */
.facts .facts-list .fact+.fact:before {
  -webkit-transform: rotate(-160deg);
  -ms-transform: rotate(-160deg);
  transform: rotate(-160deg);
}

/* line 263, ../sass/elements/_facts.scss */
.facts .facts-list+.facts-list {
  margin-top: 14px;
  max-width: 470px;
}

/* line 278, ../sass/elements/_facts.scss */
.facts .facts-list+.facts-list .fact:before {
  -webkit-transform: rotate(-67deg);
  -ms-transform: rotate(-67deg);
  transform: rotate(-67deg);
}

/* line 290, ../sass/elements/_facts.scss */
.facts .facts-list+.facts-list .fact+.fact:before {
  -webkit-transform: rotate(-113deg);
  -ms-transform: rotate(-113deg);
  transform: rotate(-113deg);
}

/* line 301, ../sass/elements/_facts.scss */
.facts .facts-list+.facts-list .fact:only-child {
  float: none;
  margin: 0 auto;
}

/* line 309, ../sass/elements/_facts.scss */
.facts .facts-list+.facts-list .fact:only-child:before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* line 326, ../sass/elements/_facts.scss */
.facts.inverse .facts-title:after {
  -webkit-animation: pulse-inverse 2s ease-in-out infinite;
  animation: pulse-inverse 2s ease-in-out infinite;
}

/* line 330, ../sass/elements/_facts.scss */
.facts.inverse .facts-title:before {
  border: 1px solid #dbe0e5;
}

/* line 333, ../sass/elements/_facts.scss */
.facts.inverse .facts-title .line {
  border-color: rgba(255, 255, 255, 0.12);
}

/* line 336, ../sass/elements/_facts.scss */
.facts.inverse .facts-title .line+.line {
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 339, ../sass/elements/_facts.scss */
.facts.inverse .facts-title .line+.line+.line {
  border-color: rgba(255, 255, 255, 0.06);
}

/* line 342, ../sass/elements/_facts.scss */
.facts.inverse .facts-title .line+.line+.line+.line {
  border-color: rgba(255, 255, 255, 0.04);
}

/* line 351, ../sass/elements/_facts.scss */
.facts.inverse .facts-list .fact:before {
  background: rgba(255, 255, 255, 0.17);
}

/******************************************************************************
  Works
*******************************************************************************/
/* line 4, ../sass/elements/_works.scss */
.work {
  border: 0 none !important;
  display: block;
  margin: 0 auto 30px;
  max-width: 270px;
  position: relative;
}

/* line 11, ../sass/elements/_works.scss */
.work .title {
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 3px;
  bottom: 5px;
  color: #ffffff;
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.15;
  left: 5px;
  margin: 0;
  padding: 4px 8px;
  position: absolute;
}

/* line 28, ../sass/elements/_works.scss */
.work .title h1,
.work .title h2,
.work .title h3,
.work .title h4,
.work .title h5,
.work .title h6 {
  color: #fff7cc;
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  vertical-align: top;
}

/* line 37, ../sass/elements/_works.scss */
.work .title span {
  font-family: 'Ubuntu', sans-serif;;
  font-size: .67em;
  font-weight: 300;
  font-style: italic;
}

/* line 47, ../sass/elements/_works.scss */
.work .hover {
  background: rgba(29, 62, 125, 0.7);
  bottom: 0;
  color: #ffffff;
  
  font-size: 27px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  top: 0;
}

/* line 61, ../sass/elements/_works.scss */
.work .hover .fa {
  left: 50%;
  line-height: 1;
  margin: -13.5px 0 0 -12px;
  position: absolute;
  top: 50%;
}

/* line 70, ../sass/elements/_works.scss */
.work:hover .hover {
  opacity: 1;
}

/* Works Carousel */
/* line 77, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap {
  margin-bottom: 11px;
  position: relative;
}

/* line 81, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap {
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 3;
}

/* line 93, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap.loaded {
  overflow: visible;
}

/* line 96, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap:before,
.work-carousel .carousel-wrap .main-carousel-wrap:after {
  bottom: 0;
  box-shadow: -80px 0 0 rgba(0, 0, 0, 0.05);
  content: "";
  left: 80px;
  height: 35%;
  max-width: 200px;
  max-height: 44px;
  position: absolute;
  -webkit-transform: skew(50deg);
  -ms-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  width: 50%;
  z-index: -1;
}

/* line 114, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap:after {
  box-shadow: 80px 0 0 rgba(0, 0, 0, 0.05);
  left: auto;
  right: 80px;
  -webkit-transform: skew(-50deg);
  -ms-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/* line 121, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap .main-carousel {
  width: 20000px;
}

/* line 124, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .main-carousel-wrap .main-carousel .work {
  display: block;
  float: left;
  margin: 0;
  max-width: inherit;
  position: relative;
}

/* line 133, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap {
  left: 150px;
  overflow: hidden;
  position: absolute;
  top: 25%;
  width: 380px;
  z-index: 2;
}

/* line 152, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap.loaded {
  overflow: visible;
}

/* line 155, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap:before,
.work-carousel .carousel-wrap .second-carousel-wrap:after {
  bottom: 0;
  box-shadow: -80px 0 0 rgba(0, 0, 0, 0.05);
  content: "";
  left: 80px;
  height: 35%;
  max-width: 200px;
  max-height: 50px;
  position: absolute;
  -webkit-transform: skew(50deg);
  -ms-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  width: 50%;
  z-index: -1;
}

/* line 173, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap:after {
  box-shadow: 80px 0 0 rgba(0, 0, 0, 0.05);
  left: auto;
  right: 80px;
  -webkit-transform: skew(-50deg);
  -ms-transform: skew(-50deg);
  transform: skew(-50deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/* line 180, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap .second-carousel {
  width: 20000px;
}

/* line 183, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap .second-carousel .image {
  float: left;
}

/* line 187, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap.right {
  left: auto;
  right: 150px;
}

/* line 197, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap.too {
  left: 35px;
  top: 40%;
  width: 240px;
  z-index: 1;
}

/* line 209, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap.too:before,
.work-carousel .carousel-wrap .second-carousel-wrap.too:after {
  max-height: 20px;
}

/* line 213, ../sass/elements/_works.scss */
.work-carousel .carousel-wrap .second-carousel-wrap.too.right {
  left: auto;
  right: 35px;
}

/* line 220, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap {
  margin: 0 auto;
  max-width: 612px;
  position: relative;
}

/* line 237, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .caroufredsel_wrapper {
  margin: 0 auto !important;
}

/* line 240, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .thumbs {
  max-height: 60px;
  overflow: hidden;
}

/* line 244, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .thumbs a {
  border: 0 none !important;
  display: block;
  float: left;
  height: 60px;
  margin: 0 6px;
  opacity: .5;
  width: 90px;
}

/* line 256, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .thumbs a.selected {
  opacity: 1;
}

/* line 261, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .prev,
.work-carousel .thumbs-wrap .next {
  left: -24px;
  position: absolute;
  top: 50%;
}

/* line 270, ../sass/elements/_works.scss */
.work-carousel .thumbs-wrap .next {
  left: auto;
  right: -24px;
}

/* Single Work */
/* line 280, ../sass/elements/_works.scss */
.single-work-opened,
.single-work-opened body {
  overflow: hidden !important;
}

/* line 284, ../sass/elements/_works.scss */
.works-opened {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* line 295, ../sass/elements/_works.scss */
.works-opened>.navigation {
  position: absolute;
  text-align: right;
  width: 100%;
}

/* line 303, ../sass/elements/_works.scss */
.works-opened>.navigation a {
  background: #164194;
  background: rgba(215, 62, 77, 0.75);
  border: 0 none !important;
  color: #fff7cc;
  display: inline-block;
  float: none;
  font-size: 43px;
  height: 70px;
  line-height: 1;
  margin: 0 1px;
  opacity: 1;
  text-align: center;
  text-shadow: none;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  vertical-align: top;
  width: 70px;
}


/* line 325, ../sass/elements/_works.scss */
.works-opened>.navigation a.close {
  margin-right: 0;
}

/* line 328, ../sass/elements/_works.scss */
.works-opened>.navigation a svg {
  height: 24px;
  margin-top: 23px;
  vertical-align: top;
  width: 24px;
}

/* line 339, ../sass/elements/_works.scss */
.works-opened>.navigation a:hover {
  background: #164194;
}

/* line 344, ../sass/elements/_works.scss */
.works-opened .single-work {
  color: #1e2d3a;
  height: 100%;
  padding-top: 85px;
  padding-bottom: 50px;
  width: 100%;
}


/* line 354, ../sass/elements/_works.scss */
.works-opened .single-work .work-container {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* line 359, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .mCSB_container {
  height: 100%;
}

/* line 362, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .mCSB_container>.container {
  display: table;
  height: 100%;
  table-layout: fixed;
}

/* line 372, ../sass/elements/_works.scss */
.works-opened .single-work .work-container.scroll .mCSB_container {
  height: auto;
  margin-right: 0;
}

/* line 377, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .title {
  font-size: 3em;
  margin: 0;
}



/* line 386, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap {
  display: table-row;
  height: 100%;
  vertical-align: middle;
}


/* line 394, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  width: 100%;
}


/* line 403, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images {
  padding-right: 85px;
}

/* line 413, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .main-images-wrap {
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
}

/* line 418, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .main-images-wrap .main-images {
  max-height: 370px;
  margin-bottom: 11px;
  overflow: hidden;
  width: 10000px;
}

/* line 424, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .main-images-wrap .main-images img {
  display: inline-block;
}

/* line 428, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .main-images-wrap .main-images img+img {
  opacity: 0;
}

/* line 434, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .main-images-wrap.loaded .main-images img+img {
  opacity: 1;
}

/* line 440, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap {
  margin: 0 -6px;
  position: relative;
}

/* line 449, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .caroufredsel_wrapper {
  margin: 0 auto !important;
}

/* line 452, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .thumbs {
  max-height: 60px;
  overflow: hidden;
}

/* line 456, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .thumbs a {
  border: 0 none !important;
  display: block;
  float: left;
  height: 60px;
  margin: 0 6px;
  opacity: .5;
  width: 90px;
}

/* line 468, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .thumbs a.selected {
  opacity: 1;
}

/* line 473, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .prev,
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .next {
  left: -24px;
}

/* line 480, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .images .thumbs-wrap .next {
  left: auto;
  right: -24px;
}


/* line 493, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .meta {
  font-size: .875em;
  line-height: 1.6;
  margin: 0 0 43px;
}


/* line 501, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .meta p {
  margin: 0;
}

/* line 504, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .meta span {
  font-weight: 300;
}

/* line 508, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .text {
  line-height: 1.375;
}

/* line 511, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .btn {
  margin-top: 51px;
  padding: 7px 46px;
  -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

/* line 523, ../sass/elements/_works.scss */
.works-opened .single-work .work-container .work-content-wrap .work-content .description .btn:hover {
  background: #164194;
  border-color: #164194;
}

/******************************************************************************
  News
*******************************************************************************/
/* line 5, ../sass/elements/_news.scss */
.news .meta {
  color: #768088;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.6;
  padding-top: 51px;
  text-align: right;
}

/* line 14, ../sass/elements/_news.scss */
.news .news-content .title {
  color: #375099;
  font-family: 'Ubuntu', sans-serif;;
  font-size: 1.5em;
  font-weight: 300;
  margin-bottom: 21px;
  text-transform: none;
}

/* line 22, ../sass/elements/_news.scss */
.news .news-content .title a {
  border: 0 none !important;
  color: inherit;
  font-size: 1em;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 28, ../sass/elements/_news.scss */
.news .news-content .title a:hover {
  opacity: .8;
}

/* line 33, ../sass/elements/_news.scss */
.news .news-content .description {
  font-size: 1em;
  line-height: 1.375;
  margin-bottom: 25px;
}

/* line 38, ../sass/elements/_news.scss */
.news .news-content .more {
  border: 0 none !important;
  color: #375099;
  display: inline-block;
  font-size: 1em;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: top;
}

/* line 49, ../sass/elements/_news.scss */
.news .news-content .more .fa {
  margin-left: 3px;
  vertical-align: text-bottom;
}

/* line 53, ../sass/elements/_news.scss */
.news .news-content .more:hover {
  opacity: .8;
}

/* line 70, ../sass/elements/_news.scss */
.carousel.news-carousel .owl-buttons {
  display: block;
  left: 100%;
  position: absolute;
  top: 57px;
  text-align: center;
  width: 20%;
}

/* line 84, ../sass/elements/_news.scss */
.carousel.news-carousel .owl-buttons .owl-prev,
.carousel.news-carousel .owl-buttons .owl-next {
  color: #aac0d0;
  display: inline-block;
  left: 0;
  margin: 0 10px;
  position: relative;
  right: 0;
  vertical-align: top;
}

/* line 94, ../sass/elements/_news.scss */
.carousel.news-carousel .owl-buttons .owl-prev:after,
.carousel.news-carousel .owl-buttons .owl-next:after {
  background: #aac0d0;
}

/* line 100, ../sass/elements/_news.scss */
.carousel.news-carousel.second-type .meta {
  margin-bottom: 30px;
}

/* line 106, ../sass/elements/_news.scss */
.carousel.news-carousel.second-type .owl-buttons {
  bottom: 3px;
  left: 0;
  padding: 0 15px;
  text-align: right;
  top: auto;
  width: 25%;
}

/******************************************************************************
  Actions
*******************************************************************************/
/* line 4, ../sass/elements/_actions.scss */
.actions {
  margin: 50px 0 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* line 10, ../sass/elements/_actions.scss */
.actions .action {
  bottom: 0;
  left: 50%;
  position: absolute;
}

/* line 15, ../sass/elements/_actions.scss */
.actions .action.action-1 {
  bottom: auto;
  left: auto;
  position: relative;
  z-index: 3;
}

/* line 21, ../sass/elements/_actions.scss */
.actions .action.action-2 {
  margin-left: -375px;
  z-index: 2;
}

/* line 25, ../sass/elements/_actions.scss */
.actions .action.action-3 {
  margin-left: 13px;
  z-index: 2;
}

/* line 29, ../sass/elements/_actions.scss */
.actions .action.action-4 {
  margin-left: -392px;
  z-index: 1;
}

/* line 33, ../sass/elements/_actions.scss */
.actions .action.action-5 {
  margin-left: 146px;
  z-index: 1;
}

/******************************************************************************
 Promo
*******************************************************************************/
/* line 4, ../sass/elements/_promo.scss */
.promo-box {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}


/* line 13, ../sass/elements/_promo.scss */
.promo-box .part {
  display: table;
  table-layout: fixed;
}


/* line 21, ../sass/elements/_promo.scss */
.promo-box .part .part-content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

/* line 78, ../sass/elements/_promo.scss */
.promo-box .col-xs-1>.part,
.promo-box .col-sm-1>.part,
.promo-box .col-md-1>.part,
.promo-box .col-lg-1>.part,
.promo-box .col-xs-2>.part,
.promo-box .col-sm-2>.part,
.promo-box .col-md-2>.part,
.promo-box .col-lg-2>.part,
.promo-box .col-xs-3>.part,
.promo-box .col-sm-3>.part,
.promo-box .col-md-3>.part,
.promo-box .col-lg-3>.part,
.promo-box .col-xs-4>.part,
.promo-box .col-sm-4>.part,
.promo-box .col-md-4>.part,
.promo-box .col-lg-4>.part,
.promo-box .col-xs-5>.part,
.promo-box .col-sm-5>.part,
.promo-box .col-md-5>.part,
.promo-box .col-lg-5>.part,
.promo-box .col-xs-6>.part,
.promo-box .col-sm-6>.part,
.promo-box .col-md-6>.part,
.promo-box .col-lg-6>.part,
.promo-box .col-xs-7>.part,
.promo-box .col-sm-7>.part,
.promo-box .col-md-7>.part,
.promo-box .col-lg-7>.part,
.promo-box .col-xs-8>.part,
.promo-box .col-sm-8>.part,
.promo-box .col-md-8>.part,
.promo-box .col-lg-8>.part,
.promo-box .col-xs-9>.part,
.promo-box .col-sm-9>.part,
.promo-box .col-md-9>.part,
.promo-box .col-lg-9>.part,
.promo-box .col-xs-10>.part,
.promo-box .col-sm-10>.part,
.promo-box .col-md-10>.part,
.promo-box .col-lg-10>.part,
.promo-box .col-xs-11>.part,
.promo-box .col-sm-11>.part,
.promo-box .col-md-11>.part,
.promo-box .col-lg-11>.part,
.promo-box .col-xs-12>.part,
.promo-box .col-sm-12>.part,
.promo-box .col-md-12>.part,
.promo-box .col-lg-12>.part {
  width: 100%;
}

/* line 82, ../sass/elements/_promo.scss */
.promo-box .right {
  float: right;
}

/* line 88, ../sass/elements/_promo.scss */
.promo-box .layers-images {
  position: relative;
}

/* line 91, ../sass/elements/_promo.scss */
.promo-box .layers-images img {
  position: relative;
}

/* line 94, ../sass/elements/_promo.scss */
.promo-box .layers-images .layer {
  display: block;
  position: absolute;
}

/* line 98, ../sass/elements/_promo.scss */
.promo-box .layers-images .layer.bottom-layer {
  bottom: -140px;
  left: 10%;
}

/* line 105, ../sass/elements/_promo.scss */
.promo-box .layers-images .layer.top-layer {
  right: 10%;
  top: -160px;
}

/* line 118, ../sass/elements/_promo.scss */
.promo-box .features-text+img {
  margin-top: 45px;
}

/* line 122, ../sass/elements/_promo.scss */
.promo-box .title {
  margin-bottom: 30px;
}

/* line 125, ../sass/elements/_promo.scss */
.promo-box .descriptions {
  font-size: 1.25em;
  line-height: 1.5;
}

/* line 129, ../sass/elements/_promo.scss */
.promo-box .feature-list {
  margin-bottom: 40px;
}

/* line 133, ../sass/elements/_promo.scss */
.promo-box .feature-list li .fa {
  color: #768088;
  margin-right: 5px;
}

/* line 139, ../sass/elements/_promo.scss */
.promo-box .forget {
  color: #768088;
  margin-top: 32px;
}

/* line 143, ../sass/elements/_promo.scss */
.promo-box .zoom-wrap {
  margin: 45px auto 0;
  max-width: 100%;
  position: relative;
}

/* line 151, ../sass/elements/_promo.scss */
.promo-box .zoom-wrap .zoom-img+div {
  background-color: #fff;
}

/* line 155, ../sass/elements/_promo.scss */
.promo-box .promo-feature {
  text-align: center;
}

/* line 158, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image {
  display: inline-block;
  position: relative;
}

/* line 162, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image img {
  margin-left: -19%;
}

/* line 165, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet {
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  top: 50%;
  width: 30px;
}

/* line 173, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .number {
  color: #fff;
  font-size: .8em;
  font-weight: bold;
  left: 0;
  line-height: 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 1;
}

/* line 189, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line {
  background: #1e1e1e;
  height: 2px;
  margin: 14px 0 0 15px;
  position: absolute;
  width: 200px;
}

/* line 202, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line:before,
.promo-box .promo-feature .image .bullet .line:after {
  background: #164194;
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  margin: -9px 0 0 -10px;
  position: absolute;
  top: 0;
  width: 20px;
}

/* line 220, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line:after {
  background: #fff;
  border: 2px solid #1e1e1e;
  height: 8px;
  left: auto;
  margin: -3px -4px 0 0;
  right: 0;
  width: 8px;
}

/* line 232, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content {
  left: 100%;
  margin: -13px 0 0 10px;
  position: absolute;
  text-align: left;
  width: 140px;
}

/* line 256, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content .close {
  background: #164194;
  background: rgba(215, 62, 77, 0.75);
  border: 0 none !important;
  display: none;
  float: none;
  height: 50px;
  margin: 0 0 40px;
  opacity: 1;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 50px;
}

/* line 271, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content .close:hover {
  background: #164194;
}

/* line 274, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content .close svg {
  height: 20px;
  margin-top: 15px;
  width: 20px;
}

/* line 280, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content .title {
  font-size: 1.5em;
  margin-bottom: 5px;
}

/* line 284, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet .line .bullet-content p {
  font-size: .9em;
  line-height: 1.3;
}

/* line 291, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet.left .line {
  margin-left: 0;
  margin-right: 15px;
  right: 0;
}

/* line 299, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet.left .line:before {
  left: auto;
  margin: -9px -10px 0 0;
  right: 0;
}

/* line 307, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet.left .line:after {
  left: 0;
  margin: -3px 0 0 -4px;
  right: auto;
}

/* line 312, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet.left .line .bullet-content {
  left: auto;
  margin: -13px 10px 0 0;
  right: 100%;
  text-align: right;
}

/* line 322, ../sass/elements/_promo.scss */
.promo-box .promo-feature .image .bullet.open .line .bullet-content {
  display: block;
}

/* line 330, ../sass/elements/_promo.scss */
.inverse .promo-box,
.promo-box.inverse {
  color: #fff;
}

/* line 336, ../sass/elements/_promo.scss */
.inverse .promo-box .feature-list li .fa,
.promo-box.inverse .feature-list li .fa {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

/* line 342, ../sass/elements/_promo.scss */
.inverse .promo-box .forget,
.promo-box.inverse .forget {
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

/* line 353, ../sass/elements/_promo.scss */
.inverse .promo-box .promo-feature .image .bullet .line,
.promo-box.inverse .promo-feature .image .bullet .line {
  background: #fff;
  background: rgba(255, 255, 255, 0.17);
}

/* line 360, ../sass/elements/_promo.scss */
.inverse .promo-box .promo-feature .image .bullet .line:after,
.promo-box.inverse .promo-feature .image .bullet .line:after {
  border-color: #fff;
  opacity: .65;
}

/* line 369, ../sass/elements/_promo.scss */
.one-page .promo-box {
  padding-top: 0;
  padding-bottom: 0;
}

/******************************************************************************
  Contact
*******************************************************************************/
/* Contact Info */
/* line 5, ../sass/elements/_contact.scss */
.contact-info {
  font-weight: 300;
  line-height: 1.375;
  margin-bottom: 27px;
}

/* line 10, ../sass/elements/_contact.scss */
.contact-info:last-child {
  margin-bottom: 0;
}

/* line 13, ../sass/elements/_contact.scss */
.contact-info .icon {
  border-right: 1px solid #dbe0e5;
  float: left;
  font-size: 24px;
  height: 45px;
  line-height: 40px;
  margin: 0 20px 0 0;
  width: 40px;
}

/* line 22, ../sass/elements/_contact.scss */
.contact-info .icon .fa {
  text-align: center;
  width: 25px;
}

/* line 26, ../sass/elements/_contact.scss */
.contact-info .icon .fa-mobile,
.contact-info .icon .fa-map-marker {
  font-size: 30px;
  line-height: 42px;
}

/* line 32, ../sass/elements/_contact.scss */
.contact-info .title {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 3px;
}

/* line 38, ../sass/elements/_contact.scss */
.contact-info address {
  font-weight: 300;
  line-height: 1.375;
  margin-bottom: 0;
}

/* line 43, ../sass/elements/_contact.scss */
.contact-info a {
  font-size: 1em;
}

/* line 46, ../sass/elements/_contact.scss */
.contact-info .text {
  overflow: hidden;
}


/* line 57, ../sass/elements/_contact.scss */
.contact-form .form-title {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 23px;
}

/* line 63, ../sass/elements/_contact.scss */
.contact-form .form-group {
  margin-bottom: 10px;
}

/* line 66, ../sass/elements/_contact.scss */
.contact-form .form-group.comment {
  margin-bottom: 30px;
}

/* line 70, ../sass/elements/_contact.scss */
.contact-form textarea {
  height: 120px;
}

/* line 73, ../sass/elements/_contact.scss */
.contact-form .btn {
  margin: 0 10px 0 0;
}

/* line 76, ../sass/elements/_contact.scss */
.contact-form .form-message {
  display: inline-block;
  margin: 5px 0 0;
  vertical-align: top;
}

/******************************************************************************
  Numbered List
*******************************************************************************/
/* line 4, ../sass/elements/_numbered-list.scss */
.numbered-list {
  margin: 0 0 0 -30px;
}


/* line 10, ../sass/elements/_numbered-list.scss */
.one-page .numbered-list {
  height: 0;
  padding-bottom: 80px;
}

/* line 18, ../sass/elements/_numbered-list.scss */
.one-page .numbered-list.owl-carousel {
  height: auto;
}

/* line 22, ../sass/elements/_numbered-list.scss */
.numbered-list .item {
  padding: 15px 0 15px 30px;
  position: relative;
}

/* line 28, ../sass/elements/_numbered-list.scss */
.numbered-list .item:first-child .item-link:after {
  display: none !important;
}

/* line 33, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link {
  border: 0 none !important;
  color: #fff;
  display: block;
  height: 51px;
  position: relative;
  width: 51px;
}

/* line 41, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link:after {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  bottom: 100%;
  content: "";
  display: block;
  height: 30px;
  left: 25px;
  margin: 0;
  position: absolute;
  width: 0px;
}

/* line 52, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link:before {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background 0.2s ease-in-out, bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, bottom 0.2s ease-in-out, left 0.2s ease-in-out, right 0.2s ease-in-out, top 0.2s ease-in-out;
}

/* line 69, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link .fa {
  color: #000;
  color: rgba(0, 0, 0, 0.5);
  left: 0;
  margin: 18px 0 0 -30px;
  position: absolute;
}

/* line 76, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link .number {
  height: 51px;
  font-size: .875em;
  font-weight: 300;
  line-height: 51px;
  position: relative;
  text-align: center;
}

/* line 84, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link .text {
  color: #000;
  font-size: .875em;
  left: 100%;
  line-height: 1.3;
  margin: 0 0 0 20px;
  position: absolute;
  top: 4px;
  width: 200px;
}

/* line 94, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link .description {
  position: absolute;
  visibility: hidden;
}

/* line 100, ../sass/elements/_numbered-list.scss */
.numbered-list .item .item-link:hover:before,
.numbered-list .item .item-link.hover:before {
  background: #000;
  bottom: -5px;
  content: "";
  display: block;
  left: -5px;
  position: absolute;
  right: -5px;
  top: -5px;
}

/* line 113, ../sass/elements/_numbered-list.scss */
.numbered-list .carousel-item {
  float: left;
}

/* line 116, ../sass/elements/_numbered-list.scss */
.numbered-list .owl-controls {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}

/* line 122, ../sass/elements/_numbered-list.scss */
.numbered-list .owl-controls .owl-pagination {
  height: 13px;
  margin: 0 0 0 4px;
  padding: 0;
  text-align: left;
  vertical-align: top;
  width: 100%;
}

/* line 131, ../sass/elements/_numbered-list.scss */
.numbered-list .owl-controls .owl-buttons .owl-prev,
.numbered-list .owl-controls .owl-buttons .owl-next {
  display: none !important;
}

/* Numbered List Description */
/* line 139, ../sass/elements/_numbered-list.scss */
.numbered-list-description {
  background: #f2f2f2;
  border: 0 none;
  border-radius: 50%;
  font-size: .875em;
  height: 380px;
  left: 50%;
  margin: -190px 0 0 -190px;
  padding: 66px 55px 66px 65px;
  position: absolute;
  text-align: left;
  top: 50%;
  -webkit-transition: visibility 0.2s ease-in-out;
  transition: visibility 0.2s ease-in-out;
  visibility: hidden;
  width: 380px;
}

/* line 168, ../sass/elements/_numbered-list.scss */
.numbered-list-description .tab-pane {
  font-size: 1em;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
}

/* line 174, ../sass/elements/_numbered-list.scss */
.numbered-list-description .tab-pane .mCustomScrollBox {
  padding-right: 10px;
}

/* line 177, ../sass/elements/_numbered-list.scss */
.numbered-list-description .tab-pane .mCustomScrollBox .mCS_y_hidden {
  display: table;
  height: 100%;
}

/* line 184, ../sass/elements/_numbered-list.scss */
.numbered-list-description .tab-pane .mCustomScrollBox .mCS_y_hidden .tab-pane-wrap {
  display: table-cell;
  vertical-align: middle;
}

/* line 194, ../sass/elements/_numbered-list.scss */
.numbered-list-description .close {
  border: 0 none;
  color: #768088;
  display: block;
  fill: #768088;
  font-size: 1em;
  height: 15px;
  left: 50%;
  line-height: 1;
  margin-left: -7.5px;
  opacity: 1;
  position: absolute;
  top: 20px;
  text-shadow: none;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  visibility: hidden;
  width: 15px;
}

/* line 212, ../sass/elements/_numbered-list.scss */
.numbered-list-description .close:hover {
  fill: #164194;
}

/* line 216, ../sass/elements/_numbered-list.scss */
.numbered-list-description.open {
  visibility: visible;
}

/* line 219, ../sass/elements/_numbered-list.scss */
.numbered-list-description.open .tab-pane.active,
.numbered-list-description.open .close {
  visibility: visible;
}

/* line 224, ../sass/elements/_numbered-list.scss */
.numbered-list-description.inverse {
  background: #fff;
}

/******************************************************************************
  Countdown
*******************************************************************************/
/* line 4, ../sass/elements/_countdown.scss */
.countdown {
  width: 100%;
}

/* line 7, ../sass/elements/_countdown.scss */
.countdown .time_circles {
  height: 100%;
  position: relative;
  width: 100%;
}

/* line 12, ../sass/elements/_countdown.scss */
.countdown .time_circles canvas {
  max-width: 100%;
  position: relative;
  vertical-align: top;
}

/* line 17, ../sass/elements/_countdown.scss */
.countdown .time_circles>div {
  position: absolute;
  text-align: center;
  width: 25% !important;
}

/* line 22, ../sass/elements/_countdown.scss */
.countdown .time_circles>div.textDiv_Hours {
  left: 25% !important;
}

/* line 25, ../sass/elements/_countdown.scss */
.countdown .time_circles>div.textDiv_Minutes {
  left: 50% !important;
}

/* line 28, ../sass/elements/_countdown.scss */
.countdown .time_circles>div.textDiv_Seconds {
  left: 75% !important;
}

/* line 31, ../sass/elements/_countdown.scss */
.countdown .time_circles>div h4 {
  color: inherit;
}

/* line 37, ../sass/elements/_countdown.scss */
.countdown .time_circles>div span {
  line-height: .7 !important;
  vertical-align: top;
}

/******************************************************************************
  Sandwich Animation
*******************************************************************************/
/* line 4, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation {
  height: 750px;
  margin: -375px 80px 0 0;
  position: absolute;
  right: 100%;
  top: 50%;
  width: 350px;
}


/* line 15, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer {
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: margin 0.5s ease-in-out;
  transition: margin 0.5s ease-in-out;
}

/* line 23, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-1 {
  margin-top: -130px;
}

/* line 26, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-2 {
  margin-top: -70px;
}

/* line 29, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-3 {
  margin-top: -70px;
}

/* line 32, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-4 {
  margin-top: 6px;
}

/* line 35, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-5 {
  margin-top: -30px;
}

/* line 38, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation .layer.layer-6 {
  margin-top: -10px;
}

/* line 42, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right {
  left: 100%;
  margin: -375px 0 0 80px;
  right: 100%;
}

/* line 47, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-1 {
  margin-top: -105px;
}

/* line 50, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-2 {
  margin-top: -75px;
}

/* line 53, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-3 {
  margin-top: -65px;
}

/* line 56, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-4 {
  margin-top: -55px;
}

/* line 59, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-5 {
  margin-top: -25px;
}

/* line 62, ../sass/elements/_sandwich-animation.scss */
.sandwich-animation.right .layer-6 {
  margin-top: -15px;
}

/******************************************************************************
  Blog
*******************************************************************************/
/* line 5, ../sass/_blog.scss */
.post .entry-title {
  font-size: 2.25em;
  margin-bottom: 1px;
}

/* line 9, ../sass/_blog.scss */
.post .entry-title a {
  border: 0 none;
  font-size: 1em;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 14, ../sass/_blog.scss */
.post .entry-title a:hover {
  border: 0 none;
  opacity: .8;
}

/* line 20, ../sass/_blog.scss */
.post .entry-meta {
  color: #a9bbc9;
  font-size: .875em;
  margin-bottom: 25px;
}

/* line 25, ../sass/_blog.scss */
.post .entry-meta a {
  border: 0 none !important;
  color: #768088;
  font-size: 1em;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 31, ../sass/_blog.scss */
.post .entry-meta a:hover {
  opacity: .8;
}

/* line 36, ../sass/_blog.scss */
.post .entry-preview {
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}

/* line 41, ../sass/_blog.scss */
.post .entry-preview .entry-gallery {
  overflow: hidden;
  width: 10000px;
}

/* line 45, ../sass/_blog.scss */
.post .entry-preview .prev,
.post .entry-preview .next {
  color: #aac0d0;
  left: -30px;
  top: 50%;
}

/* line 58, ../sass/_blog.scss */
body .post .entry-preview .prev:hover,
body .post .entry-preview .next:hover {
  color: #aac0d0;
}

/* line 61, ../sass/_blog.scss */
.post .entry-preview .prev .fa,
.post .entry-preview .next .fa {
  vertical-align: top;
}

/* line 67, ../sass/_blog.scss */
.post .entry-preview .prev:after,
.post .entry-preview .next:after {
  background: #aac0d0;
}

/* line 74, ../sass/_blog.scss */
.post .entry-preview .next {
  left: auto;
  right: -30px;
}

/* line 89, ../sass/_blog.scss */
.post .entry-content {
  color: #777;
  line-height: 1.875;
  margin-bottom: 34px;
}

/* line 94, ../sass/_blog.scss */
.post .entry-content blockquote {
  margin-bottom: 40px;
}

/* line 99, ../sass/_blog.scss */
.post .entry-more .btn {
  padding-left: 16px;
  padding-right: 16px;
}

/* line 104, ../sass/_blog.scss */
.post:first-child {
  margin-top: -11px;
}

/* line 107, ../sass/_blog.scss */
.post+.post {
  margin-top: 69px;
}

/* line 113, ../sass/_blog.scss */
.col-md-7.content .post .entry-preview {
  margin-left: auto;
  margin-right: auto;
  max-width: 670px;
}

/* Single Post */
/* line 122, ../sass/_blog.scss */
.single-post .post {
  margin-top: -15px;
  margin-bottom: 57px;
}

/* line 126, ../sass/_blog.scss */
.single-post .post .entry-title {
  font-size: 3em;
  margin-bottom: 7px;
}

/* line 130, ../sass/_blog.scss */
.single-post .post .entry-meta {
  margin-bottom: 34px;
}

/* line 133, ../sass/_blog.scss */
.single-post .post .entry-preview {
  margin-bottom: 43px;
}

/* line 136, ../sass/_blog.scss */
.single-post .post .entry-content {
  margin-bottom: 36px;
}

/* line 139, ../sass/_blog.scss */
.single-post .post .shares {
  margin-bottom: 36px;
}

/* line 142, ../sass/_blog.scss */
.single-post .post .shares a {
  background: #aac0d0;
  border: 0 none !important;
  border-radius: 2px;
  display: block;
  float: left;
  height: 30px;
  margin: 8px 1px 0;
  position: relative;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: 30px;
}

/* line 154, ../sass/_blog.scss */
.single-post .post .shares a:hover {
  background: #768088;
}

/* line 158, ../sass/_blog.scss */
.single-post .post .shares a:hover label .getshare-counter {
  opacity: 1;
  visibility: visible;
}

/* line 164, ../sass/_blog.scss */
.single-post .post .shares a input {
  display: none;
}

/* line 167, ../sass/_blog.scss */
.single-post .post .shares a label {
  cursor: pointer;
  display: block;
  height: 30px;
  margin: 0;
  width: 30px;
}

/* line 174, ../sass/_blog.scss */
.single-post .post .shares a label .getshare-text {
  color: #fff;
  display: block;
  font-size: 16px;
  text-align: center;
}

/* line 180, ../sass/_blog.scss */
.single-post .post .shares a label .getshare-counter {
  background: #e4ebf1;
  background: rgba(170, 192, 208, 0.3);
  border-radius: 2px;
  bottom: 42px;
  color: #768088;
  font-family: 'Ubuntu', sans-serif;;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  left: -4px;
  opacity: 0;
  padding: 5px 3px 6px;
  position: absolute;
  text-align: center;
  -webkit-transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
  transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
  right: -4px;
  visibility: hidden;
}

/* line 201, ../sass/_blog.scss */
.single-post .post .shares a label .getshare-counter:before {
  border: 8px solid transparent;
  border-top-color: #e4ebf1;
  border-top-color: rgba(170, 192, 208, 0.3);
  border-left-width: 6px;
  border-right-width: 6px;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -6px;
  position: absolute;
  top: 100%;
  width: 0;
}

/* Comments */
/* line 224, ../sass/_blog.scss */
#comments .title {
  font-size: 1.5em;
  margin-bottom: 45px;
}

/* line 228, ../sass/_blog.scss */
#comments .title small {
  color: #768088;
  font-family: 'Ubuntu', sans-serif;;
  font-size: .66em;
  font-weight: 300;
}

/* line 235, ../sass/_blog.scss */
#comments .commentlist,
#comments .commentlist ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 241, ../sass/_blog.scss */
#comments .commentlist {
  margin-bottom: 92px;
}

/* line 244, ../sass/_blog.scss */
#comments .commentlist .comment {
  margin-bottom: 46px;
}

/* line 247, ../sass/_blog.scss */
#comments .commentlist .comment:last-child {
  margin-bottom: 0;
}

/* line 250, ../sass/_blog.scss */
#comments .commentlist .comment ol {
  margin: 46px 0 0 100px;
}

/* line 256, ../sass/_blog.scss */
#comments .commentlist .comment .comment-avatar {
  float: left;
  height: 70px;
  margin: 2px 30px 0 0;
  width: 70px;
}

/* line 265, ../sass/_blog.scss */
#comments .commentlist .comment .comment-avatar img {
  border-radius: 50%;
}

/* line 269, ../sass/_blog.scss */
#comments .commentlist .comment .comment-meta {
  color: #768088;
  font-size: .8125em;
  line-height: 1;
  margin-bottom: 12px;
  overflow: hidden;
}

/* line 276, ../sass/_blog.scss */
#comments .commentlist .comment .comment-meta a {
  font-size: 1em;
  font-weight: 300;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

/* line 281, ../sass/_blog.scss */
#comments .commentlist .comment .comment-meta a:hover {
  opacity: .8;
}

/* line 285, ../sass/_blog.scss */
#comments .commentlist .comment .comment-meta .comment-reply-link {
  margin-left: 18px;
}

/* line 289, ../sass/_blog.scss */
#comments .commentlist .comment p {
  overflow: hidden;
}

/* line 295, ../sass/_blog.scss */
#comments #respond .form-group {
  margin-bottom: 9px;
}

/* line 298, ../sass/_blog.scss */
#comments #respond .name {
  float: left;
  padding-right: 4px;
  width: 50%;
}

/* line 308, ../sass/_blog.scss */
#comments #respond .email {
  float: left;
  padding-left: 4px;
  width: 50%;
}

/* line 318, ../sass/_blog.scss */
#comments #respond .comment {
  margin-bottom: 19px;
}

/* line 321, ../sass/_blog.scss */
#comments #respond .comment textarea {
  height: 90px;
}

/******************************************************************************
  Footer
*******************************************************************************/
/* line 4, ../sass/_footer.scss */
.site-footer {
  background: #1d3e7d;
  color: #ffffff;
  font-size: .75em;
  padding: 24px 0;
  text-align: center;
  width: 100%;
}

/* line 18, ../sass/_footer.scss */
.site-footer .left-align {
  text-align: left;
}

/* line 24, ../sass/_footer.scss */
.site-footer .right-align {
  text-align: right;
}

/* line 31, ../sass/_footer.scss */
.site-footer .copyright {
  font-style: italic;
}

/* line 35, ../sass/_footer.scss */
.site-footer .social a {
  border: 0 none;
  color: #768088;
  font-size: .85em;
  margin: 0 14px;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 42, ../sass/_footer.scss */
.site-footer .social a:hover {
  color: #fff;
}

/* line 47, ../sass/_footer.scss */
.site-footer .scroll-to-top,
.site-footer .scroll-to-top:visited {
  border: 0 none;
  color: #768088;
  display: inline-block;
  font-size: 1.9em;
  height: 22px;
  line-height: 22px;
  vertical-align: top;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 58, ../sass/_footer.scss */
.site-footer .scroll-to-top .fa,
.site-footer .scroll-to-top:visited .fa {
  vertical-align: top;
}

/* line 62, ../sass/_footer.scss */
.site-footer .scroll-to-top:hover,
.site-footer .scroll-to-top:visited:hover {
  color: #fff;
}

/* line 66, ../sass/_footer.scss */
.site-footer.footer-white {
  background: #fff;
  color: #000;
}

/* line 71, ../sass/_footer.scss */
.site-footer.footer-white .social a {
  color: #000;
}

/* line 74, ../sass/_footer.scss */
.site-footer.footer-white .social a:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* line 79, ../sass/_footer.scss */
.site-footer.footer-white .scroll-to-top,
.site-footer.footer-white .scroll-to-top:visited {
  color: #000;
}

/* line 83, ../sass/_footer.scss */
.site-footer.footer-white .scroll-to-top:hover,
.site-footer.footer-white .scroll-to-top:visited:hover {
  color: rgba(0, 0, 0, 0.8);
}

/* line 88, ../sass/_footer.scss */
.site-footer.footer-gray {
  background: #d5d5d5;
  color: #939393;
}

/* line 93, ../sass/_footer.scss */
.site-footer.footer-gray .social a {
  color: #939393;
}

/* line 96, ../sass/_footer.scss */
.site-footer.footer-gray .social a:hover {
  color: rgba(147, 147, 147, 0.8);
}

/* line 101, ../sass/_footer.scss */
.site-footer.footer-gray .scroll-to-top,
.site-footer.footer-gray .scroll-to-top:visited {
  color: #939393;
}

/* line 105, ../sass/_footer.scss */
.site-footer.footer-gray .scroll-to-top:hover,
.site-footer.footer-gray .scroll-to-top:visited:hover {
  color: rgba(147, 147, 147, 0.8);
}

/* line 110, ../sass/_footer.scss */
.site-footer.footer-black {
  background: #000;
  color: #fff;
}

/* line 115, ../sass/_footer.scss */
.site-footer.footer-black .social a {
  color: #fff;
}

/* line 118, ../sass/_footer.scss */
.site-footer.footer-black .social a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 123, ../sass/_footer.scss */
.site-footer.footer-black .scroll-to-top,
.site-footer.footer-black .scroll-to-top:visited {
  color: #fff;
}

/* line 127, ../sass/_footer.scss */
.site-footer.footer-black .scroll-to-top:hover,
.site-footer.footer-black .scroll-to-top:visited:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* line 132, ../sass/_footer.scss */
.site-footer.footer-brown {
  background: #504942;
  color: #fff7cc;
}

/* line 137, ../sass/_footer.scss */
.site-footer.footer-brown .social a {
  color: #fff7cc;
}

/* line 140, ../sass/_footer.scss */
.site-footer.footer-brown .social a:hover {
  color: rgba(255, 247, 204, 0.8);
}

/* line 145, ../sass/_footer.scss */
.site-footer.footer-brown .scroll-to-top,
.site-footer.footer-brown .scroll-to-top:visited {
  color: #fff7cc;
}

/* line 149, ../sass/_footer.scss */
.site-footer.footer-brown .scroll-to-top:hover,
.site-footer.footer-brown .scroll-to-top:visited:hover {
  color: rgba(255, 247, 204, 0.8);
}

/******************************************************************************
  Revolution Slider
*******************************************************************************/
/* line 4, ../sass/_other.scss */
.tp-banner-container,
.tp-banner,
.tp-banner>ul {
  position: relative;
}

/******************************************************************************
  Info Box
*******************************************************************************/
/* line 13, ../sass/_other.scss */
.info-box {
  background: #1e2d3a;
  border-bottom: 1px solid #858e95;
  padding: 94px 15px 97px;
  text-align: center;
}

/* line 19, ../sass/_other.scss */
.info-box .title {
  color: #ffffff;
  font-size: 2.25em;
  margin-bottom: 20px;
}

/* line 24, ../sass/_other.scss */
.info-box .description {
  color: #768088;
  font-size: 1.25em;
  line-height: 1.5;
  margin: 0 0 37px;
}

/* line 30, ../sass/_other.scss */
.info-box .social {
  line-height: 1;
}

/* line 33, ../sass/_other.scss */
.info-box .social a {
  border: 0 none;
  color: #768088;
  font-size: .65em;
  margin: 0 14px;
  vertical-align: top;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

/* line 41, ../sass/_other.scss */
.info-box .social a .fa {
  vertical-align: text-top;
}

/* line 44, ../sass/_other.scss */
.info-box .social a:hover {
  color: #fff;
}

/* line 49, ../sass/_other.scss */
.info-box.navigation {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* line 53, ../sass/_other.scss */
.info-box.navigation .pager {
  margin: 0;
}

/* line 56, ../sass/_other.scss */
.info-box.navigation .pager li {
  display: inline-block;
  margin: 0 2px;
}

/* line 60, ../sass/_other.scss */
.info-box.navigation .pager li a {
  background: #404c57;
  background: rgba(255, 255, 255, 0.15);
  border: 0 none !important;
  border-radius: 2px;
  color: #768088;
  height: auto;
  font-family: Calibri, Arial, sans-serif;
  font-size: .875em;
  font-weight: 300;
  margin: 0;
  padding: 3px 15px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  width: auto;
}

/* line 75, ../sass/_other.scss */
.info-box.navigation .pager li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* line 78, ../sass/_other.scss */
.info-box.navigation .pager li a .fa {
  font-size: 1.2em;
  line-height: .9;
  vertical-align: text-bottom;
}

/* line 83, ../sass/_other.scss */
.info-box.navigation .pager li a.back {
  padding-left: 9px;
  padding-right: 9px;
}

/* line 87, ../sass/_other.scss */
.info-box.navigation .pager li a.back .fa {
  font-size: 1em;
  line-height: 1;
  vertical-align: text-bottom;
}

/* line 99, ../sass/_other.scss */
.bottom-padding {
  margin-bottom: 100px;
}

/* line 102, ../sass/_other.scss */
.padding-box {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* line 106, ../sass/_other.scss */
.bg-main {
  background-color: #696d6f;
}

/* line 110, ../sass/_other.scss
[data-appear-animation] {
  visibility: hidden;
}

line 116, ../sass/_other.scss 
.animated[data-appear-animation] {
  visibility: visible;
}*/

/* line 119, ../sass/_other.scss */
.mCSB_scrollTools {
  opacity: 1;
  width: 10px;
}

/* line 123, ../sass/_other.scss */
.section .section-content.mCustomScrollbar .mCustomScrollBox>.mCSB_scrollTools {
  z-index: 99;
}

/* line 127, ../sass/_other.scss */
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #dbe0e5;
  width: 3px;
}

/* line 134, ../sass/_other.scss */
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: #164194;
}

/* line 139, ../sass/_other.scss */
.mCSB_scrollTools .mCSB_draggerRail {
  background: #dbe0e5;
  width: 1px;
}

/* line 144, ../sass/_other.scss */
.btn-download {
  background: #fff;
  border: 0 none !important;
  border-radius: 50%;
  font-size: 1.8em;
  height: 300px;
  overflow: visible;
  padding: 110px 30px;
  text-decoration: none;
  width: 300px;
}

/* line 155, ../sass/_other.scss */
.btn-download:before {
  border-radius: 500px;
  border: 0 none !important;
  bottom: 0;
  display: block;
  height: auto;
  left: 0 !important;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-animation: pulse-inverse 2s ease-in-out infinite;
  animation: pulse-inverse 2s ease-in-out infinite;
  width: auto;
  z-index: 0;
}

/* Animation Box */
/* line 174, ../sass/_other.scss */
.animate-layer .layer {
  position: absolute;
  width: 50%;
}

/* line 178, ../sass/_other.scss */
.animate-layer .layer.left-top {
  left: 0;
  top: 0;
}

/* line 182, ../sass/_other.scss */
.animate-layer .layer.right-top {
  right: 0;
  top: 0;
}

/* line 186, ../sass/_other.scss */
.animate-layer .layer.left-bottom {
  bottom: 0;
  left: 0;
}

/* line 190, ../sass/_other.scss */
.animate-layer .layer.right-bottom {
  bottom: 0;
  right: 0;
}

/* line 197, ../sass/_other.scss */
.section-header .animate-layer .layer.left-top,
.section-header .animate-layer .layer.right-top {
  top: -70px;
}

/* line 205, ../sass/_other.scss */
.section-footer .animate-layer .layer.left-bottom,
.section-footer .animate-layer .layer.right-bottom {
  bottom: -70px;
}

/* Page 404 */
/* line 216, ../sass/_other.scss */
.page-404 .main .section .section-title {
  line-height: 1;
  font-size: 16em;
  margin-bottom: 0;
}

/* line 224, ../sass/_other.scss */
.page-404 .main .section h3 {
  color: #fff;
  margin-bottom: 40px;
}

/* line 236, ../sass/_other.scss */
.page-404 #fp-nav {
  display: none !important;
}

/* Under Construction Page */
/* line 241, ../sass/_other.scss */
.under-construction {
  margin-bottom: 40px;
  margin-top: 30px;
  position: relative;
}

/* line 246, ../sass/_other.scss */
.under-construction .form-control {
  background: rgba(255, 255, 255, 0.2);
  padding-right: 130px;
}

/* line 250, ../sass/_other.scss */
.under-construction .btn {
  border-radius: 0 2px 2px 0;
  padding-top: 7px;
  padding-bottom: 7px;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 260, ../sass/_other.scss */
.under-construction .success {
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  text-align: center;
}