/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin,cyrillic);
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

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

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

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

/* line 234, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 420, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 497, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNovaT-Thin/ProximaNovaT-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaT-Thin/ProximaNovaT-Thin.otf") format("opentype"), url("../fonts/ProximaNovaT-Thin/ProximaNovaT-Thin.woff") format("woff"), url("../fonts/ProximaNovaT-Thin/ProximaNovaT-Thin.ttf") format("truetype"), url("../fonts/ProximaNovaT-Thin/ProximaNovaT-Thin.svg#ProximaNovaT-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Light/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light/ProximaNova-Light.otf") format("opentype"), url("../fonts/ProximaNova-Light/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light/ProximaNova-Light.ttf") format("truetype"), url("../fonts/ProximaNova-Light/ProximaNova-Light.svg#ProximaNova-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Regular/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Regular/ProximaNova-Regular.otf") format("opentype"), url("../fonts/ProximaNova-Regular/ProximaNova-Regular.woff") format("woff"), url("../fonts/ProximaNova-Regular/ProximaNova-Regular.ttf") format("truetype"), url("../fonts/ProximaNova-Regular/ProximaNova-Regular.svg#ProximaNova-Light") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Semibold/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Semibold/ProximaNova-Semibold.otf") format("opentype"), url("../fonts/ProximaNova-Semibold/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold/ProximaNova-Semibold.ttf") format("truetype"), url("../fonts/ProximaNova-Semibold/ProximaNova-Semibold.svg#ProximaNova-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'ProximaNova';
  src: url("../fonts/ProximaNova-Bold/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Bold/ProximaNova-Bold.otf") format("opentype"), url("../fonts/ProximaNova-Bold/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold/ProximaNova-Bold.ttf") format("truetype"), url("../fonts/ProximaNova-Bold/ProximaNova-Bold.svg#ProximaNova-Semibold") format("svg");
  font-weight: 700;
  font-style: normal;
}
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 123, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/* line 18, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 23, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal {
  text-align: center;
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
/* line 40, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal.modal-fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/* line 44, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
/* line 46, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal .close {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* line 59, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal .close:hover {
  color: black;
}
/* line 63, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal .close span {
  font-size: 80px;
  line-height: 40px;
  display: block;
}

/* line 70, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

/* line 76, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-dialog {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 10px;
  text-align: left;
}

/* line 85, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 97, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 106, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-backdrop.modal-fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 107, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 112, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 20, ../scss/bourbon/addons/_clearfix.scss */
.modal-header::after {
  clear: both;
  content: "";
  display: table;
}

/* line 118, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 123, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 130, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-body {
  position: relative;
}

/* line 135, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 20, ../scss/bourbon/addons/_clearfix.scss */
.modal-footer::after {
  clear: both;
  content: "";
  display: table;
}
/* line 142, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 147, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 151, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 157, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

/* // Scale up the modal
@media (min-width: $screen-sm-min) {
  // Automatically set modal's width for larger viewports
  .modal-dialog {
    width: $modal-md;
    margin: 30px auto;
  }
  .modal-content {
    @include box-shadow(0 5px 15px rgba(0,0,0,.5));
  }

  // Modal sizes
  .modal-sm { width: $modal-sm; }
}

@media (min-width: $screen-md-min) {
  .modal-lg { width: $modal-lg; }
}
 */
/* line 191, ../scss/includes/bootstrap-modal/scss/_modals.scss */
.modal-open .modal.enter-form-modal, .modal-open .modal.message-form-modal {
  overflow-y: hidden;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 17, ../scss/breakpoints/_base.scss */
html {
  height: 100%;
}

/* line 20, ../scss/breakpoints/_base.scss */
body {
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 100%;
  height: 100%;
  line-height: 1.5;
  line-height: normal;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1000px;
}

/*********************
LINK STYLES
*********************/
/* line 37, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #e61817;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 42, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #bc1413;
}
/* line 52, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 66, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 75, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 80, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 85, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 91, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 1.125em;
}

/* line 95, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 100, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 112, ../scss/breakpoints/_base.scss */
* {
  outline: none !important;
}

/* line 115, ../scss/breakpoints/_base.scss */
.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  min-width: 1000px;
}

/* line 121, ../scss/breakpoints/_base.scss */
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* line 126, ../scss/breakpoints/_base.scss */
.nowrap {
  white-space: nowrap;
}

/* line 131, ../scss/breakpoints/_base.scss */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 137, ../scss/breakpoints/_base.scss */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Header
-----------------------------------------------------------------------------*/
/* line 143, ../scss/breakpoints/_base.scss */
.header {
  height: 700px;
  background: url(../images/header-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
}

/* Middle
-----------------------------------------------------------------------------*/
/* line 153, ../scss/breakpoints/_base.scss */
.content {
  padding: 0 0 100px;
}

/* Footer
-----------------------------------------------------------------------------*/
/* line 159, ../scss/breakpoints/_base.scss */
.footer {
  margin-top: -100px;
  margin-bottom: 0;
  min-height: 100px;
  min-width: 1000px;
  position: relative;
  background: #0f1b4e;
}

/* line 173, ../scss/breakpoints/_base.scss */
.header .main-nav-wrap {
  position: absolute;
  z-index: 2;
  background: rgba(20, 27, 60, 0.6);
}

/* line 182, ../scss/breakpoints/_base.scss */
.main-nav-wrap {
  width: 100%;
}

/* line 185, ../scss/breakpoints/_base.scss */
.main-nav {
  display: table;
  height: 80px;
}
/* line 189, ../scss/breakpoints/_base.scss */
.main-nav > div {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

/* line 195, ../scss/breakpoints/_base.scss */
.main-nav-menu {
  font-size: 1rem;
  width: 100%;
  height: 100%;
}
/* line 200, ../scss/breakpoints/_base.scss */
.main-nav-menu ul {
  display: table;
  height: 100%;
  width: 100%;
  margin: 0;
}
/* line 206, ../scss/breakpoints/_base.scss */
.main-nav-menu ul > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 1%;
  white-space: nowrap;
}
/* line 214, ../scss/breakpoints/_base.scss */
.main-nav-menu a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* line 219, ../scss/breakpoints/_base.scss */
.main-nav-menu a:hover, .main-nav-menu a:focus {
  color: #738ee6;
}

/* line 225, ../scss/breakpoints/_base.scss */
.main-nav-links {
  font-size: 0;
  white-space: nowrap;
}
/* line 229, ../scss/breakpoints/_base.scss */
.main-nav-links > div {
  display: inline-block;
  font-size: 16px;
}

/* line 234, ../scss/breakpoints/_base.scss */
.main-nav-link-wrap {
  font-size: 1.125rem;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-left: 20px;
}
/* line 239, ../scss/breakpoints/_base.scss */
.main-nav-link-wrap a {
  text-align: center;
  line-height: 38px;
  display: block;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* line 249, ../scss/breakpoints/_base.scss */
.main-nav-link-wrap a:hover, .main-nav-link-wrap a:focus {
  background: #ffffff;
  color: #738ee6;
}

/* line 256, ../scss/breakpoints/_base.scss */
.main-nav-link {
  display: inline-block;
  position: relative;
}

/* line 261, ../scss/breakpoints/_base.scss */
.personal-account-link a {
  padding-right: 30px;
  padding-left: 30px;
}

/* line 266, ../scss/breakpoints/_base.scss */
.email-link a {
  width: 40px;
}
/* line 271, ../scss/breakpoints/_base.scss */
.email-link a:hover ~ .tooltip {
  opacity: 1;
  visibility: visible;
}

/* line 278, ../scss/breakpoints/_base.scss */
.tooltip {
  position: absolute;
  right: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 9px;
  margin-top: 21px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/* line 287, ../scss/breakpoints/_base.scss */
.tooltip-ar {
  position: absolute;
  top: 0;
  right: 12px;
  height: 0;
  width: 0;
  border-bottom: 9px solid rgba(0, 0, 0, 0.3);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}

/* line 293, ../scss/breakpoints/_base.scss */
.tooltip-content {
  color: #ffffff;
  padding: 20px 35px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

/* line 301, ../scss/breakpoints/_base.scss */
.header-center-block-wrap {
  height: 100%;
  text-align: center;
}
/* line 305, ../scss/breakpoints/_base.scss */
.header-center-block-wrap > .wrap {
  height: 100%;
}

/* line 309, ../scss/breakpoints/_base.scss */
.header-center-block-in {
  display: table;
  height: 100%;
  width: 100%;
}

/* line 314, ../scss/breakpoints/_base.scss */
.header-center-block {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

/* line 319, ../scss/breakpoints/_base.scss */
.header-logo {
  text-align: center;
}
/* line 323, ../scss/breakpoints/_base.scss */
.header-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* line 331, ../scss/breakpoints/_base.scss */
.header-slogan-wrap {
  padding: 0 21%;
}

/* line 334, ../scss/breakpoints/_base.scss */
.header-slogan {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 64px;
  margin-bottom: 55px;
  font-size: 1.5rem;
  line-height: 2.125rem;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* line 344, ../scss/breakpoints/_base.scss */
.header-tels-wrap {
  padding: 0 21%;
}

/* line 350, ../scss/breakpoints/_base.scss */
.header-tel {
  text-align: center;
  float: left;
  width: 50%;
}

/* line 355, ../scss/breakpoints/_base.scss */
.header-tel-num {
  font-size: 1.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}
/* line 361, ../scss/breakpoints/_base.scss */
.header-tel-num a {
  font-size: 1.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

/* line 368, ../scss/breakpoints/_base.scss */
.header-tel-txt {
  font-size: 1.125rem;
  color: #ffffff;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 382, ../scss/breakpoints/_base.scss */
.info-block-title {
  font-size: 2.125rem;
  line-height: 2.5rem;
  font-weight: bold;
  font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 388, ../scss/breakpoints/_base.scss */
.info-block-title.red {
  color: #e61817;
}
/* line 391, ../scss/breakpoints/_base.scss */
.info-block-title.blue {
  color: #0f1b4e;
}
/* line 394, ../scss/breakpoints/_base.scss */
.info-block-title.white {
  color: #ffffff;
}

/* line 401, ../scss/breakpoints/_base.scss */
.doctor-block {
  min-height: 800px;
  background: url(/images/doc_1.png) 5% 10% no-repeat #ececec;
  padding-top: 25px;
  padding-bottom: 90px;
  position: relative;
}

/* line 407, ../scss/breakpoints/_base.scss */
.doctor-block-content {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  float: right;
  width: 50%;
  padding-top: 40px;
  padding-right: 30px;
}

/* line 415, ../scss/breakpoints/_base.scss */
.doctor-block-slogan {
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-weight: bold;
}

/* line 421, ../scss/breakpoints/_base.scss */
.doctor-block-list {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 424, ../scss/breakpoints/_base.scss */
.doctor-block-left {
  float: left;
  width: 50%;
  padding-right: 25px;
}

/* line 429, ../scss/breakpoints/_base.scss */
.doctor-block-right {
  float: right;
  width: 50%;
  padding-right: 25px;
  padding-left: 30px;
}

/* line 434, ../scss/breakpoints/_base.scss */
.doctor-block-list-item {
  font-size: 0.875rem;
  padding-top: 25px;
}

/* line 438, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-table {
  display: table;
  width: 100%;
}

/* line 442, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-table-tr {
  display: table-row;
}

/* line 445, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-table-tr-td {
  display: table-cell;
  vertical-align: top;
}
/* line 449, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-table-tr-td:first-child {
  width: 1px;
  padding-right: 20px;
}

/* line 456, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-img {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  background: url(../images/sprite.png) 0 0 no-repeat;
}

/* line 464, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-title {
  font-size: 1.125rem;
  line-height: normal;
  color: #e61817;
}

/* line 469, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-descr {
  color: #000000;
}

/* line 472, ../scss/breakpoints/_base.scss */
.doctor-block-list-item-mark {
  color: #23293a;
}

/* line 475, ../scss/breakpoints/_base.scss */
.doctor-block-footer-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

/* line 481, ../scss/breakpoints/_base.scss */
.doctor-block-footer-in {
  padding-right: 40px;
  padding-left: 40px;
}

/* line 484, ../scss/breakpoints/_base.scss */
.doctor-block-footer {
  width: 100%;
  height: 90px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* line 489, ../scss/breakpoints/_base.scss */
.doctor-block-footer-table {
  display: table;
  height: 100%;
  width: 100%;
}

/* line 494, ../scss/breakpoints/_base.scss */
.doctor-block-footer-table-td {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
/* line 499, ../scss/breakpoints/_base.scss */
.doctor-block-footer-table-td:first-child {
  text-align: right;
  padding-right: 100px;
}

/* line 504, ../scss/breakpoints/_base.scss */
.doctor-block-footer-info-block {
  text-align: left;
  display: inline-block;
}

/* line 511, ../scss/breakpoints/_base.scss */
.doctor-block-footer-label {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: normal;
}

/* line 517, ../scss/breakpoints/_base.scss */
.doctor-block-footer-value {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.75rem;
  padding-left: 25px;
  color: #e61817;
}

/* line 526, ../scss/breakpoints/_base.scss */
.doctor-block-table thead {
  font-size: 1.2rem;
}
/* line 529, ../scss/breakpoints/_base.scss */
.doctor-block-table th,
.doctor-block-table td {
  padding: 10px;
  vertical-align: middle;
}
/* line 534, ../scss/breakpoints/_base.scss */
.doctor-block-table tfoot {
  font-size: 1.2rem;
}
/* line 540, ../scss/breakpoints/_base.scss */
.doctor-block-table tfoot td:first-child,
.doctor-block-table tfoot th:first-child {
  text-align: left;
  padding-left: 80px;
}

/* line 547, ../scss/breakpoints/_base.scss */
.tac {
  padding: 0 10px;
  display: block;
  text-align: center;
}

/* line 557, ../scss/breakpoints/_base.scss */
.doctor-list-block {
  padding-top: 80px;
  padding-bottom: 50px;
}

/* line 560, ../scss/breakpoints/_base.scss */
.doctor-list {
  overflow: hidden;
  padding-top: 25px;
}

/* line 564, ../scss/breakpoints/_base.scss */
.doctor-list-in {
  margin: 0 -50px;
}

/* line 567, ../scss/breakpoints/_base.scss */
.doctor-list-col {
  padding-right: 50px;
  padding-left: 50px;
  float: left;
  width: 50%;
}

/* line 572, ../scss/breakpoints/_base.scss */
.doctor-list-item {
  margin-bottom: 15px;
}

/* line 575, ../scss/breakpoints/_base.scss */
.doctor-list-item-in {
  display: table;
  width: 100%;
}
/* line 579, ../scss/breakpoints/_base.scss */
.doctor-list-item-in > div {
  display: table-cell;
  vertical-align: top;
}

/* line 585, ../scss/breakpoints/_base.scss */
.check-img {
  margin-top: 6px;
  margin-right: 11px;
  width: 14px;
  height: 11px;
  background: url(../images/check-img.png) 0 0 no-repeat;
}

/* line 592, ../scss/breakpoints/_base.scss */
.doctor-list-item-content {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

/* line 604, ../scss/breakpoints/_base.scss */
.how-use {
  background: url(../images/how-use-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  text-align: center;
}

/* line 609, ../scss/breakpoints/_base.scss */
.how-use-in {
  padding-top: 85px;
  position: relative;
  height: 600px;
}

/* line 614, ../scss/breakpoints/_base.scss */
.how-use-steps {
  padding-top: 90px;
  padding-bottom: 70px;
}

/* line 617, ../scss/breakpoints/_base.scss */
.how-use-steps-in {
  display: table;
  width: 100%;
  height: 100%;
}
/* line 622, ../scss/breakpoints/_base.scss */
.how-use-steps-in > div {
  width: 1%;
  height: 100%;
  display: table-cell;
  vertical-align: top;
}

/* line 636, ../scss/breakpoints/_base.scss */
.how-use-steps-item:first-child .how-use-steps-item-in:before {
  display: none;
}

/* line 642, ../scss/breakpoints/_base.scss */
.how-use-steps-item-in {
  height: 100%;
  position: relative;
}
/* line 646, ../scss/breakpoints/_base.scss */
.how-use-steps-item-in:before {
  bottom: 0;
  left: -15px;
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 57px;
  background: url(../images/ar.png) 0 0 no-repeat;
}

/* line 659, ../scss/breakpoints/_base.scss */
.how-use-step-img-in {
  display: table;
  width: 100%;
}

/* line 663, ../scss/breakpoints/_base.scss */
.how-use-step-img {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  height: 106px;
  text-align: center;
}
/* line 670, ../scss/breakpoints/_base.scss */
.how-use-step-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* line 678, ../scss/breakpoints/_base.scss */
.how-use-step-txt {
  padding-top: 40px;
  color: #ffffff;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 686, ../scss/breakpoints/_base.scss */
.how-use-notice {
  position: absolute;
  border-top: 1px solid white;
  width: 100%;
  padding-top: 23px;
  bottom: 25px;
  left: 0;
  color: #ffffff;
  opacity: 0.5;
}

/* line 701, ../scss/breakpoints/_base.scss */
.use-examples-wrap {
  background: #ececec;
  overflow: hidden;
  text-align: center;
}

/* line 706, ../scss/breakpoints/_base.scss */
.use-examples-in {
  position: relative;
}
/* line 709, ../scss/breakpoints/_base.scss */
.use-examples-in:before {
  position: absolute;
  top: -100px;
  right: 100%;
  margin: 0 -80px 0 0;
  z-index: 1;
  content: '';
  width: 472px;
  height: 472px;
  display: block;
  background-color: #ececec;
  background-image: -webkit-radial-gradient(50% 50%, closest-side circle, #ffffff, #ececec);
  background-image: radial-gradient( closest-side circle at 50% 50%, #ffffff, #ececec);
}

/* line 722, ../scss/breakpoints/_base.scss */
.use-examples {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 60px;
}

/* line 727, ../scss/breakpoints/_base.scss */
.use-examples-slider-wrap {
  padding-top: 70px;
  padding-right: 80px;
  padding-left: 80px;
  text-align: left;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
}

/* line 734, ../scss/breakpoints/_base.scss */
.use-examples-slider {
  position: relative;
}
/* line 737, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0;
  margin-top: -29px;
}
/* line 744, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav > div {
  font-size: 0;
  width: 32px;
  height: 58px;
  overflow: hidden;
  margin-right: -80px;
  margin-left: -80px;
}
/* line 751, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav > div:before {
  content: '';
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 760, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav .owl-prev {
  float: left;
}
/* line 763, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav .owl-prev:before {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  top: 8px;
  left: 8px;
}
/* line 770, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav .owl-next {
  float: right;
}
/* line 773, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-nav .owl-next:before {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  top: 8px;
  left: -18px;
}
/* line 782, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-dots {
  padding-top: 20px;
  text-align: center;
}
/* line 786, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-dots .owl-dot {
  margin-right: 9px;
  margin-left: 9px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* line 795, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-dots .owl-dot.active {
  background: #e61817;
}
/* line 798, ../scss/breakpoints/_base.scss */
.use-examples-slider .owl-dots .owl-dot:hover {
  background: #e61817;
}

/* line 817, ../scss/breakpoints/_base.scss */
.advantages {
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 75px;
  padding-bottom: 90px;
}

/* line 823, ../scss/breakpoints/_base.scss */
.advantages-in {
  padding-top: 28px;
}

/* line 826, ../scss/breakpoints/_base.scss */
.advantages-item {
  margin-bottom: 13px;
}

/* line 829, ../scss/breakpoints/_base.scss */
.advantages-item-in {
  display: table;
  width: 100%;
}
/* line 833, ../scss/breakpoints/_base.scss */
.advantages-item-in > div {
  display: table-cell;
  vertical-align: top;
}

/* line 838, ../scss/breakpoints/_base.scss */
.advantages-item-left {
  width: 340px;
}

/* line 842, ../scss/breakpoints/_base.scss */
.advantages-item-title {
  color: #e61817;
  display: table;
  width: 100%;
}
/* line 847, ../scss/breakpoints/_base.scss */
.advantages-item-title > div {
  display: table-cell;
}

/* line 851, ../scss/breakpoints/_base.scss */
.advantages-item-title-txt {
  width: 1px;
  white-space: nowrap;
  vertical-align: top;
  padding-right: 5px;
}

/* line 857, ../scss/breakpoints/_base.scss */
.advantages-item-title-border {
  vertical-align: bottom;
  padding-right: 5px;
}
/* line 861, ../scss/breakpoints/_base.scss */
.advantages-item-title-border:before {
  content: '';
  display: block;
  border-bottom: 1px solid #d3d5d9;
  margin-top: -4px;
}

/* line 873, ../scss/breakpoints/_base.scss */
.footer-bg-elem {
  border-top: 5px solid #e61817;
}

/* line 876, ../scss/breakpoints/_base.scss */
.footer-bg-elem-in {
  position: absolute;
  top: -21px;
  right: 45px;
  width: 35px;
  height: 37px;
  background: url(../images/footer-bg-elem.png) no-repeat;
}

/* line 886, ../scss/breakpoints/_base.scss */
.footer-top {
  margin-top: 55px;
  margin-bottom: 60px;
}

/* line 889, ../scss/breakpoints/_base.scss */
.footer-top-in {
  display: table;
  width: 100%;
}
/* line 893, ../scss/breakpoints/_base.scss */
.footer-top-in > div {
  display: table-cell;
  vertical-align: middle;
}

/* line 901, ../scss/breakpoints/_base.scss */
.footer-top-in-right {
  width: 1px;
  white-space: nowrap;
}

/* line 905, ../scss/breakpoints/_base.scss */
.footer-logo {
  width: 235px;
  height: 55px;
}
/* line 910, ../scss/breakpoints/_base.scss */
.footer-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* line 918, ../scss/breakpoints/_base.scss */
.footer-tels {
  display: table;
  width: 100%;
}
/* line 922, ../scss/breakpoints/_base.scss */
.footer-tels > div {
  display: table-cell;
  vertical-align: middle;
}

/* line 927, ../scss/breakpoints/_base.scss */
.footer-tel {
  padding-left: 70px;
}

/* line 930, ../scss/breakpoints/_base.scss */
.footer-tel-num {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #ffffff;
}
/* line 935, ../scss/breakpoints/_base.scss */
.footer-tel-num a {
  text-decoration: none;
  color: #ffffff;
}

/* line 940, ../scss/breakpoints/_base.scss */
.footer-tel-txt {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
}

/* line 948, ../scss/breakpoints/_base.scss */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  margin-top: 60px;
}
/* line 952, ../scss/breakpoints/_base.scss */
.footer-bottom .tooltip {
  bottom: 100%;
  padding-top: 0;
  padding-bottom: 9px;
  margin-top: 0;
  margin-bottom: 21px;
}
/* line 957, ../scss/breakpoints/_base.scss */
.footer-bottom .tooltip-ar {
  margin-top: -9px;
  top: 100%;
  border-bottom: 0;
  height: 0;
  width: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(0, 0, 0, 0.3);
}

/* line 1052, ../scss/breakpoints/_base.scss */
.popup-title {
  font-size: 2.125rem;
  line-height: 2.5rem;
  color: #e61817;
  font-weight: bold;
}

/* line 1058, ../scss/breakpoints/_base.scss */
.enter-form {
  background: #ffffff;
  width: 600px;
  margin: 0 auto;
  padding-top: 73px;
  text-align: center;
}
/* line 1068, ../scss/breakpoints/_base.scss */
.enter-form .text-wrap input {
  text-align: center;
}
/* line 1073, ../scss/breakpoints/_base.scss */
.enter-form .form-in {
  width: 300px;
  margin: 0 auto;
}

/* line 1078, ../scss/breakpoints/_base.scss */
.form {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #23293a;
}

/* line 1082, ../scss/breakpoints/_base.scss */
.field-wrap {
  margin-top: 35px;
  margin-bottom: 35px;
}
/* line 1085, ../scss/breakpoints/_base.scss */
.field-wrap label {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

/* line 1092, ../scss/breakpoints/_base.scss */
.text-wrap .field {
  border: 1px solid #c8c8c8;
  line-height: 56px;
  box-sizing: border-box;
  font-size: 1.625rem;
  padding-right: 10px;
  padding-left: 10px;
  display: block;
  width: 100%;
}

/* line 1104, ../scss/breakpoints/_base.scss */
.textarea-wrap .field {
  border: 1px solid #c8c8c8;
  box-sizing: border-box;
  min-height: 160px;
  font-size: 1.625rem;
  padding: 5px 10px;
  display: block;
  width: 100%;
  resize: none;
}

/* line 1117, ../scss/breakpoints/_base.scss */
.error .field {
  border: 1px solid #fd9f9f;
  background: #fff6f6;
}

/* line 1125, ../scss/breakpoints/_base.scss */
.processing-form .submit-wrap .submit {
  display: none;
}
/* line 1128, ../scss/breakpoints/_base.scss */
.processing-form .submit-wrap .processing {
  display: block;
}
/* line 1133, ../scss/breakpoints/_base.scss */
.submit-wrap .submit {
  display: block;
}
/* line 1136, ../scss/breakpoints/_base.scss */
.submit-wrap .processing {
  display: none;
}
/* line 1140, ../scss/breakpoints/_base.scss */
.submit-wrap .field-block {
  display: block;
}
/* line 1144, ../scss/breakpoints/_base.scss */
.submit-wrap input,
.submit-wrap button {
  cursor: pointer;
  font-size: 1.875rem;
  height: 60px;
  background: #e61817;
  padding: 0;
  margin: 0;
  border: none;
  color: #ffffff;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* line 1158, ../scss/breakpoints/_base.scss */
.submit-wrap input:hover,
.submit-wrap button:hover {
  background: rgba(230, 24, 23, 0.5);
}

/* line 1164, ../scss/breakpoints/_base.scss */
.field-block-wrap {
  position: relative;
  font-size: 0;
  text-align: center;
  white-space: nowrap;
  margin-top: 5px;
}
/* line 1171, ../scss/breakpoints/_base.scss */
.field-block-wrap > div {
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}

/* line 1177, ../scss/breakpoints/_base.scss */
.field-block {
  width: 100%;
}

/* line 1180, ../scss/breakpoints/_base.scss */
.error-message-wrap {
  color: #ffffff;
  background: #fd9f9f;
  white-space: normal;
  position: relative;
  margin-top: -100%;
  margin-bottom: -100%;
  margin-left: 20px;
}
/* line 1187, ../scss/breakpoints/_base.scss */
.error-message-wrap:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  margin-left: -7px;
  height: 0;
  width: 0;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fd9f9f;
  border-top: 8px solid transparent;
}

/* line 1196, ../scss/breakpoints/_base.scss */
.error-message-in {
  display: table;
  height: 100%;
  min-height: 60px;
  width: 100%;
}

/* line 1202, ../scss/breakpoints/_base.scss */
.error-message {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

/* line 1207, ../scss/breakpoints/_base.scss */
.error-message-block {
  font-size: 1rem;
  padding: 5px 15px;
  background: #fd9f9f;
}

/* line 1216, ../scss/breakpoints/_base.scss */
.error-form-message-wrap {
  background: #fee2e2;
  position: relative;
}
/* line 1220, ../scss/breakpoints/_base.scss */
.error-form-message-wrap:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-top: 0;
  margin-left: -8px;
  height: 0;
  width: 0;
  border-bottom: 10px solid #fee2e2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

/* line 1230, ../scss/breakpoints/_base.scss */
.error-form-message-in {
  display: table;
  height: 60px;
  width: 100%;
}

/* line 1235, ../scss/breakpoints/_base.scss */
.error-form-message {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

/* line 1241, ../scss/breakpoints/_base.scss */
.error-form-message-block {
  color: #e61817;
  text-align: center;
  background: #fee2e2;
  font-size: 1rem;
  padding: 5px 15px;
}

/* line 1249, ../scss/breakpoints/_base.scss */
.success-form-message-wrap {
  display: none;
}

/* line 1259, ../scss/breakpoints/_base.scss */
.success-form-message-block {
  color: #3fa700;
  font-size: 1.875rem;
  line-height: 1.5rem;
  margin-top: 35px;
  padding-bottom: 35px;
}

/* line 1273, ../scss/breakpoints/_base.scss */
.message-form {
  background: #ffffff;
  width: 800px;
  margin: 0 auto;
  padding-top: 73px;
  text-align: center;
}
/* line 1280, ../scss/breakpoints/_base.scss */
.message-form .form-in {
  width: 680px;
  margin: 0 auto;
  text-align: left;
}
/* line 1288, ../scss/breakpoints/_base.scss */
.message-form .field-block-wrap > div {
  display: block;
}
/* line 1292, ../scss/breakpoints/_base.scss */
.message-form .error-message-wrap {
  margin: 20px 0 0;
}
/* line 1295, ../scss/breakpoints/_base.scss */
.message-form .error-message-wrap:before {
  left: 50%;
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-left: -8px;
  height: 0;
  width: 0;
  border-bottom: 8px solid #fd9f9f;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
/* line 1303, ../scss/breakpoints/_base.scss */
.message-form .submit-wrap {
  padding-right: 56%;
}

/* line 1309, ../scss/breakpoints/_base.scss */
.main-form-wrap {
  position: relative;
}
/* line 1314, ../scss/breakpoints/_base.scss */
.main-form-wrap.success:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
/* line 1326, ../scss/breakpoints/_base.scss */
.main-form-wrap.success .submit-wrap {
  display: none;
}
/* line 1330, ../scss/breakpoints/_base.scss */
.main-form-wrap.success .success-form-message-wrap {
  display: block;
  position: relative;
  z-index: 2;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
