/*
Theme Name: SPL Companies MMM
Theme URI: http://
Description: A WordPress Theme created for <a href="http://www.splcompanies.com/">SPLCompanies.com</a>.
Author: Melinda McCaw Media
Author URI: https://www.melindamccawmedia.com
Version: 1.0
*/
/* line 5, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*Reduce browser inconsistencies with compass' pre-installed reset styles*/
/*Include cross-browser mix-ins for CSS3 modules (i.e. animations, flexbox, transition, transform, etc.)*/
/*----Generate sprites & add classes for sprites----*/
/* line 80, sprites/*.png */
.sprites-sprite, .sprites-accent-symbol, .sprites-link, .sprites-map, .sprites-phone, .sprites-site-by-elevation {
  background-image: url('images/sprites-s29ee5539c7.png');
  background-repeat: no-repeat;
}

/* line 84, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/sprites/_base.scss */
.sprites-accent-symbol {
  background-position: -84px 0;
  height: 83px;
  width: 83px;
}

/* line 84, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/sprites/_base.scss */
.sprites-link {
  background-position: 0 0;
  height: 24px;
  width: 24px;
}

/* line 84, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/sprites/_base.scss */
.sprites-map {
  background-position: -24px 0;
  height: 30px;
  width: 30px;
}

/* line 84, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/sprites/_base.scss */
.sprites-phone {
  background-position: -54px 0;
  height: 30px;
  width: 30px;
}

/* line 84, ../../../../../../usr/local/rvm/gems/ruby-2.4.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/sprites/_base.scss */
.sprites-site-by-elevation {
  background-position: 0 -83px;
  height: 33px;
  width: 214px;
}

/*---Flex Mixin styles----*/
/*---Html Builder Classes---*/
/*
Builds a flex contianer with a defualt direction of row
Use flex-column for flex column direction
*/
/* line 5, sass/_builders.scss */
.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*
Changes flexbox direction to column
The default set up is row
*/
/* line 14, sass/_builders.scss */
.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*
Changes flexbox wrapping from default wrap to nowrap
*/
/* line 20, sass/_builders.scss */
.flex-no-wrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*
Sets the ratio of spaces a child of flexbox will use
*/
/* line 26, sass/_builders.scss */
.flex-1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 29, sass/_builders.scss */
.flex-2 {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

/* line 32, sass/_builders.scss */
.flex-3 {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

/*
Flexbox spacing for childeren
*/
/* line 38, sass/_builders.scss */
.flex-space-between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

/*
Center items perpendicular to flex-direction
*/
/* line 44, sass/_builders.scss */
.flex-perp-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

/*
Center items in within flex-direction
*/
/* line 50, sass/_builders.scss */
.flex-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

/*
Push item or items to end of flexbox field
*/
/* line 56, sass/_builders.scss */
.flex-end {
  -webkit-justify-content: end;
  -moz-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -ms-flex-pack: end;
}

/*
Make item display block
*/
/* line 62, sass/_builders.scss */
.block {
  display: block;
}

/*
Make item inline block
*/
/* line 68, sass/_builders.scss */
.inline-block {
  display: inline-block;
}

/*
Item padding
*/
/* line 74, sass/_builders.scss */
.pad-6 {
  padding: 0 6%;
  width: 100%;
}

/* line 78, sass/_builders.scss */
.pad-9 {
  padding: 0 9%;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 78, sass/_builders.scss */
  .pad-9 {
    padding: 10px;
  }
}

/* line 86, sass/_builders.scss */
.pad-12 {
  padding: 0 12%;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 86, sass/_builders.scss */
  .pad-12 {
    padding: 10px;
  }
}

/* line 94, sass/_builders.scss */
.pad-15 {
  padding: 0 15%;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 94, sass/_builders.scss */
  .pad-15 {
    padding: 10px;
  }
}

/*
Bootstrap replacement
*/
/* line 105, sass/_builders.scss */
.container {
  width: 1150px;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 1199px) {
  /* line 105, sass/_builders.scss */
  .container {
    width: 942px;
  }
}
@media (max-width: 991px) {
  /* line 105, sass/_builders.scss */
  .container {
    width: 718px;
  }
}
@media (max-width: 767px) {
  /* line 105, sass/_builders.scss */
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  /* line 116, sass/_builders.scss */
  .hidden-xs {
    display: none;
  }
}

@media (max-width: 767px) {
  /* line 119, sass/_builders.scss */
  .hidden-sm {
    display: none;
  }
}

@media (max-width: 991px) {
  /* line 122, sass/_builders.scss */
  .hidden-md {
    display: none;
  }
}

/* line 125, sass/_builders.scss */
.visible-xs {
  display: none;
}
@media (max-width: 480px) {
  /* line 125, sass/_builders.scss */
  .visible-xs {
    display: block;
  }
}

/* line 129, sass/_builders.scss */
.visible-sm {
  display: none;
}
@media (max-width: 767px) {
  /* line 129, sass/_builders.scss */
  .visible-sm {
    display: block;
  }
}

/*----Default Theme styles----*/
/**** Custom Sass Variables ****/
/**** Custom Sass Mixins ****/
/**** Custom Classes ******/
/* line 41, sass/_globals.scss */
.wow {
  visibility: hidden;
}

/* line 42, sass/_globals.scss */
.foot-social ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

/*****Blog*******/
/* line 45, sass/_globals.scss */
p.written, .cat-tag-links {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  float: left;
  margin-right: 10px;
  border-right: 1px solid #d3d3d3;
  padding-right: 10px;
}

/* line 54, sass/_globals.scss */
.cat-tag-links {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

/* line 59, sass/_globals.scss */
body#blog.single .divider {
  margin: 18px 0;
}

/***** Default theme globals from old style.css****/
/* line 62, sass/_globals.scss */
body {
  background-color: #fff;
  height: 100%;
}

/* line 66, sass/_globals.scss */
#content ul li {
  font-size: 17px;
  line-height: 28px;
}

/* line 70, sass/_globals.scss */
html {
  height: 100%;
}

/* line 73, sass/_globals.scss */
#wrapper {
  min-height: 100%;
  position: relative;
}

/* line 77, sass/_globals.scss */
.clearboth, .clearboth-special {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 100%;
}

/* line 85, sass/_globals.scss */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 91, sass/_globals.scss */
.clickable:hover, a:hover {
  cursor: pointer;
}

/* line 94, sass/_globals.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 99, sass/_globals.scss */
ol {
  list-style: decimal;
  margin: 0 0 18px 1.5em;
}

/* line 104, sass/_globals.scss */
ol li {
  list-style: decimal;
  margin: 10px 0px 10px 15px;
}

/* line 109, sass/_globals.scss */
ol ol {
  list-style: upper-alpha;
}

/* line 112, sass/_globals.scss */
ol ol ol {
  list-style: lower-roman;
}

/* line 115, sass/_globals.scss */
ol ol ol ol {
  list-style: lower-alpha;
}

/* line 118, sass/_globals.scss */
ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

/* line 124, sass/_globals.scss */
dl {
  margin: 0 0 24px 0;
}

/* line 127, sass/_globals.scss */
dt {
  font-weight: bold;
}

/* line 130, sass/_globals.scss */
dd {
  margin-bottom: 18px;
}

/* line 133, sass/_globals.scss */
strong {
  font-weight: bold;
}

/*Formidable Placeholder Override*****/
/*************************************/
/* line 138, sass/_globals.scss */
::-webkit-input-placeholder {
  color: red;
  opacity: 1 !important;
}

/* line 143, sass/_globals.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: red;
  opacity: 1 !important;
}

/* line 148, sass/_globals.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: red;
  opacity: 1 !important;
}

/* line 153, sass/_globals.scss */
:-ms-input-placeholder {
  color: red;
}

/*Theme Globals****************************************************************/
/******************************************************************************/
/* line 161, sass/_globals.scss */
.mmm .mobile-nav {
  display: none;
}

/* line 164, sass/_globals.scss */
.mmm .frm_ajax_loading {
  display: none;
}

/* line 167, sass/_globals.scss */
.mmm .frm_error {
  display: none;
}

/************Pagination of Posts**************/
/* line 172, sass/_globals.scss */
ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 177, sass/_globals.scss */
.page-numbers:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 185, sass/_globals.scss */
ul.page-numbers li {
  display: block;
  float: left;
  margin: 0 4px 4px 0;
  text-align: center;
}

/* line 191, sass/_globals.scss */
.page-numbers a,
.page-numbers span {
  line-height: 1.6em;
  display: block;
  padding: 0 6px;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #ddd;
  color: #888;
}

/* line 205, sass/_globals.scss */
.page-numbers a span {
  padding: 0;
}

/* line 206, sass/_globals.scss */
.page-numbers a:hover,
.page-numbers.current,
.page-numbers.current:hover {
  color: #000;
  background: #f7f7f7;
  text-decoration: none;
}

/* line 213, sass/_globals.scss */
.page-numbers:hover {
  text-decoration: none;
}

/********** Wordpress Content Images **********/
/* line 216, sass/_globals.scss */
img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 222, sass/_globals.scss */
img.alignright {
  margin: 6px 0 2px 9px;
  display: inline;
}

/* line 227, sass/_globals.scss */
img.alignleft {
  margin: 6px 15px 2px 0;
  display: inline;
}

/* line 232, sass/_globals.scss */
.alignright {
  float: right;
}

/* line 235, sass/_globals.scss */
.alignleft {
  float: left;
}

/* line 238, sass/_globals.scss */
#forms .frm_forms img {
  box-shadow: 0px 0px 5px #000;
  -moz-box-shadow: 0px 0px 5px #000;
  -webkit-box-shadow: 0px 0px 5px #000;
}

/* line 243, sass/_globals.scss */
img.shadow {
  box-shadow: 0px 0px 6px 3px #333;
  -moz-box-shadow: 0px 0px 6px 3px #333;
  -webkit-box-shadow: 0px 0px 6px 3px #333;
}

/* line 248, sass/_globals.scss */
img.bathplanet {
  padding: 5px;
  border: 1px solid #000;
}

/************ Image Captions ***************/
/* line 254, sass/_globals.scss */
.aligncenter, div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 259, sass/_globals.scss */
.wp-caption {
  max-width: 100% !important;
  height: auto !important;
  border: 1px solid #ddd;
  text-align: center;
  background-color: #f3f3f3;
  padding-top: 4px;
  margin: 10px;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 273, sass/_globals.scss */
.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

/* line 279, sass/_globals.scss */
.wp-caption p.wp-caption-text {
  font-size: 1em;
  line-height: 17px;
  padding: 0 4px 5px;
  margin: 0;
}

/************** Responsive Video ******************/
/* line 286, sass/_globals.scss */
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

/* line 292, sass/_globals.scss */
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/************* Special Content Styles ****************/
/******************************************************************************/
/* line 304, sass/_globals.scss */
.divider {
  margin: 30px 0;
  width: 100%;
  border-bottom: 1px dotted #E3E3E3;
}

/************* 404 Styles ****************/
/******************************************************************************/
/* line 311, sass/_globals.scss */
.pnf-illust-wrap {
  padding-right: 30px;
  border-right: 1px solid #d8d8d8;
}

/* line 315, sass/_globals.scss */
.pnf-illustration {
  height: 500px;
  width: 100%;
  background-image: url(images/404.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* line 323, sass/_globals.scss */
.wow {
  visibility: hidden;
}

/* line 326, sass/_globals.scss */
.pnf-text {
  height: 478px;
}

/* line 329, sass/_globals.scss */
.pnf-middle {
  text-align: center;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 338, sass/_globals.scss */
.pnf-exclaim {
  font-size: 60px;
}

/* line 341, sass/_globals.scss */
p.pnf-explain {
  font-size: 20px;
}

/* line 344, sass/_globals.scss */
.pnf-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #1099cf;
  line-height: 40px;
  width: 200px;
  border-radius: 4px;
  display: block;
  margin: 10px auto;
  text-transform: uppercase;
  font-size: 17px;
}

/* line 356, sass/_globals.scss */
.pnf-or {
  color: #b9b9b9;
  text-transform: uppercase;
  font-size: 30px;
  font-style: italic;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  width: 85px;
  margin: 15px auto;
  line-height: 35px;
}

/* line 367, sass/_globals.scss */
.pnf-middle #search-top {
  margin-top: 10px;
  text-align: right;
  width: 80%;
  margin: 10px auto;
}

/* line 375, sass/_globals.scss */
input#top-searchsubmit {
  background-color: #99CA3C;
  border: 0;
  border-radius: 0px 4px 4px 0px;
  text-indent: -99999px;
  width: 37px;
  height: 35px;
  padding: 0px;
  background-repeat: no-repeat;
  top: -2px;
  position: relative;
}

/* line 387, sass/_globals.scss */
#search-top input[type="text"] {
  height: 35px;
  margin: 0;
  display: inline-block;
  margin-right: -5px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #d4d4d4;
  padding: 2px 8px;
  font-family: 'Open Sans',sans-serif;
  color: #a9a9a9;
  outline: none !important;
  width: -moz-calc(100% - 37px);
  width: -webkit-calc(100% - 37px);
  width: calc(100% - 37px);
}

/* line 402, sass/_globals.scss */
form#search-top {
  margin-top: 10px;
  text-align: right;
}

/* line 404, sass/_globals.scss */
.footer {
  height: auto;
  position: relative;
}

/*******************************MEDIA QUERIES***********************************/
@media (max-width: 767px) {
  /* line 414, sass/_globals.scss */
  .pnf-illust-wrap {
    padding-right: 0px;
    border-right: none;
  }

  /* line 418, sass/_globals.scss */
  .pnf-middle {
    -moz-transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
  }
}
/*---------- End 767 Media ----------*/
/*----My Globals(colors, layout, mixins, global resets----*/
/*Colors*/
/*Fonts*/
/*Layout*/
/* line 31, sass/_my-globals.scss */
.section-pad {
  padding: 65px 15px;
}

/*footer-fix*/
/********global css**********/
/* line 88, sass/_my-globals.scss */
.theme-btn {
  padding: 12px 55px 10px;
  font-size: 1em;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 3px solid white;
  border-radius: 0;
}

/* line 91, sass/_my-globals.scss */
.text-center {
  text-align: center;
}

/* line 94, sass/_my-globals.scss */
.interior-content ul li {
  list-style: disc;
  font-family: "Lato", sans-serif;
  /*padding-left: 15px;*/
  margin-left: 18px;
  font-size: 1.2em;
}

/* line 101, sass/_my-globals.scss */
.interior-content ol li {
  font-size: 1.2em;
}

/* line 104, sass/_my-globals.scss */
a {
  outline: 0;
}

/* line 107, sass/_my-globals.scss */
:hover, a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
  outline: 0;
}

/* line 111, sass/_my-globals.scss */
body {
  color: #003E52;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

/* line 116, sass/_my-globals.scss */
a {
  color: #105B73;
  text-decoration: none;
}

/* line 120, sass/_my-globals.scss */
p {
  font-family: "Lato", sans-serif;
  color: #003E52;
  font-size: 1.1em;
  line-height: 24px;
}

/* line 126, sass/_my-globals.scss */
h1, h2, h3, h4, h5 {
  color: #003E52;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* line 134, sass/_my-globals.scss */
em {
  font-style: italic;
}

/* line 137, sass/_my-globals.scss */
h1 {
  font-size: 3.2em;
}

/* line 140, sass/_my-globals.scss */
h2 {
  font-size: 2em;
}

/* line 143, sass/_my-globals.scss */
h3 {
  font-size: 1.6em;
}

/* line 146, sass/_my-globals.scss */
h4 {
  font-size: 1.2em;
}

/* line 149, sass/_my-globals.scss */
header {
  /*mobile-menu*/
}
/* line 151, sass/_my-globals.scss */
header .mobile-menu svg {
  width: 25px;
  height: 25px;
  fill: #CF0A2C;
}

/*header*/
/* line 158, sass/_my-globals.scss */
#return-to-top {
  position: fixed;
  z-index: 10;
  bottom: 25px;
  right: 25px;
  background: #003E52;
  width: 50px;
  height: 50px;
  display: none;
  text-decoration: none;
  transform: rotate(45deg);
  /*wrap*/
  /*svg-slider-arrow*/
  /*hover*/
}
/* line 169, sass/_my-globals.scss */
#return-to-top .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
/* line 173, sass/_my-globals.scss */
#return-to-top .svg-slider-arrow {
  margin: auto;
  width: 10px;
  transform: rotate(-135deg);
  /*path*/
}
/* line 177, sass/_my-globals.scss */
#return-to-top .svg-slider-arrow path {
  stroke: #fff;
  stroke-width: 8;
  fill: none;
  stroke-linecap: round;
}
/* line 184, sass/_my-globals.scss */
#return-to-top:hover {
  background: #CF0A2C;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

/*return-to-top*/
/* line 191, sass/_my-globals.scss */
.frm_forms {
  width: 100%;
  max-width: 100%;
}

/* line 195, sass/_my-globals.scss */
#home {
  /*footer*/
}
/* line 77, sass/_my-globals.scss */
#home footer {
  height: auto;
  position: relative;
}

/* line 198, sass/_my-globals.scss */
#wrapper {
  min-height: 100%;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* line 206, sass/_my-globals.scss */
body {
  background-color: #192228;
  background-color: #192228;
}

/* line 209, sass/_my-globals.scss */
.photo-darken {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #2A201E;
  background-color: rgba(42, 32, 30, 0.4);
}

/* line 213, sass/_my-globals.scss */
#content-wrapper {
  min-height: 600px;
}

/*----Third Party CSS----*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
/* line 9, sass/thirdparty/_animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 16, sass/thirdparty/_animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 21, sass/thirdparty/_animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 82, sass/thirdparty/_animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 110, sass/thirdparty/_animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 151, sass/thirdparty/_animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 230, sass/thirdparty/_animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 269, sass/thirdparty/_animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 328, sass/thirdparty/_animate.scss */
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 390, sass/thirdparty/_animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 471, sass/thirdparty/_animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 556, sass/thirdparty/_animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 631, sass/thirdparty/_animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 704, sass/thirdparty/_animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 777, sass/thirdparty/_animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 850, sass/thirdparty/_animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 893, sass/thirdparty/_animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 938, sass/thirdparty/_animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 971, sass/thirdparty/_animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1004, sass/thirdparty/_animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1047, sass/thirdparty/_animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 1062, sass/thirdparty/_animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1095, sass/thirdparty/_animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1128, sass/thirdparty/_animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1161, sass/thirdparty/_animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1194, sass/thirdparty/_animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1227, sass/thirdparty/_animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1260, sass/thirdparty/_animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1293, sass/thirdparty/_animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1326, sass/thirdparty/_animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 1341, sass/thirdparty/_animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1370, sass/thirdparty/_animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1399, sass/thirdparty/_animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1428, sass/thirdparty/_animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1457, sass/thirdparty/_animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1486, sass/thirdparty/_animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1515, sass/thirdparty/_animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1544, sass/thirdparty/_animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1573, sass/thirdparty/_animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1652, sass/thirdparty/_animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1725, sass/thirdparty/_animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1798, sass/thirdparty/_animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 1843, sass/thirdparty/_animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 1890, sass/thirdparty/_animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 1951, sass/thirdparty/_animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 1982, sass/thirdparty/_animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2025, sass/thirdparty/_animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2066, sass/thirdparty/_animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2107, sass/thirdparty/_animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2148, sass/thirdparty/_animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2189, sass/thirdparty/_animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2226, sass/thirdparty/_animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2263, sass/thirdparty/_animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2300, sass/thirdparty/_animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2337, sass/thirdparty/_animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2374, sass/thirdparty/_animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2447, sass/thirdparty/_animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2482, sass/thirdparty/_animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2513, sass/thirdparty/_animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2542, sass/thirdparty/_animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2583, sass/thirdparty/_animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2624, sass/thirdparty/_animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2665, sass/thirdparty/_animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2706, sass/thirdparty/_animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
/* line 2743, sass/thirdparty/_animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2788, sass/thirdparty/_animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 2825, sass/thirdparty/_animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 2862, sass/thirdparty/_animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2907, sass/thirdparty/_animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 2938, sass/thirdparty/_animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 2969, sass/thirdparty/_animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 3000, sass/thirdparty/_animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 3031, sass/thirdparty/_animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* line 3062, sass/thirdparty/_animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* line 3093, sass/thirdparty/_animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* line 3124, sass/thirdparty/_animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
/* line 3155, sass/thirdparty/_animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*
 * jQuery FlexSlider v2.6.1
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
/* line 25, sass/thirdparty/_flexslider.scss */
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

/* line 29, sass/thirdparty/_flexslider.scss */
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 37, sass/thirdparty/_flexslider.scss */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
/* line 43, sass/thirdparty/_flexslider.scss */
.flexslider {
  margin: 0;
  padding: 0;
}

/* line 47, sass/thirdparty/_flexslider.scss */
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* line 51, sass/thirdparty/_flexslider.scss */
.flexslider .slides img {
  width: 100%;
  display: block;
}

/* line 55, sass/thirdparty/_flexslider.scss */
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 63, sass/thirdparty/_flexslider.scss */
html[xmlns] .flexslider .slides {
  display: block;
}

/* line 66, sass/thirdparty/_flexslider.scss */
* html .flexslider .slides {
  height: 1%;
}

/* line 69, sass/thirdparty/_flexslider.scss */
.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
/* line 75, sass/thirdparty/_flexslider.scss */
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* line 89, sass/thirdparty/_flexslider.scss */
.flexslider .slides {
  zoom: 1;
}

/* line 92, sass/thirdparty/_flexslider.scss */
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

/* line 96, sass/thirdparty/_flexslider.scss */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 104, sass/thirdparty/_flexslider.scss */
.loading .flex-viewport {
  max-height: 300px;
}

/* line 107, sass/thirdparty/_flexslider.scss */
.carousel li {
  margin-right: 5px;
}

/* line 110, sass/thirdparty/_flexslider.scss */
.flex-direction-nav {
  *height: 0;
}

/* line 113, sass/thirdparty/_flexslider.scss */
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 133, sass/thirdparty/_flexslider.scss */
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

/* line 141, sass/thirdparty/_flexslider.scss */
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

/* line 144, sass/thirdparty/_flexslider.scss */
.flex-direction-nav .flex-prev {
  left: -50px;
}

/* line 147, sass/thirdparty/_flexslider.scss */
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

/* line 151, sass/thirdparty/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}

/* line 155, sass/thirdparty/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

/* line 158, sass/thirdparty/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}

/* line 162, sass/thirdparty/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

/* line 165, sass/thirdparty/_flexslider.scss */
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

/* line 171, sass/thirdparty/_flexslider.scss */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

/* line 184, sass/thirdparty/_flexslider.scss */
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

/* line 190, sass/thirdparty/_flexslider.scss */
.flex-pauseplay a:hover {
  opacity: 1;
}

/* line 193, sass/thirdparty/_flexslider.scss */
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* line 196, sass/thirdparty/_flexslider.scss */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

/* line 202, sass/thirdparty/_flexslider.scss */
.flex-control-nav li {
  margin: 0 3px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 208, sass/thirdparty/_flexslider.scss */
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

/* line 224, sass/thirdparty/_flexslider.scss */
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

/* line 228, sass/thirdparty/_flexslider.scss */
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

/* line 233, sass/thirdparty/_flexslider.scss */
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

/* line 238, sass/thirdparty/_flexslider.scss */
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

/* line 243, sass/thirdparty/_flexslider.scss */
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 256, sass/thirdparty/_flexslider.scss */
.flex-control-thumbs img:hover {
  opacity: 1;
}

/* line 259, sass/thirdparty/_flexslider.scss */
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  /* line 267, sass/thirdparty/_flexslider.scss */
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  /* line 271, sass/thirdparty/_flexslider.scss */
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*-----------------Sidr--------------------*/
/* line 2, sass/thirdparty/_sidr.scss */
.sidr .sidr-inner {
  padding: 0 0 15px;
}

/* line 5, sass/thirdparty/_sidr.scss */
.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px;
}

/* line 9, sass/thirdparty/_sidr.scss */
.sidr.right {
  left: auto;
  right: -260px;
}

/* line 13, sass/thirdparty/_sidr.scss */
.sidr.left {
  left: -260px;
  right: auto;
}

/* line 17, sass/thirdparty/_sidr.scss */
.sidr h1, .sidr h2, .sidr h3, .sidr h4, .sidr h5, .sidr h6 {
  font-size: 11px;
  font-weight: normal;
  padding: 0 15px;
  margin: 0 0 5px;
  color: #333;
  line-height: 24px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dfdfdf));
  background-image: -webkit-linear-gradient(#ffffff, #dfdfdf);
  background-image: -moz-linear-gradient(#ffffff, #dfdfdf);
  background-image: -o-linear-gradient(#ffffff, #dfdfdf);
  background-image: linear-gradient(#ffffff, #dfdfdf);
  -webkit-box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.2);
}

/* line 33, sass/thirdparty/_sidr.scss */
.sidr p {
  font-size: 13px;
  margin: 0 0 12px;
}

/* line 37, sass/thirdparty/_sidr.scss */
.sidr > p {
  margin-left: 15px;
  margin-right: 15px;
}

/* line 42, sass/thirdparty/_sidr.scss */
.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: none;
  line-height: 49px;
}

/* line 46, sass/thirdparty/_sidr.scss */
.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
  background-color: transparent;
}

/* line 50, sass/thirdparty/_sidr.scss */
.sidr ul li ul {
  border-bottom: none;
  margin: 0;
}

/* line 54, sass/thirdparty/_sidr.scss */
.sidr ul li ul li {
  line-height: 40px;
  font-size: 13px;
}

/* line 58, sass/thirdparty/_sidr.scss */
.sidr ul li ul li:last-child {
  border-bottom: none;
}

/* line 61, sass/thirdparty/_sidr.scss */
.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: none;
  line-height: 41px;
}

/* line 65, sass/thirdparty/_sidr.scss */
.sidr form {
  margin: 0 15px;
}

/* line 68, sass/thirdparty/_sidr.scss */
.sidr label {
  font-size: 13px;
}

/* line 71, sass/thirdparty/_sidr.scss */
.sidr input[type="text"], .sidr input[type="password"], .sidr input[type="date"], .sidr input[type="datetime"], .sidr input[type="email"], .sidr input[type="number"], .sidr input[type="search"], .sidr input[type="tel"], .sidr input[type="time"], .sidr input[type="url"], .sidr textarea, .sidr select {
  width: 100%;
  font-size: 13px;
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(51, 51, 51, 0.6);
  display: block;
  clear: both;
}

/* line 90, sass/thirdparty/_sidr.scss */
.sidr input[type=checkbox] {
  width: auto;
  display: inline;
  clear: none;
}

/* line 95, sass/thirdparty/_sidr.scss */
.sidr input[type=button], .sidr input[type=submit] {
  color: #f8f8f8;
  background: #333;
}

/* line 99, sass/thirdparty/_sidr.scss */
.sidr input[type=button]:hover, .sidr input[type=submit]:hover {
  background: rgba(51, 51, 51, 0.9);
}

/*-----Start Custom Styles--------*/
/* line 103, sass/thirdparty/_sidr.scss */
.sidr {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 260px;
  overflow-x: none;
  overflow-y: auto;
  font-weight: 600;
  font-style: normal;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  background: #003E52;
  color: white;
}

/* line 118, sass/thirdparty/_sidr.scss */
.sidr ul li ul li:hover > a, .sidr ul li ul li:hover > span, .sidr ul li ul li.active > a, .sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a, .sidr ul li ul li.sidr-class-active > span {
  background-color: #F0F4F5;
  color: #003E52;
}

/* line 122, sass/thirdparty/_sidr.scss */
.sidr ul li ul li a, .sidr ul li ul li span {
  color: white;
  padding-left: 30px;
}

/* line 126, sass/thirdparty/_sidr.scss */
.sidr ul {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #fff;
}

/* line 133, sass/thirdparty/_sidr.scss */
.sidr ul li {
  display: block;
  margin: 0;
  line-height: 48px;
  border-top: 1px solid #105B73;
  border-bottom: 1px solid #E3ECEF;
}

/* line 140, sass/thirdparty/_sidr.scss */
.sidr ul li a, .sidr ul li span {
  padding: 0 15px;
  display: block;
  text-decoration: none;
  color: #333;
}

/* line 146, sass/thirdparty/_sidr.scss */
.sidr p a {
  color: white;
}

/* line 149, sass/thirdparty/_sidr.scss */
.sidr {
  background-color: #003E52;
  box-shadow: none;
}

/* line 153, sass/thirdparty/_sidr.scss */
.sidr ul li a {
  font-weight: 600;
  font-style: normal;
  font-family: "Lato", sans-serif;
  color: white;
  font-size: 1.1em;
}
/* line 157, sass/thirdparty/_sidr.scss */
.sidr ul li a:hover {
  background-color: #F0F4F5;
  color: #003E52;
  box-shadow: none;
}

/* line 164, sass/thirdparty/_sidr.scss */
a.sidr-class-close {
  margin-left: 15px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-style: normal;
  font-family: "Lato", sans-serif;
  font-size: 1.1em;
  margin-top: 10px;
  display: block;
  margin-right: 15px;
  text-align: center;
  background-color: #CF0A2C;
  color: white;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

/* line 179, sass/thirdparty/_sidr.scss */
a.sidr-class-close:hover,
a.sidr-class-close:active {
  background-color: #fff;
  color: #3c4346;
  text-decoration: none;
}

/* line 185, sass/thirdparty/_sidr.scss */
.sidr-class-sidebrand {
  margin-bottom: 10px;
  text-align: center;
}

/*Superfish********************************************************************/
/*** ESSENTIAL STYLES ***/
/* line 4, sass/thirdparty/_superfish.scss */
.sf-menu,
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 10, sass/thirdparty/_superfish.scss */
.sf-menu li {
  position: relative;
}

/* line 13, sass/thirdparty/_superfish.scss */
.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

/* line 20, sass/thirdparty/_superfish.scss */
.sf-menu > li {
  float: left;
}

/* line 23, sass/thirdparty/_superfish.scss */
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}

/* line 28, sass/thirdparty/_superfish.scss */
.sf-menu a {
  display: block;
  position: relative;
}

/* line 32, sass/thirdparty/_superfish.scss */
.sf-menu ul ul {
  top: 0;
  left: 100%;
}

/*** DEMO SKIN ***/
/* line 38, sass/thirdparty/_superfish.scss */
.sf-menu {
  float: left;
  /*margin-bottom: 1em;*/
}

/* line 42, sass/thirdparty/_superfish.scss */
.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 12em;
  /* allow long menu items to determine submenu width */
  *width: 12em;
  /* no auto sub width for IE7, see white-space comment below */
}

/* line 47, sass/thirdparty/_superfish.scss */
.sf-menu a {
  /*border-left: 1px solid #fff;*/
  /*border-top: 1px solid #dFeEFF;*/
  /* fallback colour must use full shorthand */
  /*border-top: 1px solid rgba(255,255,255,.5);*/
  /*padding: .75em 1em;*/
  text-decoration: none;
  zoom: 1;
  /* IE7 */
}

/* line 55, sass/thirdparty/_superfish.scss */
.sf-menu a {
  /*color: #13a;*/
}

/* line 58, sass/thirdparty/_superfish.scss */
.sf-menu li {
  /*background: #BDD2FF;*/
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s;
}

/* line 65, sass/thirdparty/_superfish.scss */
.sf-menu ul li {
  /*background: #AABDE6;*/
}

/* line 68, sass/thirdparty/_superfish.scss */
.sf-menu ul ul li {
  background: #f7f7f7;
}

/* line 71, sass/thirdparty/_superfish.scss */
.sf-menu li:hover,
.sf-menu li.sfHover {
  /*background: #CFDEFF;*/
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}

/*----------------------------------Better Hover Styles for dropdown-----------------------------------*/
/* line 80, sass/thirdparty/_superfish.scss */
header .banner-bottom .sf-menu ul.sub-menu li a {
  display: block;
}

/* line 81, sass/thirdparty/_superfish.scss */
#top-nav li.current-menu-item ul.sub-menu li a {
  background-color: #202020;
  border-right: none;
  border-bottom: none;
  color: #909090;
  margin-bottom: 0px !important;
  background-image: none;
  display: block;
}

/* line 90, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu li a {
  padding: 12px 15px;
  color: #909090;
  margin: 0px;
  background-color: #202020;
  line-height: 15px;
  font-size: .9em;
  font-weight: 400 !important;
}

/* line 99, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu li:hover a,
#top-nav ul.sub-menu li.current-menu-item a {
  background-image: none !important;
  background-color: #2c2c2c !important;
  color: #fff;
  text-decoration: none;
}

/* line 106, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu {
  background-color: #202020;
  width: auto;
}

/* line 109, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu li {
  display: block;
  text-align: left;
}

/* line 114, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu ul.sub-menu li:hover a,
#top-nav ul.sub-menu li:hover ul.sub-menu li:hover a,
#top-nav li.current-menu-item ul.sub-menu li:hover a {
  background-color: #2c2c2c !important;
  color: #fff;
  text-decoration: none;
}

/* line 121, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu li:hover ul.sub-menu li a {
  background-color: #202020 !important;
}

/* line 125, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu li,
#top-nav ul.sub-menu li:last-child {
  padding: 0;
  margin: 0;
}

/*Sub-sub menus*/
/* line 131, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu ul.sub-menu li a,
#top-nav ul.sub-menu li:hover ul.sub-menu li a,
#top-nav ul.sub-menu ul.sub-menu li.current-menu-item a {
  color: #909090;
  background-color: #202020 !important;
}

/* line 138, sass/thirdparty/_superfish.scss */
#top-nav ul.sub-menu ul.sub-menu li:hover a,
#top-nav ul.sub-menu ul.sub-menu li.current-menu-item a:hover {
  background-color: #2c2c2c !important;
  color: #fff;
  text-decoration: none;
}

/*----End Superfish Dropdowns----*/
/*----Custom Theme Styles----*/
/*banner styles*/
/* line 2, sass/sections/_banner.scss */
header {
  /*banner-bottom*/
}
/* line 3, sass/sections/_banner.scss */
header .banner {
  border-bottom: 10px solid #003E52;
  /*container*/
  /*brand*/
  /*menu-container*/
  /*mobile-menu*/
}
/* line 5, sass/sections/_banner.scss */
header .banner .container {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
/* line 9, sass/sections/_banner.scss */
header .banner .brand {
  width: 242px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /*logo*/
}
/* line 12, sass/sections/_banner.scss */
header .banner .brand .logo {
  min-width: 150px;
}
/* line 14, sass/sections/_banner.scss */
header .banner .brand .logo .img-responsive {
  display: inline-block;
  width: 220px;
  height: auto;
}
/* line 21, sass/sections/_banner.scss */
header .banner .menu-container {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  /*sf-menu*/
  /*#top-nav ul.sub-menu li a*/
  /*#top-nav ul.sub-menu li:hover a*/
  /*active page submenu hover styles*/
}
/* line 24, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  /*current-menu-item*/
  /*a*/
}
/* line 28, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu li {
  margin: auto;
}
/* line 31, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu .current-menu-item {
  /*a*/
}
/* line 32, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu .current-menu-item a {
  background-color: #CF0A2C;
  color: white;
}
/* line 37, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu a {
  margin: auto;
  padding: 50px 25px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9em;
  color: #003E52;
  /*hover*/
}
/* line 41, sass/sections/_banner.scss */
header .banner .menu-container .sf-menu a:hover {
  background-color: #CF0A2C;
  color: white;
}
/* line 47, sass/sections/_banner.scss */
header .banner .menu-container #top-nav ul.sub-menu li a {
  color: white;
  background-color: #003E52;
}
/* line 51, sass/sections/_banner.scss */
header .banner .menu-container #top-nav ul.sub-menu li:hover a,
header .banner .menu-container #top-nav ul.sub-menu li.current-menu-item a,
header .banner .menu-container #top-nav li.current_page_item a {
  background-color: #CF0A2C !important;
  color: white;
}
/* line 57, sass/sections/_banner.scss */
header .banner .menu-container #top-nav li.current_page_item ul li a {
  background-color: #CF0A2C !important;
}
/* line 61, sass/sections/_banner.scss */
header .banner .mobile-container {
  /*mobile-menu*/
}
/* line 62, sass/sections/_banner.scss */
header .banner .mobile-container .mobile-menu {
  margin: 0 30px;
}
/* line 64, sass/sections/_banner.scss */
header .banner .mobile-container .mobile-menu a {
  padding: 3px;
  display: block;
}

/*header*/
/*Front-hero Styles*/
/* line 2, sass/sections/_front-hero.scss */
.hero {
  position: relative;
  /*overlay*/
  /*flexslider*/
}
/* line 4, sass/sections/_front-hero.scss */
.hero .overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: #003E52;
  background-color: rgba(0, 62, 82, 0.2);
}
/* line 8, sass/sections/_front-hero.scss */
.hero .flexslider {
  border: none;
  margin: 0;
  /*image*/
  /*hero-title*/
  /*caption*/
  /*location*/
  /*flex-control-nav*/
}
/* line 11, sass/sections/_front-hero.scss */
.hero .flexslider .image {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* line 18, sass/sections/_front-hero.scss */
.hero .flexslider .hero-title {
  padding: 190px 15px;
  text-align: center;
  color: white;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  position: relative;
}
/* line 25, sass/sections/_front-hero.scss */
.hero .flexslider .caption {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  font-size: .9em;
}
/* line 37, sass/sections/_front-hero.scss */
.hero .flexslider .flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 4px;
  text-align: center;
  z-index: 10;
  /*flex-control-paging*/
}
/* line 44, sass/sections/_front-hero.scss */
.hero .flexslider .flex-control-nav.flex-control-paging li a {
  background-color: white;
  box-shadow: none;
  width: 8px;
  height: 8px;
}
/* line 48, sass/sections/_front-hero.scss */
.hero .flexslider .flex-control-nav.flex-control-paging li a.flex-active {
  background-color: #CF0A2C;
  box-shadow: none;
}

/*hero*/
/*-----Conversion Bar Styles-------*/
/* line 2, sass/sections/_conversion-bar.scss */
.conversion-bar {
  text-align: center;
  padding: 25px 10px;
  background-color: #003E52;
  /*flex-container*/
  /*title*/
  /*vert-div*/
  /*the,e-btn*/
}
/* line 6, sass/sections/_conversion-bar.scss */
.conversion-bar .flex-container {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 11, sass/sections/_conversion-bar.scss */
.conversion-bar .title {
  color: white;
  margin: 0;
}
/* line 15, sass/sections/_conversion-bar.scss */
.conversion-bar .vert-div {
  width: 4px;
  height: 90px;
  background: #CF0A2C;
}
/* line 20, sass/sections/_conversion-bar.scss */
.conversion-bar .theme-btn {
  margin: 10px 0;
}

/*conversion-bar*/
/* line 1, sass/sections/_properties.scss */
.properties {
  /*title-wrap*/
  /*title*/
  /*flex-container*/
  /*property-type*/
}
/* line 2, sass/sections/_properties.scss */
.properties .title-wrap {
  text-align: center;
}
/* line 5, sass/sections/_properties.scss */
.properties .title {
  display: inline-block;
}
/* line 8, sass/sections/_properties.scss */
.properties .flex-container {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  align-items: start;
}
/* line 12, sass/sections/_properties.scss */
.properties .property-type {
  margin: 25px;
  text-align: center;
  /*link*/
  /*icon*/
  /*property-title*/
}
/* line 15, sass/sections/_properties.scss */
.properties .property-type .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
/* line 21, sass/sections/_properties.scss */
.properties .property-type .icon {
  width: 175px;
  height: 175px;
  display: block;
  border-radius: 90px;
  border: 5px solid #CF0A2C;
  background-repeat: no-repeat;
  background-position: center center;
}
/* line 30, sass/sections/_properties.scss */
.properties .property-type .property-title {
  margin: 25px 0;
  font-weight: bold;
  line-height: 24px;
  font-size: 1.1em;
}

/*properties*/
/*Front-About Styles*/
/* line 2, sass/sections/_front-about.scss */
.about {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  /*icon*/
  /*title*/
  /*text*/
}
/* line 5, sass/sections/_front-about.scss */
.about .sprites-accent-symbol {
  position: relative;
  margin: auto -41px auto -42px;
  z-index: 2;
}
/* line 10, sass/sections/_front-about.scss */
.about .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #003E52;
  /*section-title*/
}
/* line 17, sass/sections/_front-about.scss */
.about .title .section-title {
  text-align: right;
  line-height: 72px;
  color: white;
  max-width: 550px;
  padding: 25px;
}
/* line 25, sass/sections/_front-about.scss */
.about .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #E3ECEF;
}
/* line 33, sass/sections/_front-about.scss */
.about .text p {
  max-width: 510px;
  line-height: 36px;
  font-size: 1em;
  margin: 5px 0 5px;
  padding: 25px;
}

/*about*/
/*-------Front-Testimonials-Styles--------*/
/* line 2, sass/sections/_front-testimonials.scss */
.front-testimonials {
  padding: 40px 15px 60px;
  /*container*/
  /*flexslider*/
}
/* line 4, sass/sections/_front-testimonials.scss */
.front-testimonials .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
/* line 9, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider {
  margin: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  /*flex-container*/
  /*flex-control-nav*/
}
/* line 14, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*title-wrap*/
  /*name*/
  /*title*/
  /*text*/
  /*rex*/
}
/* line 18, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .title-wrap {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  min-width: 200px;
}
/* line 25, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .name {
  font-style: italic;
  margin: 0;
}
/* line 29, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .title {
  font-size: 1.1em;
  margin: 0;
}
/* line 33, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .text {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 300px;
}
/* line 37, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .text p {
  font-size: 1em;
}
/* line 41, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .red {
  color: #CF0A2C;
  font-size: 1.4em;
  font-weight: bold;
  /*end*/
}
/* line 45, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-container .red.end {
  bottom: 0;
  position: absolute;
  right: 0;
}
/* line 52, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-control-paging li a {
  background-color: #ccc;
  width: 10px !important;
  height: 10px !important;
}
/* line 57, sass/sections/_front-testimonials.scss */
.front-testimonials .flexslider .flex-control-paging li a.flex-active {
  background-color: #cf0a2c !important;
  box-shadow: none !important;
}

/*front-testimonials*/
/************* Footer, SEO, & Social Media Styles ****************/
/* line 2, sass/sections/_footer.scss */
footer {
  background: #105B73;
  /*footer-container*/
  /*footer-info*/
  /*foot-menu*/
  /*---------footer-bottom-------*/
  /*footer-bottom*/
}
/* line 4, sass/sections/_footer.scss */
footer .footer-container {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 8, sass/sections/_footer.scss */
footer .footer-info {
  margin-top: 15px;
  min-width: 300px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /*logo*/
  /*company-name*/
  /*contact*/
}
/* line 14, sass/sections/_footer.scss */
footer .footer-info .logo {
  width: 154px;
  height: 53px;
  margin: 0 0 35px;
}
/* line 19, sass/sections/_footer.scss */
footer .footer-info .company-name {
  color: white;
  font-size: 1.4em;
  margin-bottom: 25px;
  -webkit-align-self: left;
  -moz-align-self: left;
  -ms-align-self: left;
  align-self: left;
}
/* line 25, sass/sections/_footer.scss */
footer .footer-info .contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 10px;
  width: 100%;
  /*icon*/
  /*contact-text*/
}
/* line 31, sass/sections/_footer.scss */
footer .footer-info .contact .icon {
  min-width: 30px;
  margin-right: 10px;
}
/* line 35, sass/sections/_footer.scss */
footer .footer-info .contact .contact-text {
  color: white;
}
/* line 40, sass/sections/_footer.scss */
footer #foot-menu {
  margin-top: 15px;
  min-width: 300px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  /*menu-title*/
  /*nav-footer-menu*/
}
/* line 46, sass/sections/_footer.scss */
footer #foot-menu .menu-title {
  font-size: 2.3em;
  color: white;
  margin-bottom: 45px;
}
/* line 52, sass/sections/_footer.scss */
footer #foot-menu nav.footer-menu ul li a {
  color: white;
  padding: 10px;
  text-transform: uppercase;
  display: inline-block;
  font-size: .8em;
}
/* line 63, sass/sections/_footer.scss */
footer .footer-bottom {
  background: #003E52;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*copyrght*/
  /*copy*/
  /*site-by*/
}
/* line 68, sass/sections/_footer.scss */
footer .footer-bottom .copyright {
  color: white;
  min-width: 250px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
/* line 75, sass/sections/_footer.scss */
footer .footer-bottom .copy {
  padding: 20px 10px;
}
/* line 78, sass/sections/_footer.scss */
footer .footer-bottom .site-by {
  min-width: 250px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  /*site-by-elev*/
}
/* line 83, sass/sections/_footer.scss */
footer .footer-bottom .site-by .sprites-site-by-elevation {
  display: block;
}

/*footer*/
/*--------#Page Styles--------*/
/* line 2, sass/sections/_page.scss */
#page {
  /*content-wrapper*/
  /*links-title*/
  /*link-container*/
  /*button-wrap*/
  /*owner-wrapper*/
  /*teamwraper*/
}
/* line 3, sass/sections/_page.scss */
#page #content-wrapper {
  background: #E3ECEF;
  /*container*/
}
/* line 5, sass/sections/_page.scss */
#page #content-wrapper .container {
  /*page-content*/
}
/* line 6, sass/sections/_page.scss */
#page #content-wrapper .container .page-content {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  /*gallery*/
}
/* line 10, sass/sections/_page.scss */
#page #content-wrapper .container .page-content .gallery {
  margin: 25px auto;
  /*gallery-img*/
}
/* line 12, sass/sections/_page.scss */
#page #content-wrapper .container .page-content .gallery dl {
  margin: 0;
}
/* line 15, sass/sections/_page.scss */
#page #content-wrapper .container .page-content .gallery img {
  border: none;
}
/* line 18, sass/sections/_page.scss */
#page #content-wrapper .container .page-content .gallery .gallery-item {
  border: none;
  padding: 10px;
}
/* line 26, sass/sections/_page.scss */
#page .links-title {
  text-align: center;
}
/* line 29, sass/sections/_page.scss */
#page .about-link-container {
  background-color: white;
}
/* line 32, sass/sections/_page.scss */
#page .button-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding-top: 45px;
  /*theme-btn*/
}
/* line 36, sass/sections/_page.scss */
#page .button-wrap .theme-btn {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 250px;
  margin: 15px;
  padding: 20px 40px;
  border-color: #CF0A2C;
  color: #CF0A2C;
}
/* line 45, sass/sections/_page.scss */
#page .owner-wrapper {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*owner*/
}
/* line 47, sass/sections/_page.scss */
#page .owner-wrapper .owner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 300px;
  margin: 15px;
  background: #003E52;
  padding: 25px;
  /*image*/
  /*name*/
  /*text*/
  /*theme-btn*/
}
/* line 55, sass/sections/_page.scss */
#page .owner-wrapper .owner .image {
  width: 140px;
  height: 140px;
  display: block;
  border-radius: 70px;
  background-position: center center;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
  margin-top: 45px;
  border: 4px solid white;
}
/* line 65, sass/sections/_page.scss */
#page .owner-wrapper .owner .name {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
  color: white;
  border-bottom: 4px solid #CF0A2C;
  padding-bottom: 10px;
}
/* line 71, sass/sections/_page.scss */
#page .owner-wrapper .owner .owner-about {
  min-height: 550px;
  font-size: .9em;
}
/* line 74, sass/sections/_page.scss */
#page .owner-wrapper .owner .owner-about p {
  color: white;
}
/* line 78, sass/sections/_page.scss */
#page .owner-wrapper .owner .theme-btn {
  width: 80%;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
  margin: 25px auto;
}
/* line 84, sass/sections/_page.scss */
#page .owner-wrapper .owner .toggle-cmp0417 a {
  padding: 10px;
  text-decoration: none !important;
  display: inline-block;
  color: #E3ECEF !important;
}
/* line 93, sass/sections/_page.scss */
#page .team-wrapper {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /*member*/
}
/* line 95, sass/sections/_page.scss */
#page .team-wrapper .member {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #105B73;
  margin: 25px auto;
  width: calc(100% - 30px);
  padding: 15px;
  /*image*/
  /*member-about*/
  /*name*/
  /*team-about*/
  /*theme-btn*/
}
/* line 105, sass/sections/_page.scss */
#page .team-wrapper .member .image-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  min-width: 250px;
}
/* line 112, sass/sections/_page.scss */
#page .team-wrapper .member .image {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-position: center center;
  display: block;
  background-color: #003E52;
  border: 4px solid white;
}
/* line 121, sass/sections/_page.scss */
#page .team-wrapper .member .member-about {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 4;
  -moz-box-flex: 4;
  -webkit-flex: 4;
  -ms-flex: 4;
  flex: 4;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 800px;
}
/* line 127, sass/sections/_page.scss */
#page .team-wrapper .member .name {
  color: white;
  border-bottom: 4px solid #CF0A2C;
  padding-bottom: 10px;
  max-width: 760px;
}
/* line 133, sass/sections/_page.scss */
#page .team-wrapper .member .team-about {
  color: white;
  line-height: 24px;
}
/* line 137, sass/sections/_page.scss */
#page .team-wrapper .member .theme-btn {
  width: 240px;
  margin-top: 35px;
  margin-bottom: 10px;
}

/*page*/
/*--------#Blog Styles--------*/
/*--------404 styles--------*/
/* line 2, sass/sections/_404.scss */
.error404 {
  /*container*/
}
/* line 3, sass/sections/_404.scss */
.error404 .container-404 {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  /*h1*/
  /*h2*/
}
/* line 6, sass/sections/_404.scss */
.error404 .container-404 h1 {
  margin-top: 90px;
  color: #CF0A2C;
}
/* line 10, sass/sections/_404.scss */
.error404 .container-404 h2 {
  color: #003E52;
}

/*error404*/
/* line 1, sass/sections/_single-properties.scss */
#properties {
  /*content-wrapper*/
  /*properties-container*/
}
/* line 2, sass/sections/_single-properties.scss */
#properties #content-wrapper {
  background-color: #F0F4F5;
}
/* line 5, sass/sections/_single-properties.scss */
#properties .properties-container {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  /*property-wrap*/
}
/* line 7, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: white;
  margin-bottom: 75px;
  /*property-image*/
  /*property-content*/
}
/* line 11, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-image {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: 200px;
  min-height: 200px;
  background-position: center center;
  background-size: cover;
  padding-top: 25%;
}
/* line 19, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content {
  -webkit-box-flex: 5;
  -moz-box-flex: 5;
  -webkit-flex: 5;
  -ms-flex: 5;
  flex: 5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 15px 40px 50px;
  min-width: 250px;
  /*title*/
  /*text*/
  /*website-link*/
  /*icon*/
  /*sprtes-link*/
  /*link-text*/
}
/* line 25, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .title {
  display: block;
  border-bottom: 4px solid #CF0A2C;
  margin: 0 0 15px;
  padding: 0 0 5px;
  max-width: 730px;
}
/* line 32, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .text {
  max-width: 730px;
  line-height: 24px;
  font-weight: 600;
}
/* line 37, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .website-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  max-width: 730px;
  margin-top: 35px;
}
/* line 43, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .icon {
  width: 40px;
  height: 40px;
  background-color: #003E52;
  border-radius: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-right: 15px;
}
/* line 52, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .sprites-link {
  display: inline-block;
}
/* line 55, sass/sections/_single-properties.scss */
#properties .properties-container .property-wrap .property-content .link-text {
  font-weight: 600;
}

/*properties*/
/* Sidebar Styles */
/*Breadcrumbs Page-Header-MMM Styles*/
/* line 2, sass/sections/_breadcrumbs.scss */
.page-header-mmm {
  /*flex-container*/
  /*page-title-wrap*/
  /*section-title*/
  /*breadcrumbs*/
}
/* line 4, sass/sections/_breadcrumbs.scss */
.page-header-mmm .flex-container {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
/* line 12, sass/sections/_breadcrumbs.scss */
.page-header-mmm .section-title {
  border-bottom: 5px solid #CF0A2C;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: center;
}
/* line 18, sass/sections/_breadcrumbs.scss */
.page-header-mmm .breadcrumbs {
  padding-bottom: 35px;
  text-align: center;
}
/* line 21, sass/sections/_breadcrumbs.scss */
.page-header-mmm .breadcrumbs p {
  font-size: 1.2em;
  font-weight: bold;
}
/* line 25, sass/sections/_breadcrumbs.scss */
.page-header-mmm .breadcrumbs a {
  color: #CF0A2C;
}
/* line 28, sass/sections/_breadcrumbs.scss */
.page-header-mmm .breadcrumbs .breadcrumbs-home {
  display: inline-block;
  background-image: url(images/home.png);
  width: 41px;
  height: 37px;
  vertical-align: middle;
  margin: 0 5px 10px;
}

/*page-header-mmm*/
/*----Media Queries----*/
@media (max-width: 1199px) {
  /*-----------comment label all sections-----------*/
}
/******end 1199**********/
@media (max-width: 991px) {
  /* line 3, sass/mobile/_max-991.scss */
  .properties {
    /*title*/
    /*flex-container*/
    /*property-type*/
  }
  /* line 8, sass/mobile/_max-991.scss */
  .properties .property-type {
    margin: 15px;
    /*icon*/
    /*property-title*/
  }
  /* line 10, sass/mobile/_max-991.scss */
  .properties .property-type .icon {
    width: 80px;
    height: 80px;
    background-size: 50%;
  }

  /*properties*/
  /* line 21, sass/mobile/_max-991.scss */
  .about .sprites-accent-symbol {
    display: none;
  }
}
/*******end 991**********/
@media (max-width: 767px) {
  /* line 2, sass/mobile/_max-767.scss */
  h1 {
    font-size: 2.2em;
  }

  /* line 5, sass/mobile/_max-767.scss */
  h2 {
    font-size: 1.4em;
  }

  /* line 8, sass/mobile/_max-767.scss */
  h3 {
    font-size: 1.2em;
  }

  /* line 11, sass/mobile/_max-767.scss */
  h4 {
    font-size: 1em;
  }

  /* line 16, sass/mobile/_max-767.scss */
  header .banner .brand {
    padding: 15px 0;
  }
  /* line 19, sass/mobile/_max-767.scss */
  header .banner .brand .logo .img-responsive {
    width: 120px;
  }

  /*header*/
  /* line 27, sass/mobile/_max-767.scss */
  .hero {
    /*flexslider*/
  }
  /* line 28, sass/mobile/_max-767.scss */
  .hero .flexslider {
    /*hero-title*/
  }
  /* line 29, sass/mobile/_max-767.scss */
  .hero .flexslider .hero-title {
    padding: 60px 15px 90px;
  }

  /*hero*/
  /* line 35, sass/mobile/_max-767.scss */
  .conversion-bar {
    /*title*/
  }
  /* line 36, sass/mobile/_max-767.scss */
  .conversion-bar .title {
    margin-bottom: 20px;
  }

  /*conversion-bar*/
  /* line 41, sass/mobile/_max-767.scss */
  .about {
    /*title*/
    /*text*/
  }
  /* line 42, sass/mobile/_max-767.scss */
  .about .title {
    /*section-title*/
  }
  /* line 43, sass/mobile/_max-767.scss */
  .about .title .setcion-title {
    padding: 25px 0;
  }
  /* line 47, sass/mobile/_max-767.scss */
  .about .text {
    padding: 0;
  }

  /*about*/
  /* line 53, sass/mobile/_max-767.scss */
  #properties {
    /*content-wrapper*/
    /*property-container*/
  }
  /* line 56, sass/mobile/_max-767.scss */
  #properties .properties-container {
    /*property-wrap*/
  }
  /* line 57, sass/mobile/_max-767.scss */
  #properties .properties-container .property-wrap {
    /*property-image*/
    /*property-content*/
  }
  /* line 60, sass/mobile/_max-767.scss */
  #properties .properties-container .property-wrap .property-content {
    padding: 15px;
    /*title*/
  }
  /* line 62, sass/mobile/_max-767.scss */
  #properties .properties-container .property-wrap .property-content .title {
    margin-bottom: 35px;
  }

  /*properties*/
}
/******end 767***********/
@media (max-width: 480px) {
  /* line 3, sass/mobile/_max-480.scss */
  .about {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /* line 5, sass/mobile/_max-480.scss */
  .about .sprites-accent-symbol {
    margin: -41px auto -42px auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  /*about*/
  /* line 12, sass/mobile/_max-480.scss */
  footer .footer-info {
    margin-bottom: 25px;
  }
  /* line 15, sass/mobile/_max-480.scss */
  footer #foot-menu {
    -webkit-align-items: left;
    -moz-align-items: left;
    -ms-align-items: left;
    align-items: left;
  }

  /*footer*/
  /* line 19, sass/mobile/_max-480.scss */
  #page {
    /*team-member*/
  }
  /* line 20, sass/mobile/_max-480.scss */
  #page .team-wrapper {
    /*member*/
  }
  /* line 21, sass/mobile/_max-480.scss */
  #page .team-wrapper .member {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    /*image-wrap*/
  }
  /* line 24, sass/mobile/_max-480.scss */
  #page .team-wrapper .member .image-wrap {
    justify-content: center;
  }
  /* line 27, sass/mobile/_max-480.scss */
  #page .team-wrapper .member .theme-btn {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    align-self: center;
  }

  /*page*/
}
/******end 480***********/
@media (max-width: 400px) {
  /*-----------comment label all sections-----------*/
}
/******end 400***********/
