@charset "UTF-8";
@import "http://fonts.googleapis.com/css?family=Titillium+Web:400,700";
@font-face {
  font-family: 'Regular';
  font-style: normal;
  font-weight: normal;
  src: url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/regular/regular-book-webfont.woff?t=1495200219437') format('woff');
}
@font-face {
  font-family: 'Regular';
  font-style: normal;
  font-weight: bold;
  src: url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/regular/regular-bold-webfont.woff?t=1495200219437') format('woff');
}
/*
# Perkins
design & develop the web faster
## There are some things you should know about me, Sir.
- I do my best at following Conventions over Configurations
- I force `IE=edge` for lastest IE engine, and use Chrome Frame if installed
- My `viewport` by default without user zoom and support for iPhone 5 bigger screen
- I am a `apple-mobile-web-app-capable` for fullscreen on mobile
- I am truely `handheldfriendly`
- They made me `mobileoptimized`
- I see `cleartype` on Mobile IE

## By design
- My root font size is `font-size: 62.5%; so that I can express rems as pixels ej. 1.6rem = 16px
- You can edit any variable in your my style (app.less by default)
- They setup my base font size at 16px `@p-basefont: 1.6rem;`
- Also my unitless line-height is 1.2 `@p-baseline: 1.2;`
- You have access to `@p-white`, `@p-black`, `@p-background-color`, `@p-link-color` and `@p-link-hover` color variables

*/
.h-menu {
  margin: 0;
  padding: 0;
  float: left;
}
.h-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.h-menu li a {
  display: block;
  padding: 5px 10px;
  margin: 0 10px 0 0;
  text-decoration: none;
}
.v-menu {
  margin: 0;
  padding: 0;
  float: none;
}
.v-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  float: none;
}
.v-menu li a {
  display: block;
  padding: 10px 5px 5px;
  margin: 0 0 -1px 0;
  text-decoration: none;
}
.top0{
  margin-top: 0px !important;
}
.top40{
  margin-top: 40px !important;
}
.top60{
  margin-top: 60px !important;
}
.left8{
  margin-left:8%;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.full {
  width: 100%;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.btn {
  display: inline-block;
  padding: 0.7em 1em;
  color: #444444;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: 3px 0;
  background: #e6e6e6;
  background: #d9d9d9 none;
  background-size: 100% 100%;
  background: none, -webkit-linear-gradient(top, #e6e6e6, #d9d9d9);
  background: none, linear-gradient(180deg, #e6e6e6, #d9d9d9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  border-radius: 0.2em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.40), 0 1px 0 rgba(255,255,255,0.40) inset;
  font-weight: 300;
}
.btn:hover {
  background: #cdcdcd;
  background: #e6e6e6 none;
  background-size: 100% 100%;
  background: none, -webkit-linear-gradient(top, #cdcdcd, #e6e6e6);
  background: none, linear-gradient(180deg, #cdcdcd, #e6e6e6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.40), 0 2px 5px rgba(32,32,32,0.20) inset;
  color: #444444;
  text-decoration: none;
}
/*
### CSS Reset by Eric Meyer
`@use-reset: true`
*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
  text-align: left;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol,
ul {
  list-style: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
/*
### Core Structure
This component add basic general styles for links, blockquote, mark, paragraphs, pre, hr, br, headings, abbr, code, del, strong, em, small, sets a natural box model usign `box-sizing: border-box;`, set the base font size at 16px usign rem, force a better type render, adds a small transition to links,
`@use-core-structure: true`
*/
/* Apply a natural box model to all elements as suggested by Jon Neal */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}
body {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: "Titillium Web", sans-serif;
  color: #3e3e3e;
  margin: 0;
  padding: 0;
  font-smooth: always;
}
a {
  border: none;
  color: #2980b9;
  text-decoration: none;
  text-transform: none;
}
a img {
  border: none;
  cursor: pointer;
  outline: none;
}
a:active,
a:hover,
a:visited {
  cursor: pointer;
  outline: none;
}
a:hover {
  color: #20638f;
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
blockquote {
  line-height: 1.5;
  margin: 1.5em 0.5 2em 1.5em;
  padding: 0.5em 1em;
}
mark {
  background: #FFFCE1;
  padding: 0 5px;
}
p {
  font-weight: normal;
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 1.2;
}
pre {
  font-family: mono-space, monospace;
  line-height: 1.2;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
  padding: 1.3em;
  font-weight: 300;
  background: #383A3F;
  color: #99D2F3;
  overflow: auto;
}
pre code {
  background: transparent;
  padding: 0;
}
hr {
  background: #919191;
  color: #919191;
  border: none;
  clear: both;
  float: none;
  height: 1px;
  margin: 0 0 1.45em;
  width: 100%;
}
br {
  margin: 0 0 1.45em;
  width: 100%;
  height: 1px;
  float: none;
  overflow: hidden;
  clear: both;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.2em 0;
  font-family: "Regular", sans-serif;
  font-weight: bold;
}
h1 {
  font-size: 30px;
  font-size: 3rem;
}
h2 {
  font-size: 28px;
  font-size: 2.8rem;
}
h3 {
  font-size: 25px;
  font-size: 2.5rem;
}
h4 {
  font-size: 21px;
  font-size: 2.1rem;
}
h5 {
  font-size: 18px;
  font-size: 1.8rem;
}
h6 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
}
abbr {
  border-bottom: 1px dotted #919191;
  font-style: italic;
}
code {
  display: inline-block;
  padding: 0.4rem 0.5rem;
  font-family: mono-space, monospace;
  background: #f8f8f8;
  font-size: 90%;
}
del {
  text-decoration: line-through;
}
em {
  font-style: italic;
  font-weight: normal;
}
small {
  font-size: 75%;
}
strong {
  font-weight: bold;
}
ul {
  list-style-position: inside;
  list-style-type: disc;
  margin: 0 1.5em 1.5em 0;
}
ul ul {
  list-style-type: square;
}
ul ul ul {
  list-style-type: circle;
}
ul li {
  margin: 0 0 0.5em 0.85em;
}
ul li ul {
  margin: 0 1.5em 0 0;
}
ol {
  list-style-position: inside;
  list-style-type: decimal;
  margin: 1.0em 0.5em 0.5em 0.5em;
}
ol li {
  margin: 0em 0.5em 0.5em 0.5em;
}
ol li ul {
  margin: 0 1.5em 0 0;
}
li,
label {
  font-size: 1.6rem;
  line-height: 1.2;
  list-style-type: none;
}
li ol li,
li ul li {
  font-size: 1.6rem;
  line-height: 1.2;
}
dl {
  margin: 0 0 1.5em 0;
}
dl dt {
  margin: 0px 0px 0px 10px;
  padding-bottom: 5px;
}
dl dd {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0px 0px 0px 20px;
  padding-bottom: 5px;
}
input,
select,
textarea {
  border: 1px solid #919191;
  display: block;
  padding: 1rem;
  font-family: "Titillium Web", sans-serif;
}
select {
  padding: 0.9rem;
  max-width:92%;
}
input:focus,
select:focus,
textarea:focus {
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  border: 1px solid #2a2a2a;
  outline: none;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 1rem;
}
label {
  font-size: 1.6rem;
  font-size: 13px;
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
  cursor: pointer;
  padding: 0.2rem 0 0.2rem;
  letter-spacing: 0.05rem;
}
label input {
  display: inline-block;
}
input,
textarea,
select {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.2;
}
/*
### Tables & tables style
I think of myself as a never opinionated framework so tables styles are disabled by default so you can have full control
`@use-tables: false`
`@use-tables-styles: false`
*/
/*
### Notables
Responsive data tabulation on smallers screens (below 960 by default)
default: `@use-notable: false;`
1. Create a container element with the class `notable` then an ul with the class `th`
2. Inside the `ul.th` type just headings for the table
3. `tr` is replaced by `dl`
4. `th` is replaced by `dt`
5. `td` is replaced by `dd`
_Usage_
```html
<div class="notable">
  <ul class="th">
    <li>Author</li>
    <li>Code</li>
    <li>City</li>
    <li>Comment</li>
    <li>Action</li>
  </ul>
  <dl>
    <dt>Author</dt>
    <dd>Diego Wolf</dd>
    <dt>Code</dt>
    <dd>#989238</dd>
    <dt>City</dt>
    <dd>Concepcion, Chile</dd>
    <dt>Comment</dt>
    <dd>Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</dd>
    <dt>Action</dt>
    <dd><a href="javascript:void(0);" class="btn sbtn">Edit</a></dd>
  </dl>
</div>
```
*/
/*
### Class Grid
This grid is based on the same class names as bootstrap and fundation in order to make your life easier
default: `@use-class-grid: false`
*/
/*
### Feedback
Use when you need to inform your users import `_feedback.less` that includes 6 styles and a mixin for creating more
_HTML Usage_
```html
<p class="notice"><b>Notice</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
```
<p class="notice"><b>Notice</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
There is also
<p class="information"><b>Information</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
<p class="error"><b>Error</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
<p class="success"><b>Success</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
<p class="warning"><b>Warning</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
<p class="critical"><b>Critital</b> Duis aute irure dolor in reprehenderit <a href="javascript:void(0);">in voluptate velit esse cillum</a> dolore eu fugiat nulla pariatur.</p>
_Mixin Usage_
```less
.p-feedback([background-color], [text-color], [border], [padding]);
.p-feedback(@p-black, @p-white, 5px solid white, 5rem);
```
*/
/*
### Flexbox LESS mixins
Based upon gist created by jayj https://gist.github.com/jayj/4012969
Modified defaults for Perkins "Conventions over Configuration"
`@use-flex: false`
*/
/*
  ### Flexbox Display
  _Applies to: flex containers_
  ```less
  .display-flex(flex | inline-flex);
  ```
  */
/*
  ### Flex Flow Direction
  _Applies to: flex containers_
  ```less
  .flex-direction(row | row-reverse | column | column-reverse);
  ```
  */
/*
  ### Flex Direction and Wrap
  _Applies to: flex containers_
  ```less
  .flex-flow(flex-direction | flex-wrap);
  ```
  */
/*
  ### Flex Direction plus Wrap (FF +22)
  _Applies to: flex containers_
  ```less
  .flex-flow-direction(row | row-reverse | column | column-reverse);
  ```
  */
/*
  ### Flex Line Wrapping
  _Applies to: flex containers_
  ```less
  .flex-wrap(nowrap | wrap | wrap-reverse);
  ```
  */
/*
  ### The 'flex' shorthand
  _Applies to: flex items_
  ```less
  .flex(<grow> <shirnk> <width [auto | 0 | none]>);
  ```
  _example_
  ```example
  .flex(1 1 auto);
  ```
  _this set the flex item as grow true, shrink true, automatic width_
  */
/*
  ### Display Order
  _Applies to: flex items_
  ```less
  .flex-order(<integer>);
  ```
  */
/*
  ### Flex grow factor
  _Applies to: flex items_
  ```less
  .flex-grow(<number>)
  ```
  */
/*
  ### Flex shrink
  _Applies to: flex itemsink factor_
  ```less
  .flex-shrink(<number>)
  ```
  */
/*
  _Applies to: flex itemsnitial main size of the flex item_
  ```less
  .flex-basis(<width>);
  ```
  */
/*
  ### Axis Alignment
  _Applies to: flex containers_
  ```less
  .justify-content(flex-start | flex-end | center | space-between | space-around);
  ```
  */
/*
  ### Packing Flex Lines
  _Applies to: multi-line flex containers_
  ```less
  .align-content(flex-start | flex-end | center | space-between | space-around | stretch
  ```
  */
/*
  ### Cross-axis Alignment
  _Applies to: flex containers_
  ```less
  .align-items(flex-start | flex-end | center | baseline | stretch);
  ```
  */
/*
  ### Cross-axis Alignment
  _Applies to: flex items_
  ```less
  .align-self(auto | flex-start | flex-end | center | baseline | stretch);
  ```
  */
/*
### Perkins Forms (flexbox based)
_inpired by RMSforms http://rmsjr.com_
*/
/*
All of the modifier classes should be applied to form uls and are used to present the structure:
```html
<ul class="form">
  <li>
    <label></label>
    <input/>
  </li>
</ul>
```
Each letter represented in the class name represents the orientation of the li - label - input elements respectively.
* h = horizontal block element
* v = vertical block element
* i = inline element
*/
/*
for example, the class:.hvv
* [LI:Horizontal block element]
* [LABEL:Vertical block element]
* [INPUT:Vertical block element]
*/
/*
  ### Flexbox Display
  _Applies to: flex containers_
  ```less
  .display-flex(flex | inline-flex);
  ```
  */
/*
  ### Flex Flow Direction
  _Applies to: flex containers_
  ```less
  .flex-direction(row | row-reverse | column | column-reverse);
  ```
  */
/*
  ### Flex Direction and Wrap
  _Applies to: flex containers_
  ```less
  .flex-flow(flex-direction | flex-wrap);
  ```
  */
/*
  ### Flex Direction plus Wrap (FF +22)
  _Applies to: flex containers_
  ```less
  .flex-flow-direction(row | row-reverse | column | column-reverse);
  ```
  */
/*
  ### Flex Line Wrapping
  _Applies to: flex containers_
  ```less
  .flex-wrap(nowrap | wrap | wrap-reverse);
  ```
  */
/*
  ### The 'flex' shorthand
  _Applies to: flex items_
  ```less
  .flex(<grow> <shirnk> <width [auto | 0 | none]>);
  ```
  _example_
  ```example
  .flex(1 1 auto);
  ```
  _this set the flex item as grow true, shrink true, automatic width_
  */
/*
  ### Display Order
  _Applies to: flex items_
  ```less
  .flex-order(<integer>);
  ```
  */
/*
  ### Flex grow factor
  _Applies to: flex items_
  ```less
  .flex-grow(<number>)
  ```
  */
/*
  ### Flex shrink
  _Applies to: flex itemsink factor_
  ```less
  .flex-shrink(<number>)
  ```
  */
/*
  _Applies to: flex itemsnitial main size of the flex item_
  ```less
  .flex-basis(<width>);
  ```
  */
/*
  ### Axis Alignment
  _Applies to: flex containers_
  ```less
  .justify-content(flex-start | flex-end | center | space-between | space-around);
  ```
  */
/*
  ### Packing Flex Lines
  _Applies to: multi-line flex containers_
  ```less
  .align-content(flex-start | flex-end | center | space-between | space-around | stretch
  ```
  */
/*
  ### Cross-axis Alignment
  _Applies to: flex containers_
  ```less
  .align-items(flex-start | flex-end | center | baseline | stretch);
  ```
  */
/*
  ### Cross-axis Alignment
  _Applies to: flex items_
  ```less
  .align-self(auto | flex-start | flex-end | center | baseline | stretch);
  ```
  */
.form {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.form li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  -moz-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.form label {
  overflow: hidden;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-box-flex: 1 1 auto;
  box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 30%;
}
.form input,
.form select,
.form textarea {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-box-flex: 1 1 auto;
  box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 70%;
}
.form.tar label {
  text-align: right;
  padding-right: 0.5rem;
}
.form li[data-span="1"] {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.form li[data-span="2"] {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -ms-box-flex: 2;
  box-flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.form li[data-span="3"] {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -ms-box-flex: 3;
  box-flex: 3;
  -webkit-flex: 3;
  -moz-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.form input[type="checkbox"],
.form input[type="radio"] {
  width: auto;
}
.vvv li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.vvv label,
.vvv input,
.vvv select,
.vvv textarea {
  width: auto;
}
.vvv label {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hvv {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  -moz-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.hvv li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column wrap;
  -moz-flex-direction: column wrap;
  -ms-flex-direction: column wrap;
  flex-direction: column wrap;
  -webkit-flex-flow: column wrap;
  -moz-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}
.hvv label {
  width: 100%;
}
.hvv label,
.hvv input,
.hvv select,
.hvv textarea {
  width: 100%;
}
.hii {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  -moz-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
}
.hii li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row wrap;
  -moz-flex-direction: row wrap;
  -ms-flex-direction: row wrap;
  flex-direction: row wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.hii label {
  padding: 0.4rem;
}
.form.hii label {
  width: auto;
}
@font-face {
  font-family: 'icons';
  src: url("https://cdn2.hubspot.net/hubfs/2401884/new/vendor/perkins/icons/icons.eot?t=1495200219437");
  src: url("https://cdn2.hubspot.net/hubfs/2401884/new/vendor/perkins/icons/icons.eot?#iefix&t=1495200219437") format('embedded-opentype'), url("https://cdn2.hubspot.net/hubfs/2401884/new/vendor/perkins/icons/icons.woff?t=1495200219437") format('woff'), url("https://cdn2.hubspot.net/hubfs/2401884/new/vendor/perkins/icons/icons.ttf?t=1495200219437") format('truetype'), url("https://cdn2.hubspot.net/hubfs/2401884/new/vendor/perkins/icons/icons.svg#icons?t=1495200219437") format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: 'icons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  opacity: 0.8;
  line-height: 1;
  margin-left: 0.2em;
}
.fr:before {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.fl:before {
  display: inline-block;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.icon-at:before {
  content: '\40';
}
/* '@' */
.icon-star:before {
  content: '\391';
}
/* 'Α' */
.icon-star-half:before {
  content: '\392';
}
/* 'Β' */
.icon-move:before {
  content: '\5e7';
}
/* 'ק' */
.icon-left:before {
  content: '\2190';
}
/* '←' */
.icon-up:before {
  content: '\2191';
}
/* '↑' */
.icon-right:before {
  content: '\2192';
}
/* '→' */
.icon-down:before {
  content: '\2193';
}
/* '↓' */
.icon-erase:before {
  content: '\232b';
}
/* '⌫' */
.icon-flag:before {
  content: '\2691';
}
/* '⚑' */
.icon-tools:before {
  content: '\2692';
}
/* '⚒' */
.icon-cog:before {
  content: '\2699';
}
/* '⚙' */
.icon-flash:before {
  content: '\26a1';
}
/* '⚡' */
.icon-basket:before {
  content: '\300e';
}
/* '『' */
.icon-chart-bar:before {
  content: '\3010';
}
/* '【' */
.icon-chart-line:before {
  content: '\3011';
}
/* '】' */
.icon-location:before {
  content: '\302e';
}
/* '〮' */
.icon-calendar:before {
  content: '\3313';
}
/* '㌓' */
.icon-apple:before {
  content: '\3700';
}
/* '㜀' */
.icon-xbox:before {
  content: '\3701';
}
/* '㜁' */
.icon-playstation:before {
  content: '\3702';
}
/* '㜂' */
.icon-steam:before {
  content: '\3703';
}
/* '㜃' */
.icon-baby:before {
  content: '\3704';
}
/* '㜄' */
.icon-tag:before {
  content: '\370c';
}
/* '㜌' */
.icon-amazon:before {
  content: '\370d';
}
/* '㜍' */
.icon-windows:before {
  content: '\370e';
}
/* '㜎' */
.icon-android:before {
  content: '\370f';
}
/* '㜏' */
.icon-share:before {
  content: '\373c';
}
/* '㜼' */
.icon-resize-full:before {
  content: '\3744';
}
/* '㝄' */
.icon-resize-small:before {
  content: '\3746';
}
/* '㝆' */
.icon-arrows-cw:before {
  content: '\3760';
}
/* '㝠' */
.icon-bold:before {
  content: '\377a';
}
/* '㝺' */
.icon-clipboard:before {
  content: '\37a5';
}
/* '㞥' */
.icon-spin-alt:before {
  content: '\3802';
}
/* '㠂' */
.icon-code:before {
  content: '\3803';
}
/* '㠃' */
.icon-gift:before {
  content: '\3804';
}
/* '㠄' */
.icon-truck:before {
  content: '\3806';
}
/* '㠆' */
.icon-shield:before {
  content: '\3807';
}
/* '㠇' */
.icon-css3:before {
  content: '\3809';
}
/* '㠉' */
.icon-html5:before {
  content: '\380a';
}
/* '㠊' */
.icon-puzzle:before {
  content: '\380b';
}
/* '㠋' */
.icon-search:before {
  content: '\380c';
}
/* '㠌' */
.icon-fire:before {
  content: '\380d';
}
/* '㠍' */
.icon-resize-vertical:before {
  content: '\3b0c';
}
/* '㬌' */
.icon-resize-horizontal:before {
  content: '\3b0d';
}
/* '㬍' */
.icon-music:before {
  content: '\e000';
}
/* '' */
.icon-heart:before {
  content: '\e001';
}
/* '' */
.icon-user:before {
  content: '\e003';
}
/* '' */
.icon-users:before {
  content: '\e004';
}
/* '' */
.icon-user-add:before {
  content: '\e005';
}
/* '' */
.icon-play:before {
  content: '\e006';
}
/* '' */
.icon-picture:before {
  content: '\e007';
}
/* '' */
.icon-camera:before {
  content: '\e008';
}
/* '' */
.icon-th:before {
  content: '\e009';
}
/* '' */
.icon-th-list:before {
  content: '\e00a';
}
/* '' */
.icon-ok:before {
  content: '\e00b';
}
/* '' */
.icon-cancel-circle:before {
  content: '\e00d';
}
/* '' */
.icon-plus-circle:before {
  content: '\e00f';
}
/* '' */
.icon-minus-circle:before {
  content: '\e011';
}
/* '' */
.icon-help-circle:before {
  content: '\e013';
}
/* '' */
.icon-info-circle:before {
  content: '\e014';
}
/* '' */
.icon-home:before {
  content: '\e015';
}
/* '' */
.icon-link:before {
  content: '\e016';
}
/* '' */
.icon-attach:before {
  content: '\e017';
}
/* '' */
.icon-lock:before {
  content: '\e018';
}
/* '' */
.icon-eye:before {
  content: '\e019';
}
/* '' */
.icon-download:before {
  content: '\e01a';
}
/* '' */
.icon-upload:before {
  content: '\e01b';
}
/* '' */
.icon-reply:before {
  content: '\e01c';
}
/* '' */
.icon-reply-all:before {
  content: '\e01d';
}
/* '' */
.icon-forward:before {
  content: '\e01e';
}
/* '' */
.icon-quote-right:before {
  content: '\e01f';
}
/* '' */
.icon-pencil:before {
  content: '\e021';
}
/* '' */
.icon-comment:before {
  content: '\e023';
}
/* '' */
.icon-chat:before {
  content: '\e024';
}
/* '' */
.icon-vcard:before {
  content: '\e025';
}
/* '' */
.icon-map:before {
  content: '\e026';
}
/* '' */
.icon-direction:before {
  content: '\e027';
}
/* '' */
.icon-compass:before {
  content: '\e028';
}
/* '' */
.icon-archive:before {
  content: '\e029';
}
/* '' */
.icon-rss:before {
  content: '\e02a';
}
/* '' */
.icon-arrow-combo:before {
  content: '\e02b';
}
/* '' */
.icon-top-list:before {
  content: '\e02c';
}
/* '' */
.icon-globe:before {
  content: '\e02d';
}
/* '' */
.icon-facebook:before {
  content: '\e030';
}
/* '' */
.icon-vimeo:before {
  content: '\e031';
}
/* '' */
.icon-tumblr:before {
  content: '\e032';
}
/* '' */
.icon-bookmarks:before {
  content: '\e034';
}
/* '' */
.icon-bookmark:before {
  content: '\e035';
}
/* '' */
.icon-thumbs-up:before {
  content: '\e036';
}
/* '' */
.icon-thumbs-down:before {
  content: '\e037';
}
/* '' */
.icon-target:before {
  content: '\e038';
}
/* '' */
.icon-pinterest:before {
  content: '\e039';
}
/* '' */
.icon-clock:before {
  content: '\e03a';
}
/* '' */
.icon-youtube:before {
  content: '\e03b';
}
/* '' */
.icon-twitter:before {
  content: '\e03d';
}
/* '' */
.icon-trash:before {
  content: '\e729';
}
/* '' */
.icon-database:before {
  content: '\e754';
}
/* '' */
.icon-down-open:before {
  content: '\e75c';
}
/* '' */
.icon-left-open:before {
  content: '\e75d';
}
/* '' */
.icon-right-open:before {
  content: '\e75e';
}
/* '' */
.icon-up-open:before {
  content: '\e75f';
}
/* '' */
.icon-down-open-big:before {
  content: '\e764';
}
/* '' */
.icon-left-open-big:before {
  content: '\e765';
}
/* '' */
.icon-right-open-big:before {
  content: '\e766';
}
/* '' */
.icon-up-open-big:before {
  content: '\e767';
}
/* '' */
.icon-align-left:before {
  content: '\e77e';
}
/* '' */
.icon-align-center:before {
  content: '\e77f';
}
/* '' */
.icon-align-right:before {
  content: '\e780';
}
/* '' */
.icon-align-justify:before {
  content: '\e781';
}
/* '' */
.icon-list:before {
  content: '\e782';
}
/* '' */
.icon-indent-left:before {
  content: '\e783';
}
/* '' */
.icon-indent-right:before {
  content: '\e784';
}
/* '' */
.icon-help:before {
  content: '\e788';
}
/* '' */
.icon-dot:before {
  content: '\e78d';
}
/* '' */
.icon-off:before {
  content: '\e78e';
}
/* '' */
.icon-flow-cascade:before {
  content: '\e790';
}
/* '' */
.icon-flow-branch:before {
  content: '\e791';
}
/* '' */
.icon-flow-tree:before {
  content: '\e792';
}
/* '' */
.icon-flow-line:before {
  content: '\e793';
}
/* '' */
.icon-gauge:before {
  content: '\e7a2';
}
/* '' */
.icon-chart-pie:before {
  content: '\e800';
}
/* '' */
.icon-spin:before {
  content: '\e801';
}
/* '' */
.icon-italic:before {
  content: '\e802';
}
/* '' */
.icon-attention:before {
  content: '\e803';
}
/* '' */
.icon-dollar:before {
  content: '\e804';
}
/* '' */
.icon-plus:before {
  content: '\e805';
}
/* '' */
.icon-minus:before {
  content: '\e806';
}
/* '' */
.icon-cancel:before {
  content: '\e807';
}
/* '' */
.icon-money:before {
  content: '\e808';
}
/* '' */
.icon-edit:before {
  content: '\e809';
}
/* '' */
.icon-info:before {
  content: '\e80a';
}
/* '' */
.icon-help-alt:before {
  content: '\e80b';
}
/* '' */
.icon-down-micro:before {
  content: '\e80c';
}
/* '' */
.icon-up-micro:before {
  content: '\e80d';
}
/* '' */
.icon-ok-circled:before {
  content: '\e80e';
}
/* '' */
.icon-bell:before {
  content: '\e80f';
}
/* '' */
.icon-award:before {
  content: '\e810';
}
/* '' */
.icon-college:before {
  content: '\e811';
}
/* '' */
.icon-police:before {
  content: '\e812';
}
/* '' */
.icon-pitch:before {
  content: '\e813';
}
/* '' */
.icon-cross:before {
  content: '\e814';
}
/* '' */
.icon-mail:before {
  content: '\e815';
}
/* '' */
.icon-gplus:before {
  content: '\e816';
}
/* '' */
.icon-school:before {
  content: '\e817';
}
/* '' */
.icon-toilet:before {
  content: '\e818';
}
/* '' */
.icon-blind:before {
  content: '\e819';
}
/* '' */
.icon-accessibility:before {
  content: '\e81a';
}
/* '' */
.icon-down-circled:before {
  content: '\e81b';
}
/* '' */
.icon-ticket:before {
  content: '\e81c';
}
/* '' */
.icon-male:before {
  content: '\e81d';
}
/* '' */
.icon-female:before {
  content: '\e81e';
}
/* '' */
.icon-flight:before {
  content: '\e81f';
}
/* '' */
.icon-tint:before {
  content: '\e820';
}
/* '' */
.icon-up-circled:before {
  content: '\e821';
}
/* '' */
.icon-left-circled:before {
  content: '\e822';
}
/* '' */
.icon-right-circled:before {
  content: '\e823';
}
/* '' */
.icon-rocket:before {
  content: '\e824';
}
/* '' */
.icon-export:before {
  content: '\e825';
}
/* '' */
.icon-cemetery:before {
  content: '\e826';
}
/* '' */
.icon-cloud:before {
  content: '\e827';
}
/* '' */
.icon-tags:before {
  content: '\e828';
}
/* '' */
.icon-video:before {
  content: '\e829';
}
/* '' */
.icon-pause:before {
  content: '\e82a';
}
/* '' */
.icon-stop:before {
  content: '\e82b';
}
/* '' */
.icon-doc:before {
  content: '\e82c';
}
/* '' */
.icon-doc-text:before {
  content: '\e82d';
}
/* '' */
.icon-grid:before {
  content: '\e82e';
}
/* '' */
.icon-phone:before {
  content: '\e82f';
}
/* '' */
.icon-linux:before {
  content: '\e830';
}
/* '' */
.icon-ubuntu:before {
  content: '\e831';
}
/* '' */
.icon-undo:before {
  content: '\e833';
}
/* '' */
.icon-terminal:before {
  content: '\e834';
}
/* '' */
.icon-sitemap:before {
  content: '\f0e8';
}
/* '' */
.icon-github:before {
  content: '\f300';
}
/* '' */
.icon-linkedin:before {
  content: '\f312';
}
/* '' */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #ffffff url('https://cdn2.hubspot.net/hubfs/2401884/new/images/loader.gif?t=1495200219437') center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/slick/slick.eot?t=1495200219437');
  src: url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/slick/slick.eot?#iefix&t=1495200219437') format('embedded-opentype'), url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/slick/slick.woff?t=1495200219437') format('woff'), url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/slick/slick.ttf?t=1495200219437') format('truetype'), url('https://cdn2.hubspot.net/hubfs/2401884/new/vendor/typography/slick/slick.svg#slick?t=1495200219437') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
.slick-prev[dir="rtl"] {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
.slick-prev:before[dir="rtl"] {
  content: "→";
}
.slick-next {
  right: -25px;
}
.slick-next[dir="rtl"] {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
.slick-next:before[dir="rtl"] {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
.m {
  display: block;
  z-index:9999;
  position: relative;
}
.d {
  display: none;
}
html,
body {
  height: 100%;
}
body {
  background: #212121;
  position: relative;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
p {
  line-height: 1.4;
  margin: 1em 0;
}
#wrap {
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  width: 100%;
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  z-index: 5000;
}
#wrap .intro {
  padding: 0;
}
#wrap .intro .logo {
  top: 100px;
}
#wrap .intro nav {
  display: none;
}
#wrap .empresa {
  padding: 40px 20px 100px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}
#wrap .empresa small {
  display: block;
}
#wrap .empresa:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8) url("https://cdn2.hubspot.net/hubfs/2401884/new/images/pattern-alt.png?t=1495200219437");
}
#wrap .empresa p {
  color: #14222c;
  padding: 10px 0;
  position: relative;
}
#wrap .empresa h1 {
  font-size: 25px;
  font-size: 2.5rem;
  color: #14222c;
  padding: 0;
  max-width: 500px;
  line-height: 1.2;
  position: relative;
  z-index: 500;
  font-weight: normal;
  /*May*/
  padding: 18px;
}
span.white{
    color: white;
}

h1.dark-background{
  background: rgba(20, 34, 44, 0.9);
  color: #ffffff !important;
}
b.white{
    color: #ffffff !important;
}
#wrap .empresa h1 span {
  font-size: 20px;
  font-size: 2rem;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
#wrap .empresa h1 b {
  font-weight: bold;
  display: block;
  font-size: 40px;
  font-size: 4rem;
  margin: 5px 0 10px;
  line-height: 0.9;
  color: #14222c;
  /*May*/
  
  text-transform: uppercase;
}
#wrap .empresa .by {
  position: relative;
  margin: 10px;
  padding: 10px;
  width: 200px;
}
#wrap .empresa .by p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  /*May*/
  font-size: 1.7rem;
}
#wrap .empresa .by small {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Regular", sans-serif;
}
#wrap .empresa .by a {
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  /*May*/
  font-size: 1.4rem;
  margin-top: 10px;
}
#wrap .empresa .by:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  border-top: 1px solid #14222c;
  border-left: 1px solid #14222c;
}
#wrap .empresa .by:after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  right: -5px;
  border-top: 1px solid #14222c;
  border-right: 1px solid #14222c;
}
#wrap .empresa .by span.border:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: -5px;
  border-bottom: 1px solid #14222c;
  border-left: 1px solid #14222c;
}
#wrap .empresa .by span.border:after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  border-bottom: 1px solid #14222c;
  border-right: 1px solid #14222c;
}
#wrap .empresa.index {
  /*May*/
  background: #dccabc url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg_2.jpg?t=1495200219437") no-repeat 75% center;
  background-size: cover;
}
#wrap .empresa.features {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-features-cover-md.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}
#wrap .empresa.business {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-business-cover-md.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}
#wrap .empresa.requestquote {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-quote-cover-md.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}
#wrap .empresa.pricing {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-pricing-cover.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}
#wrap .empresa.download {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-download-cover.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}
#wrap .empresa.report {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/bg-report-cover.jpg?t=1495200219437") no-repeat;
  background-position: right center;
  background-size: cover;
}

#wrap .download-grid .download-card {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
#wrap .download-grid .download-card h3 {
    font-weight: normal;
    text-transform: none;
}
#wrap .download-grid .download-card h3 span:before {
    margin: 0;
}
#wrap .download-grid .download-card .btn {
    display: inline-block;
}
#wrap .empresa.support {
  background: #2980b9;
  color: #ffffff;
}
#wrap .empresa.support hr {
  margin: 15px 0;
  clear: both;
  background: #ffffff;
}
#wrap .empresa.support .column {
  -webkit-box-flex: 1 1 50%;
  -moz-box-flex: 1 1 50%;
  -ms-box-flex: 1 1 50%;
  box-flex: 1 1 50%;
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
#wrap .empresa.support h1,
#wrap .empresa.support p,
#wrap .empresa.support h1 b {
  color: #ffffff;
}
#wrap .empresa.support .bubble blockquote:before {
  color: #ffffff;
}
#wrap .btn {
  position: relative;
}
.totheright{
  margin: 220px 0px 0px 0px !important;
  position:absolute !important;
  right:8%;
  z-index: 9999;
}
.above{
  z-index: 9999;
}
#wrap.active {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  -webkit-transform: translate3d(270px, 0, 0);
  transform: translate3d(270px, 0, 0);
}
.logo {
  width: 200px;
  display: block;
  margin: -50px auto 30px;
}
.logo img {
  max-width: 100%;
}
#menu {
  position: fixed;
  top: 50px;
  bottom: 0;
  left: 0;
  z-index: 500;
  max-width: 220px;
}
#menu a {
  padding: 20px;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.3px;
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.4s;
  -webkit-transform: translate3d(0, 500px, 0);
  transform: translate3d(0, 500px, 0);
  font-family: "Regular", sans-serif;
  opacity: 0;
}
#menu a.strong {
  font-weight: bold;
  color: #2980b9;
}
#menu a:nth-child(2) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.6s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.6s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.6s;
  -webkit-transform: translate3d(0, 1000px, 0);
  transform: translate3d(0, 1000px, 0);
}
#menu a:nth-child(3) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.8s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.8s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 0.8s;
  -webkit-transform: translate3d(0, 1500px, 0);
  transform: translate3d(0, 1500px, 0);
}
#menu a:nth-child(4) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 1s;
  -webkit-transform: translate3d(0, 2000px, 0);
  transform: translate3d(0, 2000px, 0);
}
#menu a:nth-child(5) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.2s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.2s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.2s;
  -webkit-transform: translate3d(0, 2500px, 0);
  transform: translate3d(0, 2500px, 0);
}
#menu a:nth-child(6) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.4s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.4s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.4s;
  -webkit-transform: translate3d(0, 3000px, 0);
  transform: translate3d(0, 3000px, 0);
}
#menu a:nth-child(7) {
  -webkit-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.6s;
  -o-transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.6s;
  transition: all cubic-bezier(0.7, 0, 0.3, 1) 1.6s;
  -webkit-transform: translate3d(0, 3500px, 0);
  transform: translate3d(0, 3500px, 0);
}
#menu.active a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.whitequote{
    color: #3e3e3e !important;
}
.btn {
  display: inline-block;
  padding: 15px;
  background: transparent;
  border-radius: 2px;
  margin: 5px 0;
  color: #ffffff;
  background: #2980b9;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-family: "Regular", sans-serif;
  text-shadow: none;
}
.btn small {
  display: block;
}
.btn:hover {
  color: #040c12;
  background: #2980b9;
  border-color: #164666;
}
.btn.alt {
  background: transparent;
  border: 1px solid #14222c;
  box-shadow: 0 0 0 transparent;
  color: #14222c;
  font-size: 20px;
  font-size: 2rem;
}
.btn.alt:hover {
  background: #2980b9;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn.spin {
  color: #ffffff;
  background: #14222c;
}
.btn.cta {
  font-size: 30px;
  font-size: 3rem;
  text-align: left;
  margin-left: 20px;
}
.focus {
  position: relative;
}
.focus .inner {
  max-width: 90%;
  margin: 0 auto -140px;
  position: relative;
  top: -100px;
}
.focus .main-content {
  position: relative;
  top: -40px;
  background: #ffffff;
}
.focus .main-content,
.focus .side-content {
  padding: 30px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.focus .main-content img,
.focus .side-content img {
  max-width: 100%;
}
.focus .side-content {
  padding: 0;
}
.focus .titulo {
  display: inline-block;
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: #14222c;
  padding: 2px 0;
}
.focus h4 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.focus .subtitulo {
  font-family: "Titillium Web", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  margin: 30px 0 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.titulo-contraste {
  display: block;
  position: relative;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 2px 0;
  text-align: center;
}
.action-menu {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 7000;
  padding: 10px 5px;
  border-radius: 2px;
  background: #14222c;
  color: #ffffff;
}
.action-menu.d {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 20px;
  bottom: auto;
  left: 20px;
}
.content {
  padding: 60px 5%;
}
.item-title {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  font-family: "Regular", sans-serif;
  display: block;
  padding: 20px 20px 80px;
  background: rgba(20, 34, 44, 0) none;
  background-size: 100% 100%;
  background: none, -webkit-linear-gradient(top, #000000, rgba(20, 34, 44, 0));
  background: none, linear-gradient(180deg, #000000, rgba(20, 34, 44, 0));
}
#end {
  position: relative;
  z-index: 1000;
  background: #525252;
  color: #ffffff;
}
#end ul {
  margin: 0;
}
#end .logo-end {
  width: 200px;
}
#end .logo-end img {
  width: 100%;
}
#end h4 {
  text-transform: uppercase;
  text-indent: 15px;
}
#end a {
  text-indent: 15px;
  color: rgba(255, 255, 255, 0.6);
}
#end a:hover {
  text-decoration: underline;
}
#end .h-menu {
  margin-bottom: 15px;
}
#end .h-menu li a {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  text-indent: 0;
  margin: 5px;
}
#end small {
  font-family: "Regular", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
  padding: 5px;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  text-indent: 15px;
}
#end small a {
  color: #2980b9;
}
#end small a:hover {
  color: rgba(20, 34, 44, 0.4);
}
.calc {
  background: #f79647;
  color: #ffffff;
  padding: 20px;
  max-width: 320px;
  margin: 0 auto;
}
.calc h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  opacity: 0.3;
}
.calc input {
  background: #f79647;
  border: 1px solid #14222c;
  color: #ffffff;
  font-weight: bold;
  font-family: "Regular", sans-serif;
}
.calc small {
  font-weight: bold;
  font-size: 9px;
  font-size: 0.9rem;
  display: block;
  color: #999999;
}
.calc small:after {
  content: ")";
}
.calc small:before {
  content: "(";
}
.calc .results {
  text-align: center;
  padding: 20px;
}
.calc .results small {
  text-align: center;
}
.calc .results small:before,
.calc .results small:after {
  display: none;
}
.calc .results span {
  font-size: 12px;
  font-size: 1.2rem;
}
.calc .reset {
  display: inline-block;
  padding: 25px 10px;
  float: right;
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
}
.calc .reset:hover {
  color: #ffffff;
}
.servicios {
  list-style: none;
  padding: 0;
  margin: 0;
}
.servicios li {
  width: 100%;
  height: 350px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  padding: 20px;
  margin: 0;
}
.servicios strong {
  text-transform: uppercase;
  color: #f79647;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  display: block;
}
.servicios strong:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 5px;
  background: #14222c;
}
.servicios p {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 20px;
}
.logo-c {
  max-width: 90%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 30px 0;
}
.full-content {
  margin: 0 auto;
  padding: 20px 20px !mportant;
}
.full-content .inner {
  max-width: 590px;
  margin: 0 auto;
}
.full-content .inner80 {
  max-width: 80%;
  margin: 0 auto;
}
.full-content .inner90 {
  max-width: 90%;
  margin: 0 auto;
}
.full-content .top40c {
  margin-top:40px;
}
.full-content .inner80grey {
  width: 90%;
  max-width: 940px;
  margin: -70px auto 0px auto;
  background-color: #f2f2f2;
  padding: 30px;
}
.full-content .grid-sections .panel {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.full-content .grid-sections .data {
  padding: 20px;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-order: 2;
  order: 2;
}
.full-content .grid-sections figure.report-figure {
  -webkit-order: 1;
  -moz-order: 1;
  -ms-order: 1;
  order: 1;
  width: 150px;
  border-radius: 100%;
  margin: 0;
  position: relative;
  z-index: 500;
}
.full-content .grid-sections figure.report-figure img {
  width: 90%;
  max-width: 90%;
}
img.max50{
  max-width: 50% !important;
  margin: 0px 18%;
}
.full-content .grid-sections figure.report-slice {
  width: 100%;
}
.full-content .grid-sections figure.report-slice canvas {
  width: 100%;
}
.full-content .panel {
  width: 100%;
}
.full-content .panel .data {
  background: #f4f5f9 30% none;
  background-size: 100% 100%;
  background: none, -webkit-linear-gradient(top, rgba(244, 245, 249, 0) 0, #f4f5f9 30%);
  background: none, linear-gradient(180deg, rgba(244, 245, 249, 0) 0, #f4f5f9 30%);
  color: #14222c;
}
.full-content .panel .data h3 {
  line-height: 1;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 3rem;
}
.full-content .panel .data p {
  line-height: 1.3;
  letter-spacing: 0.05rem;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Regular", sans-serif;
}
max80{
    max-width: 80%;
}
.grid {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.grid .column {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-box-flex: 1 1 auto;
  box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.grid .column h3 {
  text-transform: uppercase;
}
.grid .column p {
  font-size: 18px;
  font-size: 1.8rem;
}
.grid .column a {
  display: block;
  margin: 10px 0;
}
.titulo {
  display: block;
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: #14222c;
}
.titulo small {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
.grey {
  display: block;
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: #777 !important;
}
.bajada {
  margin: 0 auto;
  padding: 10px 0 40px;
  font-size: 20px;
  font-size: 2rem;
}
.feature-image {
  width: 100%;
}
.feature-image img {
  width: 100%;
}
#privacy,
.full-content-alt {
  background: #252525;
  max-width: 100%;
  padding: 50px 20px;
  position: relative;
  z-index: 1000;
}
#privacy p,
.full-content-alt p,
#privacy .titulo,
.full-content-alt .titulo {
  color: #ffffff;
}
#privacy .btn,
.full-content-alt .btn {
  border: 1px solid #ffffff;
  color: #ffffff;
}
#privacy .btn:hover,
.full-content-alt .btn:hover {
  background: #2980b9;
  color: #ffffff;
  border: 1px solid transparent;
}
.supported-os {
  width: 100%;
  clear: both;
  display: block;
  margin: 10px 0;
}
.supported-os li {
  font-size: 20px;
  font-size: 2rem;
  color: #14222c;
}
#socialproof {
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/socialproof.jpg?t=1495200219437") repeat center center;
  background-size: cover;
  height: 500px;
  position: relative;
}
#socialproof:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 34, 44, 0.2) url("https://cdn2.hubspot.net/hubfs/2401884/new/images/pattern.png?t=1495200219437");
  background-size: 100% 100%;
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/pattern.png?t=1495200219437"), -webkit-linear-gradient(left, rgba(20, 34, 44, 0.8), rgba(20, 34, 44, 0.2));
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/pattern.png?t=1495200219437"), linear-gradient(90deg, rgba(20, 34, 44, 0.8), rgba(20, 34, 44, 0.2));
  z-index: 500;
}
#socialproof .inner {
  position: relative;
  z-index: 1000;
  margin: 0;
}
#socialproof .inner .titulo {
  color: #ffffff;
}
.feature {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.feature .desc {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-box-flex: 1 1 auto;
  box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px 20px 0px 20px;
}
.feature .desc h3 {
  color: #14222c;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
}
.feature .desc p {
  margin: 0 0 20px;
  padding: 0;
  font-size: 20px;
  font-size: 2rem;
}
.feature figure {
  -webkit-box-flex: 0 0 100px;
  -moz-box-flex: 0 0 100px;
  -ms-box-flex: 0 0 100px;
  box-flex: 0 0 100px;
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  width: 100px;
  margin: 0 15px 0 20px;
}
.feature figure img {
  max-width: 100%;
}
#report {
  background: #F4F5F9;
  position: relative;
  -webkit-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  transition: all ease 300ms;
}
#report .inner {
  max-width: auto;
  margin: 0;
  background: rgba(244, 245, 249, 0) none;
  background-size: 100% 100%;
  background: none, -webkit-linear-gradient(top, #f4f5f9 50%, rgba(244, 245, 249, 0));
  background: none, linear-gradient(180deg, #f4f5f9 50%, rgba(244, 245, 249, 0));
}
#report:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/grid-inv.svg?t=1495200219437");
  z-index: 500;
  opacity: 0.40;
  pointer-events: none;
}
.whitebg{
    background: none !important;
}
.flex60{
    -webkit-box-flex: 0 0 60% !important;
    -moz-box-flex: 0 0 60% !important;
    -ms-box-flex: 0 0 60% !important;
    box-flex: 0 0 60% !important;
    -webkit-flex: 0 0 60% !important;
    -moz-flex: 0 0 60% !important;
    -ms-flex: 0 0 60% !important;
    flex: 0 0 60% !important;
}
.flex40{
    -webkit-box-flex: 0 0 40% !important;
    -moz-box-flex: 0 0 40% !important;
    -ms-box-flex: 0 0 40% !important;
    box-flex: 0 0 40% !important;
    -webkit-flex: 0 0 40% !important;
    -moz-flex: 0 0 40% !important;
    -ms-flex: 0 0 40% !important;
    flex: 0 0 40% !important;
}
#features {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
#features .full-inner {
  position: relative;
  z-index: 1000;
}
canvas#stars,
#map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
canvas#stars:after,
#map:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5000;
  pointer-events: none;
  background: url('https://cdn2.hubspot.net/hubfs/2401884/new/images/grid.svg?t=1495200219437');
}
.quotes {
  position: relative;
  z-index: 5000;
}
.bubble blockquote {
  margin: 10px 10px 0;
  padding: 10px;
  position: relative;
  border: none;
  color: #fff;
  font-family: "Regular", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 1px;
  text-indent: 40px;
}
.bubble blockquote:before,
.bubble blockquote:after {
  content: "\201C";
  position: absolute;
  font-size: 100px;
  padding: 10px;
  line-height: 1;
  color: #2980b9;
}
.bubble blockquote:before {
  top: -25px;
  left: -40px;
}
.bubble blockquote:after {
  content: "\201D";
  right: 0;
  bottom: -50px;
  display: none;
}
.bubble div {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  margin: 0 0 0 60px;
  margin-bottom: 10px;
  display: none;
}
.bubble cite {
  display: block;
  text-align: right;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ffffff;
}
.slick-dots li button:before {
  color: #ffffff;
}
.slick-dots li.slick-active button:before {
  color: #ffffff;
}
.device-report {
  max-height: 500px;
  margin-top: 8%;
  overflow: hidden;
}
.device-report img {
  height: 100%;
}
figure.standalone {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
figure.standalone img {
  max-width: 100%;
}
img.35percent {
  width: 35%;
}
#features-view .grid .column {
  margin: 10px 0;
  position: relative;
  -webkit-box-flex: 1 1 33.333333%;
  -moz-box-flex: 1 1 33.333333%;
  -ms-box-flex: 1 1 33.333333%;
  box-flex: 1 1 33.333333%;
  -webkit-flex: 1 1 33.333333%;
  -moz-flex: 1 1 33.333333%;
  -ms-flex: 1 1 33.333333%;
  flex: 1 1 33.333333%;
  padding: 0 20px 80px;
}
#features-view .grid .column .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90%;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#features-faq h1 {
  margin-bottom: 60px;
}
#features-faq .column:first-child {
  border-right: 1px solid rgba(20, 34, 44, 0.2);
}
#features-faq dl {
  max-width: 70%;
}
#features-faq dt {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Regular", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}
#features-faq dd {
  text-transform: uppercase;
  font-family: "Regular", sans-serif;
  margin-bottom: 30px;
}
.plans .plan {
  max-width: 300px;
  margin: 10px auto 30px auto;
  padding-bottom: 80px;
  position: relative;
}
.plans .plan header {
  padding: 20px;
  color: #ffffff;
}
.plans .plan header p {
  margin: 0;
  /*text-transform: uppercase;*/
  font-family: "Regular", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  /*font-weight: bold;*/
  line-height: 1;
  padding: 10px;
  background: rgba(30, 3, 30, 0.1);
  text-align: center;
  min-height: 60px;
}
.plans .plan header h1{
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 20px;
}
.plans .plan header h3{
    font-size: 4rem;
    text-align: center;
}
.plans .plan.personal {
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
}
.plans .plan.personal header {
  background: #447395;
}
.plans .plan.free {
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
}
.plans .plan.free header {
  background: #777;
}
.plans .plan.home {
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
}
.plans .plan.home header {
  background: #14222c;
}
.plans .plan.custom {
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
}
.plans .plan.custom header {
  background: #f79748;
}

.plans .plan.report {
  background: #fff;
}
.plans .plan.report header.scene01 {
  background: url(https://cdn2.hubspot.net/hubfs/2401884/new/images/report_img01.svg?t=1495200219437) no-repeat 0 0;
  background-repeat: no-repeat;
  height: 320px;
}
.plans .plan.report header.scene02 {
  background: url(https://cdn2.hubspot.net/hubfs/2401884/new/images/report_img02.svg?t=1495200219437) no-repeat 0 0;
  background-repeat: no-repeat;
  height: 320px;
}
.plans .plan.report header.scene03 {
  background: url(https://cdn2.hubspot.net/hubfs/2401884/new/images/report_img03.svg?t=1495200219437) no-repeat 0 0;
  background-repeat: no-repeat;
  height: 320px;
}
.plans .plan.report header.scene04 {
  background: url(https://cdn2.hubspot.net/hubfs/2401884/new/images/report_img04.svg?t=1495200219437) no-repeat 0 0;
  background-repeat: no-repeat;
  height: 320px;
}
.plans .plan.report header h3{
  font-size: 2.5rem;
  text-align: center;
  color: #525252;
  line-height: 1.1em;
  margin-top: 250px;
}

.plans .plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plans .plan ul li {
  list-style: none;
  font-family: "Regular", sans-serif;
  font-size: 1.7rem;
  color: #525252;
  border-bottom: 1px solid #e7e7e7;
  margin: 0;
  padding: 0.4em 0.85em;
}
.plans .plan ul li:first-child{
    padding-top: 30px;
}
.plans .plan .btn {
  position: absolute !important;
  width: 70%;
  max-width: 70%;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.plans .plan.custom .btn {
  background: #f79748;
}
.plans .plan.home .btn {
  background: #14222c;
}
.plans .plan.home .btn:hover {
  color: #525252;
}
.plans .plan.personal .btn {
  background: #447395;
}
li.beggin-section{
    border-top: 1px solid #bbbbbb;
}

/*Ribbons*/
#note {
    position: fixed;
    font-family:"Titillium",sans-serif;color: #fff !important;
    padding: 9px 0px 8px;
    z-index: 6001;
    top: 57px;
    left: 0;
    right: 0;
    background:#f79748 ;
    text-align: center;
    line-height: 2.5;
    overflow: hidden; 
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow:    0 0 5px black;
    box-shadow:         0 0 5px black;
    z-index: 9999;
}
.cssanimations.csstransforms #note {
    -webkit-transform: translateY(-50px);
    -webkit-animation: slideDown 2.5s 1.0s 1 ease forwards;
    -moz-transform:    translateY(-50px);
    -moz-animation:    slideDown 10.5s 1.0s 1 ease forwards;
}
.tamvan {
    display: inline-block;
    font-family: inherit;
    outline: 0px none !important;
    border-radius: 2px;
    color: #fff !important;
    background: rgba(30, 3, 30, 0.1);
    white-space: nowrap;
    padding: 5px 8px !important;
    line-height: 1.4 !important;
    position: relative;
}
#note a{
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  font-size: .9em;
}
.tamvan:hover{
	background: #f79748;
}
#note:hover{
    background:#525252;
}
#close {
    position: absolute;
    right: 10px;
    top: 10px;      
    height: 30px;
    width: 30px;
    cursor: pointer;
    line-height: 35px;
    font-family: 'Titillium Web';
    font-size: 1.2em !important;
}
/*Tooltips*/
a.tooltips {
  position: relative;
  display: inline;
  text-decoration: underline;
}
a.tooltips span {
  position: absolute;
  width:140px;
  color: #FFFFFF;
  font-size: 14px;
  background: #447395;
  height: auto;
  line-height: 1.5rem;
  padding: 20px;
  visibility: hidden;
  border-radius: 0px;
}
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 30%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #447395;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
  left: 50%;
  margin-left: -26px;
  z-index: 999;
}



.hs-button {
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  font-size:16px;
  font-weight: normal;
  padding:20px 24px;
  text-decoration:none;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-family: "Regular", sans-serif;
  text-shadow: none;
  border: 1px solid;
  -webkit-transition: border-color .3s,background-color .3s;
  transition: border-color .3s,background-color .3s;
  background: #2980b9;
  border-color: #164666;
  color: #fff;
}
.hs_submit {
    text-align:center;
    margin: 40px auto 50px auto;
}
@media (min-width: 960px) {
  .plans {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
    #wrap .download-grid .column {
        -webkit-flex: 1 1 50%;
        -moz-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        width: 50%;
    }
    .supported-os li{
      font-size: 20px;
      font-size: 2rem;
      color: #ffffff;
    }

.whitequote{
  color: white !important;
}

.btn.cta {
  font-size: 30px;
  font-size: 3rem;
  text-align: left;
  margin-left: 0px;
}
.btn.cta.orange{
    background-color: #f79647;
}

.feature .desc {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -ms-box-flex: 1 1 auto;
  box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 30px 0px;
}

.paddingtop0{
    padding-top: 0px !important;
}
.paddingtop20{
    padding-top: 20px !important;
}
  .plans .plan {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -ms-box-flex: 1 1 auto;
    box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 10px 5px 30px;
  }
  .full-content .top40c {
    margin-top:0px;
  }
  .logo {
    width: 320px;
  }
  .m {
    display: none;
  }
  .d {
    display: block;
  }
  .grid {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .grid .column:nth-child(2n) {
    margin: 0 15px;
    max-width: 50%;
  }
  #report {
    background-size: 50%;
    padding-bottom: 50px;
  }
  #report .report-diagram {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  #report .report-diagram .device-report {
    -webkit-box-flex: 0 1 30%;
    -moz-box-flex: 0 1 30%;
    -ms-box-flex: 0 1 30%;
    box-flex: 0 1 30%;
    -webkit-flex: 0 1 30%;
    -moz-flex: 0 1 30%;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
  }
  #report .report-diagram .device-report img {
    max-width: 100%;
  }
  #report .report-diagram .grid-sections {
    -webkit-box-flex: 1 1 70%;
    -moz-box-flex: 1 1 70%;
    -ms-box-flex: 1 1 70%;
    box-flex: 1 1 70%;
    -webkit-flex: 1 1 70%;
    -moz-flex: 1 1 70%;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
  }
  #report .inner p.bajada {
    max-width: 600px;
    text-align: left;
    margin: 0;
  }
  #report .panel .data {
    position: relative;
  }
  #report .panel .data:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 94%;
    height: 1px;
    background: #cccccc;
  }
  #report .grid-sections {
    margin: 0 auto;
  }
  #report .grid-sections .panel {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  #report .grid-sections .panel .data {
    -webkit-box-flex: 1 1 80%;
    -moz-box-flex: 1 1 80%;
    -ms-box-flex: 1 1 80%;
    box-flex: 1 1 80%;
    -webkit-flex: 1 1 80%;
    -moz-flex: 1 1 80%;
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
  }
  #report .grid-sections .panel figure.report-figure {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start;
    position: relative;
    -webkit-box-flex: 0 0 20%;
    -moz-box-flex: 0 0 20%;
    -ms-box-flex: 0 0 20%;
    box-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    -moz-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
  #report .grid-sections .panel figure.report-slice {
    background: url("https://cdn2.hubspot.net/hubfs/2401884/new/images/steve.svg?t=1495200219437");
    background-repeat: no-repeat;
    background-size: cover;
  }
  #map {
    width: 30%;
    position: fixed;
    left: auto;
    right: 0;
  }
  #map .inner {
    padding: 20px;
    position: absolute;
    top: 75px;
    left: 20px;
    z-index: 10000;
  }
  #map .inner .dataTitle {
    color: #ffffff;
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: uppercase;
  }
  #map .inner .dataNum {
    font-size: 50px;
    font-size: 5rem;
    color: #ffffff;
  }
  #wrap {
    margin: 0;
  }
  #wrap section {
    padding: 60px 85px;
  }
  #wrap > header {
    min-height: 400px;
  }
  #wrap .intro {
    padding: 0;
    position: relative;
  }
  #wrap .intro nav {
    background: #ffffff;
    position: absolute;
    width: 100%;
    padding: 0 1% 0 5%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    position: fixed;
    bottom: auto;
    top: 0;
    z-index: 20000;
    height: 57px;
  }
  #wrap .intro nav .space {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -ms-box-flex: 1 1 auto;
    box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  #wrap .intro nav a {
    -webkit-box-flex: 0 0 auto;
    -moz-box-flex: 0 0 auto;
    -ms-box-flex: 0 0 auto;
    box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-family: "Regular", sans-serif;
    color: #14222c;
    padding: 22px 8px 0;
    margin: 0;
    font-weight: bold;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  #wrap .intro nav a.strong {
    font-weight: bold;
    color: #2980b9;
  }
  #wrap .intro nav a:hover {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #2980b9;
  }
  #wrap .intro nav a.btn {
    position: relative;
    padding: 10px 15px;
    margin: 7px 0 13px;
    border: 1px solid #14222c;
  }
  #wrap .intro nav a.btn:hover {
    color: #ffffff;
  }
  #wrap .intro nav a.btn.business-btn {
    color: #ffffff;
    background: #14222c;
    border: 1px solid #345872;
  }
  #wrap .intro nav a.btn.paint {
    color: #ffffff;
    background: #2980b9;
    border: 1px solid #164666;
  }
  #wrap .intro nav .nav-group {
    -webkit-box-flex: 1 1 33.333333%;
    -moz-box-flex: 1 1 33.333333%;
    -ms-box-flex: 1 1 33.333333%;
    box-flex: 1 1 33.333333%;
    -webkit-flex: 1 1 33.333333%;
    -moz-flex: 1 1 33.333333%;
    -ms-flex: 1 1 33.333333%;
    flex: 1 1 33.333333%;
  }
  #wrap .intro nav .nav-group:last-child a {
    float: right;
  }
  #wrap .intro nav .logo {
    -webkit-box-flex: 0 0 150px;
    -moz-box-flex: 0 0 150px;
    -ms-box-flex: 0 0 150px;
    box-flex: 0 0 150px;
    -webkit-flex: 0 0 150px;
    -moz-flex: 0 0 150px;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start;
    padding: 0;
    text-align: left;
  }
  #wrap .intro nav .logo img {
    max-width: 150px;
    margin: 0 auto;
    display: block;
  }
  #wrap .empresa {
    padding: 100px 8%;
    position: relative;
    margin-top: 55px;
  }
  #wrap .empresa .by {
    background: rgba(255, 255, 255, 0.4);
    /*May*/
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  #wrap .empresa:before {
    display: none;
  }
  #wrap .empresa p {
    font-size: 20px;
    font-size: 2rem;
  }
  .focus .feature {
    max-width: 70%;
    margin-bottom: 60px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .focus .feature figure {
    -webkit-box-flex: 1 1 40%;
    -moz-box-flex: 1 1 40%;
    -ms-box-flex: 1 1 40%;
    box-flex: 1 1 40%;
    -webkit-flex: 1 1 40%;
    -moz-flex: 1 1 40%;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }
  .focus .feature h3 {
    font-size: 50px;
    font-size: 5rem;
    line-height: 0.8;
  }
  .focus .feature .desc {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -ms-box-flex: 1 1 auto;
    box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-family: "Regular", sans-serif;
  }
  .focus .feature .desc p {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .focus .titulo {
    font-size: 40px;
    font-size: 4rem;
  }
  .focus h4 {
    font-size: 20px;
    font-size: 2rem;
  }
  .focus .inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .focus .main-content,
  .focus .side-content {
    -webkit-box-flex: 1 1 50%;
    -moz-box-flex: 1 1 50%;
    -ms-box-flex: 1 1 50%;
    box-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
  .item-title {
    font-size: 50px;
    font-size: 5rem;
    padding-right: 300px;
  }
  .action-menu.d {
    display: block;
  }
  .action-menu.d:hover {
    color: #14222c;
  }
  .full-content {
    padding: 60px 8% 30px 8%;
  }
  .full-content .titulo {
    font-size: 40px;
    font-size: 4rem;
  }
  .full-content .titulo small {
    font-size: 30px;
    font-size: 3rem;
  }
  .full-content ul {
    max-width: 620px;
    margin: 50px auto;
  }
  .full-content ul li:first-child {
    list-style: none;
  }
  .full-content ul li:last-child {
      margin-bottom: 10px;
  }
  .full-content .full-inner {
    padding: 20px 40px;
  }
  .full-content .half p {
    padding: 0 20px 20px 0;
  }
  .servicios li {
    width: 33.33333%;
  }
  .feature-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .feature-list .feature {
    -webkit-box-flex: 1 1 33.33333%;
    -moz-box-flex: 1 1 33.33333%;
    -ms-box-flex: 1 1 33.33333%;
    box-flex: 1 1 33.33333%;
    -webkit-flex: 1 1 33.33333%;
    -moz-flex: 1 1 33.33333%;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  #socialproof .inner {
    max-width: 50%;
  }
  #socialproof .inner .titulo {
    font-size: 60px;
    font-size: 6rem;
  }
  .quotes {
    max-width: 40%;
  }
  .disclaimer-down_text{
    display:block;
    clear: both;
    float:left;
    margin: 20px 0px 0px 0px;
    font-size: 70%;
    color: #525252;
 }
 .twentyfive{
   width: 25%;
 }
 .thirtythree{
   width: 33%;
 }

/*FORM IDS*/
/* Form Style for Prey
------------------------------------ */
.hs-form .hs-input {
    width: 100% !important;
}
.request-form {
  position: relative;
  margin-top: -15px;
}

.request-form h3 {
    display: none;
}

.request-form .hs-form-required {
   display:none
}

.request-form .hs-form-required {
   display:none
}

.hs-form fieldset {
    max-width: 768px !important;
    width: 100% !important;
    margin: 30px auto 20px !important;
    position: relative !important;
}

.hs-form-field {
    padding: 0 10px;
}
/* Form Style for Prey
------------------------------------ */

.hs-form .inputs-list {
    padding-left: 0px;
    list-style: none;
    margin: 0;
}

.hs-form .inputs-list li {
  margin: 0;
}

.hs-form .inputs-list li label {
    color: #666;
    font-weight: 400;
}

.hs-form-checkbox-display .hs-input{
    width: 20px !important;
}

.hs-form-checkbox-display .hs-input[type="checkbox"] {
    display: inline-block;
    height: auto;
}

.hs-form-checkbox-display span {
    display: inline-block;
    padding-top: 2px;
    padding-left: 10px;
}


@media (max-width:400px) {
    fieldset div:nth-child(2)  {
        margin-top: 15px;
    }
}

/* Form Fields
------------------------------------ */
.hs-form-field {
    position: relative;
    display: block;
    height: auto;
}

/* Input  */
.hs-input {
    box-shadow: none;
    color: #888;
    cursor: default;
    height: 43px;
    padding: 6px 18px;
    transition: border-color 0.4s linear 0s;
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.hs-input:focus {
    border-color: #66afe9  !important;
    outline: 0  !important !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)  !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)  !important;
}


.hs-form-field option {
   font-weight: normal;
   display: block;
   white-space: pre;
   min-height: 1.2em;
   padding: 0px 2px 1px;
}


/* text area */
textarea {
    min-height: 180px;
}



/* Input submit */
.hs_submit {
    text-align:center;
    margin: 0px auto 50px auto;
}

.hs-button {
  display:inline-block;
  cursor:pointer;
  color:#ffffff;
  font-size:16px;
  font-weight: normal;
  padding:20px 24px;
  text-decoration:none;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-family: "Regular", sans-serif;
  text-shadow: none;
  border: 1px solid;
  -webkit-transition: border-color .3s,background-color .3s;
  transition: border-color .3s,background-color .3s;
  background: #2980b9;
  border-color: #164666;
  color: #fff;
}


.hs-button:hover, .hs-button:active, .hs-button:focus {
  background: #2980b9;
  border-color: #164666;
  color: #fff;
}
.hs-button:hover{
  color: #444444;
}



/* hs-field-desc
------------------------------------ */
.hs-field-desc {
    color: #6f6f6e;
    font-weight: 300px;
    font-size: 18px;
    margin-top:10px;
}



/* Tooltip request
------------------------------------ */
.hs-error-msgs label {
    margin-bottom: 0px;
    font-size: 1em;
    font-weight: 300;
    color: #6f6f6e;
    padding: 0 0;
    padding-left: 22px;
    display: inline-block;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
    position: relative;
    margin-top: 5px;
 }

.hs-error-msgs label:before {
        content: '\e803';
        font-family: 'icons';
        color: #C52427;
        font-size: 18px;
        position: absolute;
        left: 0;
        top: -2px;
    }

.hs-error-msgs{
     list-style: none;
     padding-left: 0px;
}


.request-form .hs-error-msgs label:after {
    bottom: 100%;
    left: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
	border-color: rgba(97, 149, 29, 0);
	border-bottom-color: #00d882;
	border-width: 10px;
}



@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* CAPTCHA
------------------------------------ */
.hs_recaptcha {
    margin:15px 0;
    text-align: center;
}


.centerauto{
    margin: 0 auto;
}

.full-content20{
    padding: 20px 8%;
}