/*! 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 v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/******************************************************************
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;
  }
*/
/*
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.
*/
/*$lato:              'Lato', $sans-serif;*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
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/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #2574a8; }
  .blue-btn:active {
    background-color: #2472a4; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #f7f8fa;
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

/*********************
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.
*********************/
/*Resetted labels*/
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

a,
a:hover, a:focus {
  text-decoration: none;
  outline: none; }

a img {
  border: none;
  outline: none; }

input {
  outline: none; }

strong {
  font-family: 'Montserrat-SemiBold';
  font-weight: normal; }

figure {
  margin: 0; }

h1, h2 {
  font-family: 'Montserrat-Light';
  font-size: 55px;
  text-transform: uppercase;
  line-height: 45px;
  margin: 0 0 40px 0; }
  h1 span, h2 span {
    font-size: 33px;
    width: 100%;
    display: block; }

img {
  max-width: 100%; }

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Montserrat-Light';
  color: #545454; }
  body:after {
    width: 100%;
    height: 100vh;
    left: -100%;
    margin: 0 auto;
    top: 0;
    z-index: 9;
    content: "";
    position: absolute;
    transition: all 0.3s ease-out;
    background: #292b49; }
  body.open-nav-xs {
    overflow: hidden; }
    body.open-nav-xs header {
      height: auto;
      z-index: 99; }
      body.open-nav-xs header nav {
        left: 0; }
      body.open-nav-xs header .cont-search {
        right: 0;
        left: 0; }
      body.open-nav-xs header .redes {
        left: 0; }
    body.open-nav-xs:after {
      left: 0; }

#nav-toogle {
  width: 40px;
  height: 40px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99;
  border-radius: 50%;
  border: 4px solid transparent;
  display: inline-block;
  vertical-align: top;
  right: 10px;
  top: 17px;
  display: none; }

#nav-toogle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: 99;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); }

#nav-toogle span:nth-child(1) {
  top: 11px; }

#nav-toogle span:nth-child(2),
#nav-toogle span:nth-child(3) {
  top: 30px; }

#nav-toogle span:nth-child(4) {
  top: 21px; }

#nav-toogle.open span:nth-child(1) {
  left: 50%;
  top: 21px;
  width: 0%; }

#nav-toogle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 21px; }

#nav-toogle.open span {
  background: #fff !important; }

#nav-toogle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px; }

#nav-toogle.open span:nth-child(4) {
  left: 50%;
  top: 21px;
  width: 0%; }

.redes ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .redes ul li {
    margin: 0 8px;
    float: left;
    text-indent: -9999px; }
    .redes ul li a {
      width: 40px;
      height: 40px;
      background-size: 100% 100% !important;
      display: block; }
    .redes ul li.fb a {
      background: url("../img/background/icon-fb.png") no-repeat center center; }
    .redes ul li.it a {
      background: url("../img/background/icon-tw.png") no-repeat center center; }
    .redes ul li.yt a {
      background: url("../img/background/icon-yt.png") no-repeat center center; }

footer {
  background-color: #292b49;
  padding-top: 20px;
  color: #fff; }
  footer figure {
    max-width: 170px;
    margin: 0 0 20px 0; }
  footer .widget {
    margin: 0;
    padding: 0; }
  footer .widget_media_image {
    margin-bottom: 15px; }
    footer .widget_media_image img {
      max-width: 200px; }
  footer article {
    color: #fff;
    max-width: 480px;
    float: left;
    margin-bottom: 20px; }
    footer article ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      footer article ul li {
        list-style: none;
        padding: 0;
        margin: 0 0 5px 0 !important; }
    footer article h4 {
      margin: 0 0 15px 0 !important;
      border-bottom: none !important;
      font-family: 'Montserrat-Regular';
      font-size: 24px; }
    footer article a {
      color: #fff;
      text-decoration: none; }
      footer article a:hover {
        color: #fff; }
  footer .redes {
    float: right;
    margin-top: 25px; }
  footer .franja {
    background-color: #fff;
    padding: 10px 0;
    text-align: center; }
    footer .franja p {
      display: inline-block;
      vertical-align: top;
      color: #292b49;
      margin: 0 15px;
      font-family: arial;
      font-size: 14px; }
    footer .franja ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: inline-block;
      vertical-align: top; }
      footer .franja ul li {
        float: left;
        margin: 0 15px;
        color: #292b49;
        font-family: arial;
        font-size: 14px; }
        footer .franja ul li a {
          color: #292b49; }
  footer input[type=checkbox] {
    margin: 0 10px 0 0; }

header {
  /*background: url('../img/background/bg-gradient-header.png') no-repeat top center;*/
  background: #292b49;
  background-size: 100% 100%;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 2;
  padding-top: 15px;
  text-align: center;
  padding-bottom: 20px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); }
  header .logo {
    max-width: 185px;
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
    float: left; }
  header nav {
    display: inline-block;
    vertical-align: top;
    margin-top: 15px; }
    header nav ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      header nav ul li {
        float: left;
        position: relative;
        color: #fff;
        font-family: 'Montserrat-Medium';
        font-size: 18px;
        border-right: 1px solid #fff; }
        header nav ul li a {
          color: #fff;
          display: block;
          padding: 3px 20px; }
          header nav ul li a:hover {
            color: #fff; }
        header nav ul li:last-child {
          border-right: 0; }
        header nav ul li.arrow {
          background: url("../img/background/icon-arrow-nav.png") no-repeat 91% 17px; }
          header nav ul li.arrow a {
            padding-right: 40px; }
        header nav ul li:hover ul.sub-menu {
          display: block; }
  header .redes {
    display: inline-block;
    vertical-align: top;
    margin-top: 17px;
    float: right; }
    header .redes ul li {
      margin: 0 5px; }
      header .redes ul li a {
        width: 29px;
        height: 29px; }
  header .pago a {
    margin: 0px 20px 0 20px;
    background: #e4b32c;
    border-radius: 25px; }
    header .pago a:hover {
      color: #fff;
      text-decoration: none;
      background: rgba(229, 174, 20, 0.890196); }

nav ul.sub-menu {
  position: absolute;
  left: 0;
  top: 53px;
  width: 215px;
  border-radius: 0 0 5px 5px;
  padding: 10px 20px 10px 20px;
  display: block;
  background-color: #fff;
  display: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.45); }
  nav ul.sub-menu li {
    display: block;
    width: 100%;
    color: #545454;
    font-size: 15px;
    font-family: 'Montserrat-Light';
    margin: 0;
    padding: 0;
    text-align: left; }
    nav ul.sub-menu li a {
      margin: 0;
      padding: 10px 0 !important;
      display: block;
      color: #545454;
      border-bottom: 1px solid #dedede; }
    nav ul.sub-menu li:hover a {
      color: #545454;
      text-decoration: none; }
    nav ul.sub-menu li:last-child a {
      border-bottom: 0; }
  nav ul.sub-menu:before {
    content: "";
    display: block;
    height: 33px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: -33px;
    width: 100%; }

.main-suscribir {
  float: right;
  max-width: 580px; }

.suscribete {
  display: inline-block;
  vertical-align: top;
  padding-top: 35px; }
  .suscribete h5 {
    color: #fff;
    margin: 0 0 10px 0;
    display: block;
    font-family: 'Montserrat-Regular';
    font-size: 19px; }
  .suscribete label {
    color: #fff;
    font-weight: normal;
    margin: 0;
    font-size: 14px; }
    .suscribete label a {
      color: #fff;
      text-decoration: underline; }
  .suscribete .cont-input {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    position: relative;
    margin: 0 0 12px 0;
    padding: 0 3px; }
    .suscribete .cont-input input[type="text"],
    .suscribete .cont-input input[type="search"],
    .suscribete .cont-input input[type="email"] {
      background-color: #fff;
      margin: 0;
      border-radius: 20px;
      width: 100%;
      max-width: 88%;
      width: 100%;
      height: 40px;
      padding: 0 20px;
      float: left; }
    .suscribete .cont-input button, .suscribete .cont-input input[type="submit"], .suscribete .cont-input [type="submit"] {
      background: url("../img/background/icon-arrow-select.png") no-repeat center center;
      width: 34px;
      height: 34px;
      border: 0;
      text-indent: -9999px;
      margin-top: 3px;
      float: right; }
    .suscribete .cont-input .parsley-errors-list {
      position: absolute;
      top: 0px;
      right: 46px;
      opacity: 1;
      font-weight: bold;
      color: #f44545;
      text-transform: uppercase;
      pointer-events: none; }
      .suscribete .cont-input .parsley-errors-list li {
        color: #f44545;
        z-index: 4; }
  .suscribete .parsley-errors-list {
    margin: 0; }
    .suscribete .parsley-errors-list li {
      font-size: 13px;
      text-transform: none; }

.main-proyectos-home {
  overflow: hidden;
  margin-bottom: 50px; }
  .main-proyectos-home .info {
    max-width: 585px;
    float: right;
    overflow: hidden;
    padding: 80px 50px; }
    .main-proyectos-home .info h1, .main-proyectos-home .info h2 {
      color: #545454;
      text-transform: uppercase;
      font-family: 'Montserrat-Light';
      font-size: 60px;
      line-height: 62px;
      margin: 0; }

.bg-proyectos {
  background-color: #545454;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; }
  .bg-proyectos article {
    max-width: 585px;
    padding: 50px 50px;
    float: left;
    overflow: hidden; }
  .bg-proyectos p {
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 18px;
    line-height: 22px; }
    .bg-proyectos p span {
      display: block; }

.main-nuestros-proyectos {
  margin: 0 auto 40px;
  overflow: hidden; }
  .main-nuestros-proyectos h1, .main-nuestros-proyectos h2 {
    font-size: 40px;
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
    color: #545454;
    clear: both;
    font-family: 'Montserrat-Light';
    text-transform: uppercase; }
    .main-nuestros-proyectos h1 span, .main-nuestros-proyectos h2 span {
      font-size: 65px;
      display: block;
      width: 100%; }
  .main-nuestros-proyectos p {
    text-align: center; }
  .main-nuestros-proyectos .p-description {
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 40px 0;
    font-family: 'Montserrat-Regular'; }

.proyectos-colviva {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 33.333%;
  float: left;
  padding: 0;
  overflow: hidden;
  border: 2px solid #fff; }
  .proyectos-colviva a {
    display: block; }
  .proyectos-colviva figure {
    overflow: hidden; }
    .proyectos-colviva figure img {
      width: 100%;
      height: 400px;
      object-fit: cover; }
  .proyectos-colviva i {
    transition: all 0.6s ease-out;
    transform: translateY(-400px); }
  .proyectos-colviva .overflow {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    bottom: -100%;
    overflow: hidden; }
    .proyectos-colviva .overflow img {
      width: auto;
      max-width: 200px;
      max-height: 250px;
      object-fit: none; }
  .proyectos-colviva:hover .overflow {
    bottom: 0; }
    .proyectos-colviva:hover .overflow i {
      transform: translateY(0px); }
  .proyectos-colviva:last-child .overflow {
    background: #000; }

.swiper-proyectos-home .swiper-slide:last-child .proyectos-colviva .overflow {
  background: #000; }

.colviva-tu-casa {
  position: relative;
  background: url("../img/background/bg-familia.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  margin: 0 auto 10px;
  padding-top: 80px;
  padding-bottom: 50px; }
  .colviva-tu-casa h2, .colviva-tu-casa h3 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat-Light'; }
  .colviva-tu-casa h2 {
    margin: 0 0 35px 0;
    display: block;
    font-size: 60px;
    text-align: left;
    max-width: 700px;
    line-height: 53px; }
  .colviva-tu-casa h3 {
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 30px; }
  .colviva-tu-casa:after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    background: rgba(112, 89, 26, 0.7); }
  .colviva-tu-casa .wrapper-main {
    z-index: 1; }
  .colviva-tu-casa .info {
    display: inline-block;
    vertical-align: top;
    width: 160px;
    margin: 0 0 50px 0; }
    .colviva-tu-casa .info:hover figure {
      transform: translateY(-15px); }
  .colviva-tu-casa figure {
    display: block;
    transition: all 0.3s ease-out;
    position: relative; }
  .colviva-tu-casa figcaption {
    display: block;
    margin: 0 auto;
    color: #fff;
    clear: both;
    text-transform: uppercase;
    padding-top: 30px;
    font-family: 'Montserrat-Bold';
    font-size: 17px; }
  .colviva-tu-casa .btn-colviva {
    background-color: #535353; }
  .colviva-tu-casa .pagination-colviva {
    bottom: 10px;
    position: relative;
    display: none; }

.btn-colviva {
  display: inline-block;
  vertical-align: top;
  min-width: 200px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  border-radius: 30px;
  padding: 0 20px;
  background-color: #545454;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  border: 0;
  font-family: 'Montserrat-Bold';
  transition: all 0.3s ease-out; }
  .btn-colviva:hover {
    color: #fff;
    text-decoration: none; }
  .btn-colviva.yellow {
    background-color: #e4b32b; }
    .btn-colviva.yellow:hover {
      background-color: #f5b404; }
  .btn-colviva.red {
    background-color: #c02422; }
    .btn-colviva.red:hover {
      background-color: #c02422; }

.main-blog {
  padding-bottom: 60px; }
  .main-blog h2 {
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    color: #545454;
    font-family: 'Montserrat-Light';
    font-size: 65px; }

.swiper-arriendo {
  padding-top: 15px; }

.swiper-next,
.swiper-prev {
  width: 50px;
  height: 50px;
  background-size: 100% 100% !important;
  opacity: 1;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer; }
  .swiper-next:hover, .swiper-next:focus,
  .swiper-prev:hover,
  .swiper-prev:focus {
    outline: none; }
  .swiper-next.swiper-button-disabled,
  .swiper-prev.swiper-button-disabled {
    cursor: default;
    opacity: 0; }

.swiper-next {
  right: 15px;
  background: url("../img/background/icon-next.png") no-repeat center center; }

.swiper-prev {
  left: 15px;
  background: url("../img/background/icon-prev.png") no-repeat center center; }

.next-white,
.prev-white {
  width: 31px;
  height: 55px;
  background-size: 100% 100% !important;
  opacity: 1;
  margin-top: -28px;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer; }
  .next-white:hover, .next-white:focus,
  .prev-white:hover,
  .prev-white:focus {
    outline: none; }
  .next-white.swiper-button-disabled,
  .prev-white.swiper-button-disabled {
    cursor: default;
    opacity: 0; }

.next-white {
  right: 15px;
  background: url("../img/background/icon-next2.png") no-repeat center center; }

.prev-white {
  left: 15px;
  background: url("../img/background/icon-prev2.png") no-repeat center center; }

.next-yellow,
.prev-yellow {
  width: 57px;
  height: 57px;
  background-size: 100% 100% !important;
  opacity: 1;
  margin-top: -28px;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer; }
  .next-yellow:hover, .next-yellow:focus,
  .prev-yellow:hover,
  .prev-yellow:focus {
    outline: none; }
  .next-yellow.swiper-button-disabled,
  .prev-yellow.swiper-button-disabled {
    cursor: default;
    opacity: 0; }

.next-yellow {
  right: 15px;
  background: url("../img/background/icon-next-yellow.png") no-repeat center center; }

.prev-yellow {
  left: 15px;
  background: url("../img/background/icon-prev-yellow.png") no-repeat center center; }

.pagination-colviva {
  bottom: 10px;
  left: 0;
  width: 100%;
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }
  .pagination-colviva .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: top;
    margin: 0 5px;
    background: #fff; }
    .pagination-colviva .swiper-pagination-bullet:focus {
      outline: none; }

.banner-home {
  margin-bottom: 50px;
  position: relative; }
  .banner-home figure {
    display: block; }
    .banner-home figure img {
      width: 100%; }
  .banner-home video {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.banner-quienes-somos {
  position: relative; }
  .banner-quienes-somos figure {
    display: block; }
    .banner-quienes-somos figure img {
      width: 100%; }

.card-blog {
  max-width: 360px;
  margin: 0 auto;
  display: block; }
  .card-blog figure {
    margin: 0 0 15px 0;
    overflow: hidden; }
    .card-blog figure img {
      transition: all 0.3s ease-out;
      width: 100%;
      height: 345px;
      object-fit: cover; }
    .card-blog figure:hover img {
      transform: scale(1.1); }
  .card-blog h3 {
    font-size: 23px;
    display: block;
    margin: 0 0 15px 0;
    color: #434a4f;
    text-align: left;
    font-family: 'Montserrat-Regular';
    line-height: 26px;
    min-height: 55px; }
  .card-blog h4 {
    display: block;
    color: #606a70;
    font-size: 14px;
    font-family: 'Montserrat-Light';
    margin: 0 0 15px 0; }
  .card-blog .mas {
    clear: both;
    color: #e4b32b;
    font-size: 18px;
    font-family: 'Montserrat-SemiBold'; }

.banner-info-full {
  padding-top: 130px;
  position: relative;
  padding-bottom: 120px; }
  .banner-info-full figure {
    float: left;
    width: 50%; }
    .banner-info-full figure img {
      width: 100%; }
  .banner-info-full .info-banner {
    float: left;
    width: 50%;
    padding-left: 50px;
    color: #fff;
    max-width: 600px; }
  .banner-info-full h2 {
    margin: 0 0 15px 0;
    font-size: 41px; }
    .banner-info-full h2 span {
      font-size: 31px; }
  .banner-info-full p {
    font-size: 17px;
    line-height: 22px; }
  .banner-info-full .wrapper-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .banner-info-full:before {
    content: "";
    width: 70%;
    right: 0;
    top: 0;
    height: 100%;
    background-color: #626262;
    position: absolute;
    top: 0; }
  .banner-info-full .btn-colviva {
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    height: 45px;
    line-height: 45px;
    margin-top: 15px; }

.main-data-proyectos {
  padding-top: 40px;
  position: relative;
  padding-bottom: 50px;
  z-index: 1; }
  .main-data-proyectos h1, .main-data-proyectos h2 {
    margin: 0 0 30px 0; }
    .main-data-proyectos h1 span, .main-data-proyectos h2 span {
      font-size: 27px; }
  .main-data-proyectos ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .main-data-proyectos ul li {
      float: left;
      width: 50%;
      margin-bottom: 18px;
      font-size: 17px;
      line-height: 19px; }
      .main-data-proyectos ul li i {
        width: 30px;
        text-align: center;
        margin-right: 15px;
        float: left; }
        .main-data-proyectos ul li i img {
          max-height: 21px; }
      .main-data-proyectos ul li span {
        float: left;
        max-width: 240px; }

.gallery-proyect {
  margin-top: -100px; }
  .gallery-proyect figure {
    padding: 1px; }
    .gallery-proyect figure img {
      height: 250px;
      object-fit: cover;
      width: 100%; }
    .gallery-proyect figure:nth-child(2), .gallery-proyect figure:nth-child(3) {
      float: left;
      width: 50%; }

.data-proyectos-ubicacion {
  padding-top: 50px;
  padding-bottom: 50px; }
  .data-proyectos-ubicacion h1, .data-proyectos-ubicacion h2 {
    font-size: 60px; }
  .data-proyectos-ubicacion article {
    margin-bottom: 30px;
    overflow: hidden; }
  .data-proyectos-ubicacion i {
    float: left;
    width: 50px;
    text-align: center; }
  .data-proyectos-ubicacion .info {
    float: left;
    padding-left: 20px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .data-proyectos-ubicacion h3 {
    color: #2d5f84;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
    margin: 0 0 5px 0; }
  .data-proyectos-ubicacion ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .data-proyectos-ubicacion ul li {
      position: relative;
      padding-left: 20px; }
      .data-proyectos-ubicacion ul li:after {
        width: 6px;
        height: 6px;
        position: absolute;
        left: 0;
        top: 8px;
        background-color: #2d5f84;
        border-radius: 50%;
        content: ""; }

.items-center {
  align-items: center; }

.gallery-relacionadas {
  padding-top: 20px; }
  .gallery-relacionadas figure {
    float: left;
    padding: 2px; }
    .gallery-relacionadas figure img {
      width: 100%;
      height: 280px;
      object-fit: cover; }
    .gallery-relacionadas figure:nth-child(1) {
      width: 50%; }
    .gallery-relacionadas figure:nth-child(2), .gallery-relacionadas figure:nth-child(3) {
      float: left;
      width: 25%; }

.main-propositos {
  text-align: center;
  padding: 50px 0 0 0; }
  .main-propositos h1 {
    display: inline-block;
    border-bottom: 2px solid;
    padding-bottom: 21px; }
  .main-propositos h3 {
    font-size: 22px;
    max-width: 750px;
    margin: 0 auto 40px; }
  .main-propositos p {
    font-size: 18px;
    line-height: 22px;
    padding: 0 50px;
    margin: 0;
    font-family: 'Montserrat-Regular'; }
  .main-propositos figure {
    display: inline-block;
    vertical-align: top;
    margin: 0 45px 20px 45px;
    text-align: center; }
    .main-propositos figure figcaption {
      display: block;
      font-family: 'Montserrat-Bold';
      text-transform: uppercase;
      color: #545454;
      padding-top: 15px; }

.main-nuestro-equipo {
  text-align: center;
  padding: 50px 0 60px 0;
  background-color: #545454; }
  .main-nuestro-equipo h2 {
    color: #fff; }
  .main-nuestro-equipo p {
    font-size: 18px;
    line-height: 22px;
    max-width: 700px;
    margin: 0 auto 50px;
    display: block;
    color: #fff; }
  .main-nuestro-equipo .next-white,
  .main-nuestro-equipo .prev-white {
    margin-top: -70px; }
  .main-nuestro-equipo .prev-white {
    left: -50px; }
  .main-nuestro-equipo .next-white {
    right: 90px; }
  .main-nuestro-equipo h5 {
    color: #fff;
    font-size: 40px;
    font-family: 'Montserrat-SemiBold';
    text-transform: uppercase;
    margin: 0 0 10px 0;
    display: block;
    clear: both; }
    .main-nuestro-equipo h5 span {
      font-family: 'Montserrat-Light';
      display: block; }
  .main-nuestro-equipo hr {
    border-color: #fff;
    width: 110px;
    margin: 0 auto;
    display: block; }

.info-equipo {
  max-width: 185px;
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  vertical-align: top;
  margin-right: 95px; }
  .info-equipo figure img {
    filter: grayscale(100%);
    transition: all 0.3s ease-out; }
  .info-equipo .info {
    position: absolute;
    left: 0;
    bottom: 15px;
    color: #fff;
    text-align: left;
    width: 280px;
    padding-left: 40px; }
    .info-equipo .info h3 {
      text-transform: uppercase;
      font-size: 26px;
      line-height: 30px;
      margin: 0 0 5px 0; }
    .info-equipo .info h4 {
      font-size: 18px;
      margin: 0;
      text-transform: uppercase; }
  .info-equipo:hover figure img {
    filter: grayscale(0%); }

.main-trayectoria {
  color: #545454;
  padding: 60px 0;
  position: relative; }
  .main-trayectoria .wrapper-main {
    position: relative;
    z-index: 1; }
  .main-trayectoria.col-gray-light:before {
    width: 60%;
    height: 100%;
    background-color: #f3f3f3;
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute; }
  .main-trayectoria article {
    max-width: 420px; }
  .main-trayectoria p {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-family: 'Montserrat-Regular'; }

.title-one {
  padding: 50px 0 20px 0;
  text-align: center; }

.main-centrales {
  color: #545454;
  padding: 60px 0;
  position: relative; }
  .main-centrales h3 {
    background: url("../img/background/icon-energia.png") no-repeat left center;
    background-size: 60px;
    color: #fff;
    font-size: 33px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    padding-left: 85px; }
  .main-centrales .wrapper-main {
    position: relative;
    z-index: 1; }
  .main-centrales.col-gray-dark:before {
    width: 60%;
    height: 100%;
    background-color: #545454;
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute; }
  .main-centrales article {
    max-width: 460px;
    color: #fff; }
  .main-centrales p {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px 0; }

.main-proyectos-gallery {
  padding-top: 60px;
  padding-bottom: 60px; }
  .main-proyectos-gallery h3 {
    font-family: 'Montserrat-Light';
    font-size: 55px;
    line-height: 45px;
    margin: 0 0 60px 30px;
    text-transform: uppercase;
    text-align: center; }
    .main-proyectos-gallery h3 span {
      font-size: 33px;
      width: 100%;
      display: block; }

.img-chc {
  margin-bottom: 60px; }

.img-chc-1, .img-chc-2 {
  text-align: center;
  clear: both;
  max-width: 200px;
  margin: 0 auto 35px; }

.img-chc-2 {
  padding-top: 10px; }

.swiper-gallery-proyectos {
  margin: 0 auto;
  max-width: 500px; }
  .swiper-gallery-proyectos .swiper-container {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .swiper-gallery-proyectos .swiper-slide {
    background-size: cover;
    background-position: center; }
  .swiper-gallery-proyectos .gallery-top, .swiper-gallery-proyectos .gallery-top-nuevo {
    width: 100%; }
    .swiper-gallery-proyectos .gallery-top figure:after, .swiper-gallery-proyectos .gallery-top-nuevo figure:after {
      width: 100%;
      height: 100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 0;
      content: "";
      background-color: rgba(0, 0, 0, 0.2);
      z-index: 1;
      position: absolute; }
  .swiper-gallery-proyectos .gallery-thumbs, .swiper-gallery-proyectos .gallery-thumbs-nuevo {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0; }
    .swiper-gallery-proyectos .gallery-thumbs .swiper-slide, .swiper-gallery-proyectos .gallery-thumbs-nuevo .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.6; }
    .swiper-gallery-proyectos .gallery-thumbs .swiper-slide-thumb-active, .swiper-gallery-proyectos .gallery-thumbs-nuevo .swiper-slide-thumb-active {
      opacity: 1; }
  .swiper-gallery-proyectos figure {
    position: relative; }
    .swiper-gallery-proyectos figure figcaption {
      position: absolute;
      left: 15px;
      bottom: 20px;
      color: #fff;
      max-width: 400px;
      font-size: 28px;
      text-transform: uppercase;
      z-index: 2;
      margin: 0;
      text-shadow: -1px 3px 2px rgba(0, 0, 0, 0.3);
      line-height: 30px; }
  .swiper-gallery-proyectos .next-yellow, .swiper-gallery-proyectos .prev-yellow {
    transform: scale(0.8); }

.wrap-equipo {
  padding: 50px 0 20px 0;
  margin-bottom: 50px;
  position: relative; }
  .wrap-equipo .wrapper-main {
    position: relative;
    z-index: 1; }
  .wrap-equipo.col-left:before {
    left: 0; }
  .wrap-equipo.col-left .col-xl-5 {
    order: 2; }
  .wrap-equipo.col-left .col-xl-7 {
    order: 1; }
  .wrap-equipo.col-right:before {
    right: 0; }
  .wrap-equipo:before {
    width: 60%;
    height: 100%;
    background-color: #3f3f3f;
    content: "";
    display: block;
    top: 0;
    position: absolute; }
  .wrap-equipo .cargos {
    max-width: 420px; }
  .wrap-equipo .info-equipo {
    float: left;
    margin: 0 0 45px 0; }
    .wrap-equipo .info-equipo:nth-child(1) {
      margin-right: 110px; }
    .wrap-equipo .info-equipo:nth-child(2) {
      margin-right: 0; }
    .wrap-equipo .info-equipo:nth-child(3) {
      margin-left: 60px;
      margin-right: 120px; }

.equipo-all {
  position: relative;
  left: 47px;
  padding-bottom: 20px; }
  .equipo-all hr {
    margin-bottom: 45px; }

/*Default styles*/
.clear-fix::after {
  content: "";
  clear: both;
  width: 100%;
  display: block; }

.banner-home .swiper-slide {
  height: 540px; }
  @media (max-width: 780px) {
    .banner-home .swiper-slide {
      height: auto; } }

.main-epic {
  background: url("../img/background/bg-404.jpg") no-repeat center center;
  background-size: cover;
  padding: 230px 0 120px 0;
  min-height: 600px; }
  .main-epic p {
    color: #fff;
    font-family: 'Montserrat-SemiBold';
    font-size: 28px;
    margin: 0 0 40px 0;
    line-height: 33px; }

.main-mapa {
  padding-top: 50px;
  padding-bottom: 60px;
  text-align: center;
  color: #545454;
  overflow: hidden; }
  .main-mapa h1 {
    font-size: 45px;
    text-align: center;
    display: block;
    margin: 0 0 20px 0;
    font-family: 'Montserrat-Regular';
    text-transform: inherit; }
  .main-mapa p {
    text-align: center;
    display: block;
    margin: 0 auto 50px;
    font-family: 'Montserrat-Regular';
    font-size: 20px;
    max-width: 500px; }
  .main-mapa article {
    width: 16.666%;
    text-align: left;
    float: left; }
    .main-mapa article a {
      color: #545454;
      text-decoration: none; }
    .main-mapa article h3 {
      font-size: 15px;
      font-family: 'Montserrat-Medium';
      border-bottom: 1px solid #545454;
      display: block;
      padding-bottom: 10px;
      margin: 0 0 15px 0; }
    .main-mapa article ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .main-mapa article ul li {
        margin-bottom: 10px;
        font-size: 16px; }
        .main-mapa article ul li a {
          transition: all 0.3s ease-out; }
          .main-mapa article ul li a:hover {
            text-decoration: underline; }

.main-politicas {
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 50px;
  background: #fff url("../img/background/bg-line.png") repeat-y top left;
  background-size: contain; }
  .main-politicas .row {
    margin: 0;
    align-items: flex-start; }
  .main-politicas h1 {
    text-transform: inherit;
    font-size: 38px;
    text-align: left;
    float: right;
    margin: 0 25px 0 0;
    font-family: 'Montserrat-Bold';
    letter-spacing: 1px;
    line-height: 42px;
    color: #fff; }
    .main-politicas h1 span {
      font-family: 'Montserrat-Light';
      font-size: 16px; }

.bg-gray-light {
  background-color: #ededed; }

.colviva-accordion {
  max-width: 780px; }
  .colviva-accordion h3 {
    margin: 0;
    /*background: url('../img/background/icon-mas.png') no-repeat 98% center;
		cursor: pointer;*/
    cursor: default;
    border-bottom: 1px solid #545454;
    display: block;
    font-family: 'Montserrat-Medium';
    font-size: 18px;
    padding: 14px 50px 14px 0; }
    .colviva-accordion h3:focus {
      outline: none; }
    .colviva-accordion h3.ui-state-active {
      /*background: url('../img/background/icon-menos.png') no-repeat 98% center;*/
      border-bottom-color: transparent; }
  .colviva-accordion .info-content {
    padding: 15px 50px 10px 0; }

.content-accordion {
  padding: 25px 0 40px 20px;
  float: left; }
  .content-accordion h2 {
    font-family: 'Montserrat-Medium';
    font-size: 22px;
    margin: 0 0 10px 0;
    text-transform: inherit; }

.main-wrap-blog {
  padding-top: 45px; }
  .main-wrap-blog h1, .main-wrap-blog h2 {
    display: block;
    margin: 0 0 50px 0;
    font-family: 'Montserrat-Medium';
    font-size: 38px;
    text-align: center;
    line-height: 54px; }
    .main-wrap-blog h1 strong, .main-wrap-blog h2 strong {
      display: block;
      font-size: 57px; }
  .main-wrap-blog .wrap-blog {
    background-color: #f6f6f6;
    padding-top: 60px;
    padding-bottom: 25px; }
  .main-wrap-blog .card-blog {
    display: inline-block;
    vertical-align: top;
    margin: 0 13px 40px 13px; }

.banner-blog-detalle {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden; }
  .banner-blog-detalle:after {
    background: #ededed;
    border-bottom: 35px solid #fff;
    border-top: 35px solid #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%; }
  .banner-blog-detalle .wrapper-main-md {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1; }
  .banner-blog-detalle figure {
    float: left;
    width: 50%;
    overflow: hidden; }
    .banner-blog-detalle figure img {
      height: 350px;
      object-fit: cover;
      width: 100%; }
  .banner-blog-detalle article {
    float: left;
    width: 50%;
    padding: 25px 50px; }
    .banner-blog-detalle article h2, .banner-blog-detalle article h3, .banner-blog-detalle article p {
      font-size: 33px;
      line-height: 36px;
      text-align: left;
      margin: 0; }

.banner-blog,
.banner-mapa {
  position: relative; }
  .banner-blog figure,
  .banner-mapa figure {
    display: block;
    width: 100%; }
    .banner-blog figure img,
    .banner-mapa figure img {
      width: 100%; }
  .banner-blog h1,
  .banner-mapa h1 {
    position: absolute;
    left: 50px;
    bottom: 70px;
    color: #fff;
    font-size: 100px;
    margin: 0; }

.wrap-detalle-blog {
  font-size: 17px;
  text-align: justify;
  padding-top: 55px; }
  .wrap-detalle-blog .line-header {
    background-color: #545454;
    width: 100%;
    height: 105px;
    margin-bottom: 50px;
    display: none; }
  .wrap-detalle-blog h1 {
    font-family: 'Montserrat-Medium';
    text-align: center;
    display: block;
    font-size: 45px;
    max-width: 900px;
    margin: 0 auto 40px; }
    .wrap-detalle-blog h1 span {
      font-size: 33px; }
  .wrap-detalle-blog p {
    line-height: 24px; }
  .wrap-detalle-blog h2, .wrap-detalle-blog h3, .wrap-detalle-blog h4 {
    font-family: 'Montserrat-SemiBold';
    text-transform: inherit;
    font-size: 27px;
    margin: 0 0 20px 0; }
  .wrap-detalle-blog h4 {
    font-size: 24px; }
  .wrap-detalle-blog .col {
    padding-top: 20px;
    display: flex;
    overflow: hidden;
    margin-bottom: 25px;
    align-items: center; }
    .wrap-detalle-blog .col h2, .wrap-detalle-blog .col h3, .wrap-detalle-blog .col h4, .wrap-detalle-blog .col p {
      float: left;
      width: 50%;
      text-align: right;
      padding-right: 50px; }
    .wrap-detalle-blog .col img {
      float: right;
      max-width: 50%; }
  .wrap-detalle-blog img, .wrap-detalle-blog img.aligncenter {
    display: block;
    margin: 0 auto; }

.main-contacto {
  padding-bottom: 60px;
  padding-top: 60px; }
  .main-contacto h6 {
    font-size: 18px;
    color: #545454;
    font-family: 'Montserrat-Light';
    margin: 0 0 30px 0; }
  .main-contacto .cont-input {
    margin-bottom: 15px; }
    .main-contacto .cont-input input[type="text"],
    .main-contacto .cont-input input[type="tel"],
    .main-contacto .cont-input input[type="number"],
    .main-contacto .cont-input select, .main-contacto .cont-input input[type="email"] {
      border: 0;
      border-bottom: 1px solid #545454;
      width: 100%;
      max-width: 100%;
      display: block;
      color: #545454;
      border-radius: 0;
      background-color: #fff;
      padding: 0 15px; }
  .main-contacto textarea {
    width: 100%;
    border: 1px solid #545454;
    border-radius: 15px;
    padding: 15px 20px;
    resize: none;
    background-color: #fff;
    height: 166px;
    margin-top: 40px; }
  .main-contacto article {
    border-left: 2px solid #282828;
    padding: 15px 0 15px 30px;
    text-align: left;
    max-width: 500px;
    margin-bottom: 60px; }
    .main-contacto article p {
      font-size: 18px;
      line-height: 22px;
      margin: 0; }
  .main-contacto label {
    color: #545454;
    font-weight: normal;
    font-size: 14px; }
    .main-contacto label a {
      color: #545454;
      text-decoration: underline; }
  .main-contacto input[type=checkbox] {
    margin-right: 13px; }
  .main-contacto button, .main-contacto input[type="submit"], .main-contacto [type="submit"] {
    background-color: #f5b404;
    border-radius: 30px;
    border: 0;
    color: #fff;
    display: inline-block;
    float: right;
    font-family: 'Montserrat-SemiBold';
    font-size: 19px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    min-width: 120px;
    padding: 0 20px;
    text-align: center;
    transition: all 0.3s ease-out;
    vertical-align: top; }
    .main-contacto button:hover, .main-contacto input[type="submit"]:hover, .main-contacto [type="submit"]:hover {
      background-color: #f5b404; }
  .main-contacto span.wpcf7-not-valid-tip {
    color: #ff0000;
    font-weight: normal;
    font-size: 13px; }
  .main-contacto div.wpcf7-response-output {
    text-align: center;
    border: 0;
    color: #202356;
    margin-top: 25px; }

.banner-contacto {
  position: relative; }
  .banner-contacto img {
    width: 100%; }
  .banner-contacto .cont-info {
    position: absolute;
    right: 0;
    width: 46%;
    bottom: -180px;
    color: #fff; }
    .banner-contacto .cont-info h1 {
      color: #fff;
      font-size: 48px;
      margin: 0 0 15px 0;
      letter-spacing: 2px;
      font-family: 'Montserrat-Medium'; }
    .banner-contacto .cont-info h2 {
      font-size: 45px;
      text-transform: uppercase;
      margin: 0 0 15px 0;
      letter-spacing: 2px; }
    .banner-contacto .cont-info p {
      font-size: 19px;
      line-height: 26px; }
    .banner-contacto .cont-info article {
      background-color: #282828;
      width: 100%;
      display: block;
      padding: 60px 0 60px 150px;
      overflow: hidden; }
      .banner-contacto .cont-info article .bg {
        text-align: right;
        float: left;
        max-width: 400px; }

.main-servicion-all {
  background-color: #f6f6f6;
  text-align: center;
  padding: 60px 0; }
  .main-servicion-all .info {
    display: inline-block;
    vertical-align: top;
    width: 170px;
    margin: 0 15px; }
    .main-servicion-all .info:hover figure {
      transform: translateY(-15px); }
  .main-servicion-all figure {
    display: block;
    transition: all 0.3s ease-out;
    position: relative; }
  .main-servicion-all figcaption {
    display: block;
    margin: 0 auto;
    color: #535353;
    clear: both;
    text-transform: uppercase;
    padding-top: 30px;
    font-family: 'Montserrat-Bold';
    font-size: 17px; }

.propiedades-inmobiliaria {
  padding: 40px 0 60px 0;
  text-align: center; }
  .propiedades-inmobiliaria h2 {
    font-family: 'Montserrat-Regular';
    color: #545454;
    font-size: 24px;
    text-align: center;
    display: block;
    text-transform: inherit;
    line-height: 33px;
    margin: 0 0 40px 0; }
    .propiedades-inmobiliaria h2 strong {
      display: block;
      font-size: 27px; }

.info-propiedades {
  max-width: 350px;
  display: inline-block;
  vertical-align: top;
  margin: 0 15px 30px 15px;
  position: relative; }
  .info-propiedades a {
    color: #545454;
    display: block; }
  .info-propiedades .img-propiedade {
    display: block;
    position: relative; }
    .info-propiedades .img-propiedade img {
      width: 100%;
      object-fit: cover; }
    .info-propiedades .img-propiedade:after {
      background: rgba(0, 0, 0, 0.2);
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 60%);
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      z-index: 1;
      left: 0;
      right: 0; }
  .info-propiedades h4 {
    position: absolute;
    right: 0;
    top: 15px;
    background-color: #fff;
    border-radius: 15px 0 0 15px;
    padding: 7px 15px;
    font-size: 15px;
    font-family: 'Montserrat-Bold';
    z-index: 1;
    text-transform: uppercase; }
  .info-propiedades h5 {
    color: #fff;
    position: absolute;
    right: 0;
    top: 55px;
    font-size: 18px;
    font-family: 'Montserrat-Bold';
    min-width: 115px;
    text-align: center;
    z-index: 1; }
  .info-propiedades h6 {
    color: #fff;
    position: absolute;
    left: 30px;
    bottom: 25px;
    font-size: 20px;
    font-family: 'Montserrat-Bold';
    text-align: center;
    z-index: 2;
    margin: 0; }
  .info-propiedades .construye {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 110px;
    z-index: 2; }
  .info-propiedades .next-white, .info-propiedades .prev-white {
    transform: scale(0.6);
    top: 32%;
    z-index: 9; }

.info-caracteristicas {
  width: 100%;
  border: 1px solid #545454;
  padding: 15px 25px 20px 15px;
  clear: both;
  text-align: left; }
  .info-caracteristicas h2 {
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    display: block;
    text-align: left;
    margin: 0;
    line-height: inherit; }
  .info-caracteristicas h3 {
    font-family: 'Montserrat-Bold';
    font-size: 20px;
    display: block;
    text-align: center;
    margin: 0; }
  .info-caracteristicas p {
    font-size: 18px;
    margin: 0 0 10px 0; }
  .info-caracteristicas ul {
    list-style: none;
    padding: 10px 0;
    margin: 0 0 15px 0;
    border-top: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: space-between;
    justify-content: center; }
    .info-caracteristicas ul li {
      float: left;
      font-size: 16px;
      line-height: 20px; }
      .info-caracteristicas ul li.mts {
        padding-left: 35px;
        margin-right: 25px;
        background: url("../img/background/icon-mts.png") no-repeat center left;
        line-height: 29px; }
      .info-caracteristicas ul li.parqueo {
        padding-left: 45px;
        max-width: 185px;
        float: right;
        background: url("../img/background/icon-parqueo.png") no-repeat center left; }
      .info-caracteristicas ul li.habitaciones {
        padding-left: 45px;
        max-width: 185px;
        float: right;
        background: url("../img/background/icon-habitaciones.png") no-repeat center left; }
      .info-caracteristicas ul li.banios {
        padding-left: 45px;
        max-width: 185px;
        float: right;
        background: url("../img/background/icon-banios.png") no-repeat center left; }

.caracteristicas-detalle {
  border: 0;
  padding: 10px 0 30px 0; }
  .caracteristicas-detalle ul li {
    max-width: inherit !important;
    margin: 0 15px !important;
    line-height: 45px; }
  .caracteristicas-detalle h3 {
    padding-top: 15px; }

.gallery-inmueble {
  max-width: 740px;
  margin: 0;
  float: left; }
  .gallery-inmueble .next-white, .gallery-inmueble .prev-white {
    top: 50%;
    transform: scale(0.8); }

.gallery-right {
  float: left;
  width: 260px;
  padding-left: 30px;
  max-height: 465px;
  overflow: auto; }

.gallery-thumbs-propiedad img {
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease-out; }

.gallery-thumbs-propiedad .swiper-slide-thumb-active img {
  border: 3px solid #e4b32b;
  cursor: default; }

.banner-inmobiliaria {
  background: #000 url("../img/background/banner-inmobiliaria.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 40px;
  height: 720px; }
  .banner-inmobiliaria h1 {
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 0 80px 0;
    font-size: 35px;
    font-family: 'Montserrat-Light';
    text-transform: initial;
    line-height: 45px; }
    .banner-inmobiliaria h1 strong {
      font-size: 85px;
      font-family: 'Montserrat-Light';
      line-height: 70px; }
    .banner-inmobiliaria h1 span, .banner-inmobiliaria h1 strong {
      display: block;
      text-transform: uppercase; }
    .banner-inmobiliaria h1 span {
      font-size: 45px;
      line-height: 45px; }
  .banner-inmobiliaria .btn-col {
    border: 2px solid #e4b32b;
    min-width: 150px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    color: #e4b32b;
    margin: 0 15px 25px 15px;
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    border-radius: 25px;
    padding: 8px 25px; }
    .banner-inmobiliaria .btn-col:hover, .banner-inmobiliaria .btn-col.active {
      background-color: #e4b32b;
      color: #fff; }
  .banner-inmobiliaria input[type="text"],
  .banner-inmobiliaria input[type="search"],
  .banner-inmobiliaria input[type="email"] {
    background-color: #fff;
    border-radius: 25px;
    width: 100%;
    max-width: 350px;
    width: 100%;
    height: 50px;
    padding: 0 25px;
    font-family: 'Montserrat-SemiBold';
    margin: 0 auto;
    display: inline-block; }
  .banner-inmobiliaria button, .banner-inmobiliaria input[type="submit"], .banner-inmobiliaria [type="submit"] {
    background-color: #e4b32b;
    border: 0;
    min-width: 130px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin: 0 15px 40px 15px;
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    border-radius: 25px;
    padding: 12px 35px; }
    .banner-inmobiliaria button.btn-submit-filtro, .banner-inmobiliaria input[type="submit"].btn-submit-filtro, .banner-inmobiliaria [type="submit"].btn-submit-filtro {
      display: none; }
  .banner-inmobiliaria hr {
    border-top: 2px solid #fff;
    max-width: 330px;
    margin: 0 auto;
    display: block; }
  .banner-inmobiliaria .btn-filtro {
    color: #fff;
    background: url("../img/background/icon-mas.png") no-repeat left center;
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    padding-left: 40px;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    margin-bottom: 30px; }
    .banner-inmobiliaria .btn-filtro.open {
      background: url("../img/background/icon-menos.png") no-repeat left center;
      cursor: default; }

.all-filtro {
  display: none;
  clear: both;
  text-align: center;
  margin-bottom: 25px; }
  .all-filtro .cont-select {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    text-align: left;
    margin: 0 10px; }
    .all-filtro .cont-select select {
      background: url("../img/background/cont-select-filtro.png") no-repeat right center;
      font-family: 'Montserrat-SemiBold';
      width: 100%;
      max-width: 100%;
      color: #fff;
      font-size: 18px;
      border: 2px solid #fff;
      border-radius: 25px;
      padding: 0 45px 0 25px;
      height: 50px;
      margin: 0; }
      .all-filtro .cont-select select option {
        color: #545454; }

.main-comodidades {
  background-color: #f6f6f6;
  padding: 50px 0 40px 0;
  overflow: hidden; }
  .main-comodidades h2, .main-comodidades h3 {
    text-transform: initial;
    margin: 20px 0 15px 0;
    font-size: 20px;
    font-family: 'Montserrat-SemiBold';
    display: block;
    width: 100%;
    clear: both;
    line-height: inherit; }
  .main-comodidades ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    overflow: hidden; }
    .main-comodidades ul li {
      float: left;
      width: 33.333%;
      padding-right: 15px;
      padding-left: 25px;
      font-size: 18px;
      position: relative;
      margin: 0 0 8px 0; }
      .main-comodidades ul li:before {
        background-color: #fff;
        width: 16px;
        height: 16px;
        border-radius: 4px;
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        border: 2px solid #545454;
        display: block; }
      .main-comodidades ul li.active:before {
        background-color: #e4b32b;
        border-color: #e4b32b; }

.cont-barrio {
  clear: both;
  margin-bottom: 25px; }

#cover-video {
  margin: 30px auto 30px;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  max-width: 800px; }

.detalle-inmueble {
  font-size: 18px;
  padding-bottom: 45px;
  padding-top: 50px; }
  .detalle-inmueble h2 {
    text-transform: initial;
    font-size: 25px;
    font-family: 'Montserrat-SemiBold';
    line-height: inherit;
    margin: 0 0 10px 0; }
  .detalle-inmueble p {
    line-height: 23px; }

.filtro-personalizado {
  padding-top: 30px;
  padding-bottom: 40px;
  text-align: center;
  background-color: #f6f6f6; }
  .filtro-personalizado .cont-btn {
    min-width: 135px;
    margin: 0 7px 25px 7px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    /*&:hover{
			.tooltip-colviva{
				display: block;
			}

		}*/ }
    .filtro-personalizado .cont-btn .btn-filtro {
      display: block;
      width: 100%;
      border: 2px solid #e4b32b;
      text-align: center;
      color: #e4b32b;
      font-family: 'Montserrat-SemiBold';
      font-size: 18px;
      border-radius: 25px;
      padding: 8px 25px;
      position: relative;
      cursor: pointer; }
      .filtro-personalizado .cont-btn .btn-filtro:hover, .filtro-personalizado .cont-btn .btn-filtro.open {
        background-color: #e4b32b;
        color: #fff; }
  .filtro-personalizado button, .filtro-personalizado input[type="submit"], .filtro-personalizado [type="submit"] {
    background-color: #e4b32b;
    border: 0;
    min-width: 130px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    margin: 0 15px 20px 15px;
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    border-radius: 25px;
    padding: 12px 35px; }
  .filtro-personalizado .filtro-search {
    padding-left: 25px;
    margin-bottom: 4px; }
    .filtro-personalizado .filtro-search input[type="search"] {
      border-radius: 25px;
      font-family: 'Montserrat-SemiBold';
      border: 2px solid #e4b32b;
      display: inline-block;
      max-width: 270px; }
    .filtro-personalizado .filtro-search input[type="submit"] {
      display: inline-block; }

.tooltip-colviva {
  background-color: #fff;
  border-radius: 15px;
  border: 2px solid #545454;
  padding: 15px 15px;
  position: absolute;
  width: 330px;
  left: -68px;
  top: 65px;
  color: #545454;
  display: none;
  z-index: 2; }
  .tooltip-colviva .cerrar {
    right: 13px;
    position: absolute;
    border: 2px solid #ded9d9;
    width: 25px;
    display: block;
    height: 25px;
    border-radius: 50%;
    top: 10px;
    line-height: 19px;
    color: #ded9d9;
    cursor: pointer; }
  .tooltip-colviva h5 {
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    margin: 0 0 15px 0;
    text-align: left; }
  .tooltip-colviva h6 {
    font-family: 'Montserrat-SemiBold';
    font-size: 15px;
    margin: 15px 0 0 0; }
    .tooltip-colviva h6.val-min, .tooltip-colviva h6.val-min-meters {
      float: left; }
    .tooltip-colviva h6.val-max, .tooltip-colviva h6.val-max-meters {
      float: left; }
  .tooltip-colviva:before {
    background: url("../img/background/icon-arrow-up.png") no-repeat 8% bottom;
    content: "";
    position: absolute;
    right: 50px;
    top: -30px;
    z-index: 1;
    width: 135px;
    height: 30px;
    display: block; }
  .tooltip-colviva input[type="text"],
  .tooltip-colviva input[type="number"] {
    width: 46%;
    float: left;
    border: 2px solid #545454;
    padding: 0 15px;
    height: 45px;
    text-align: center;
    font-family: 'Montserrat-SemiBold';
    font-size: 15px;
    border-radius: 25px;
    background-color: #fff;
    margin: 0 0 15px 0; }
  .tooltip-colviva button, .tooltip-colviva input[type="submit"], .tooltip-colviva [type="submit"] {
    width: 46%;
    float: right;
    margin: 0; }
  .tooltip-colviva .reset-all {
    line-height: 45px;
    font-size: 17px;
    font-family: 'Montserrat-SemiBold';
    float: left;
    color: #545454;
    cursor: pointer;
    background: none;
    margin: 0;
    padding: 0; }
  .tooltip-colviva .val-max,
  .tooltip-colviva .val-max-meters {
    float: right !important; }

.range-precios {
  display: block;
  clear: both;
  margin-bottom: 50px; }
  .range-precios .ui-slider-horizontal {
    height: 3px;
    border: 0 !important;
    background: #545454 !important;
    position: relative; }
  .range-precios .ui-widget-header {
    background: #e4b32b;
    top: 0;
    height: 100%;
    position: absolute; }
  .range-precios .ui-slider-handle {
    background: #e4b32b !important;
    border: 0 !important;
    border-radius: 50% !important;
    width: 16px !important;
    height: 16px !important;
    top: -7px !important;
    position: absolute;
    margin-left: -.6em; }
    .range-precios .ui-slider-handle:focus {
      outline: none; }

.min-max-habitaciones {
  margin-bottom: 15px; }
  .min-max-habitaciones .btn-min-max {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid;
    display: inline-block; }
    .min-max-habitaciones .btn-min-max i {
      transform: translate(0, 50%);
      position: absolute;
      display: block;
      position: relative; }
  .min-max-habitaciones .number-rooms {
    font-family: 'Montserrat-SemiBold';
    font-size: 18px;
    display: inline-block;
    transform: translate(0, 50%); }

.bar-fixed {
  margin-top: 28px;
  position: sticky;
  top: 20px;
  padding-bottom: 30px; }

.loading-more-filter span {
  background-color: #e4b32b;
  border: 0;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  margin: 0 15px 20px 15px;
  font-family: 'Montserrat-SemiBold';
  font-size: 18px;
  border-radius: 25px;
  padding: 12px 35px; }

.loading-more-filter .loading-more-gif {
  background: url("../img/background/loading-more.gif") no-repeat center;
  height: 115px;
  width: 100%;
  background-size: contain;
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle; }

.ui-autocomplete {
  max-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 350px !important;
  padding: 0;
  list-style: none;
  margin: 0;
  display: inline-block;
  background: #fff;
  z-index: 8; }
  .ui-autocomplete li {
    padding: 8px;
    color: #5c6a7f;
    font-family: 'Montserrat-SemiBold';
    cursor: pointer; }

.nav-bottom-whatsapp {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 10001;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px; }

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both; }

.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: row;
  position: relative; }

.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row; }

.closePopup-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  position: absolute;
  right: 5px;
  height: 30px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #dadada; }
  .closePopup-whatsapp i {
    font-style: normal;
    font-weight: bold;
    font-family: 'Montserrat-bold'; }
  .closePopup-whatsapp:hover {
    background-color: #f4b307c7;
    color: #fff; }

.icon-whatsapp {
  width: 58px; }

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #e6e6e6;
  border-radius: 20px;
  font-size: 1em;
  background-color: #e6e6e6;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s; }

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705); }

.popup-whatsapp-open {
  display: block; }

.mb-none {
  margin-bottom: 0; }

.padding-none {
  padding-left: 0;
  padding-right: 0; }

.text-center {
  text-align: center; }

.full {
  clear: both;
  width: 100%; }

.pl-none {
  padding-left: 0; }

.pr-none {
  padding-right: 0; }

.plr-none {
  padding-left: 0;
  padding-right: 0; }

.clr {
  clear: both;
  float: none; }

.center {
  margin: auto; }

.inline {
  display: inline-block;
  vertical-align: top; }

.inline-bottom {
  display: inline-block;
  vertical-align: bottom; }

.left {
  float: left; }

.right {
  float: right; }

.relative {
  position: relative; }

.wrapper-main {
  max-width: 1170px; }

.wrapper-main-lg {
  max-width: 1230px; }

.wrapper-main-md {
  max-width: 1000px; }

.wrapper-main-sm {
  max-width: 850px; }

/*END Default styles*/
/* ------------------------------Ipad Horizontal---------------------------- */
/* ------------------------------Ipad Vertical---------------------------- */
@media handheld, only screen and (min-width: 768px) and (max-width: 1023px) {
  #nav-icon {
    display: block !important; } }

/* ---------------------------- 320px-640px -------------------------- */
@media handheld, only screen and (max-width: 667px) {
  #nav-toogle {
    display: block; }
  h1, h2 {
    font-size: 38px;
    line-height: 39px;
    margin-bottom: 20px; }
    h1 span, h2 span {
      font-size: 29px; }
  header {
    padding-bottom: 0; }
    header nav {
      clear: both;
      left: -100%;
      margin-top: 145px;
      position: relative;
      transition: all 0.4s ease-out;
      position: absolute;
      top: 0;
      z-index: 99;
      width: 100%; }
      header nav ul li {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        border-right: 0;
        text-align: left; }
        header nav ul li a {
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          padding: 5px 20px;
          font-size: 16px;
          color: #fff; }
        header nav ul li:after {
          display: none; }
    header .logo {
      max-width: 140px;
      margin: 0 10px 0 15px; }
    header .pago {
      padding: 10px 20px;
      display: block;
      float: none;
      clear: both; }
      header .pago a {
        width: 80px;
        margin: 0; }
    header .redes {
      margin-top: 15px;
      margin-right: 65px;
      margin-bottom: 15px; }
  nav ul.sub-menu {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0 5px 0;
    overflow: hidden; }
    nav ul.sub-menu li a {
      padding: 3px 40px !important;
      border-bottom: 0 !important;
      color: #fff;
      font-size: 15px; }
  .banner-home {
    margin-bottom: 30px; }
  .main-proyectos-home {
    margin-bottom: 30px; }
    .main-proyectos-home .info {
      padding: 0 15px 30px 15px; }
      .main-proyectos-home .info h1, .main-proyectos-home .info h2 {
        font-size: 30px;
        line-height: 35px; }
  .bg-proyectos article {
    padding: 30px 15px; }
  .main-nuestros-proyectos h1, .main-nuestros-proyectos h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 35px; }
    .main-nuestros-proyectos h1 span, .main-nuestros-proyectos h2 span {
      font-size: 30px; }
  .main-nuestros-proyectos {
    margin-bottom: 20px; }
  .proyectos-colviva {
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%; }
    .proyectos-colviva figure img {
      height: 250px; }
  .colviva-tu-casa {
    padding: 30px 0;
    margin-bottom: 30px; }
    .colviva-tu-casa h2, .colviva-tu-casa h3 {
      padding: 0 15px; }
    .colviva-tu-casa h2 {
      font-size: 30px;
      line-height: 27px;
      margin: 0 0 25px 0; }
    .colviva-tu-casa .info {
      margin: 0 0 40px 0;
      padding: 0;
      width: 160px; }
    .colviva-tu-casa .swiper-container {
      padding: 15px 0 0 0; }
    .colviva-tu-casa .pagination-colviva {
      display: block; }
  .main-blog {
    padding: 0 15px 30px 15px; }
    .main-blog h2 {
      font-size: 35px;
      margin-bottom: 20px; }
    .main-blog .swiper-next, .main-blog .swiper-prev {
      margin-top: -100px; }
  .card-blog h3 {
    font-size: 21px;
    min-height: auto; }
  footer {
    text-align: center; }
    footer article {
      text-align: left;
      margin-bottom: 20px; }
      footer article h4 {
        font-size: 20px; }
      footer article li {
        font-size: 15px; }
    footer figure {
      margin: 0 auto 30px;
      display: block; }
    footer .wrapper-main {
      padding-left: 15px;
      padding-right: 15px; }
    footer .redes {
      float: none;
      display: inline-block;
      vertical-align: top;
      margin-top: 0; }
    footer .franja ul li {
      display: block;
      text-align: center;
      margin: 0 0 5px 0;
      width: 100%; }
      footer .franja ul li a {
        display: block; }
  .suscribete {
    padding-top: 30px;
    padding-bottom: 30px; }
    .suscribete h5 {
      font-size: 15px;
      text-align: center; }
  .banner-info-full {
    padding-top: 0;
    padding-bottom: 40px; }
    .banner-info-full:before {
      width: 100%; }
    .banner-info-full h2 {
      font-size: 30px;
      line-height: 35px; }
      .banner-info-full h2 span {
        font-size: 28px; }
    .banner-info-full .wrapper-info {
      display: block; }
    .banner-info-full figure {
      width: 100%; }
    .banner-info-full .info-banner {
      width: 100%;
      padding: 15px 15px 0 15px; }
  .main-data-proyectos {
    padding: 30px 15px 40px 15px; }
    .main-data-proyectos h1, .main-data-proyectos h2 {
      font-size: 42px;
      line-height: 42px; }
      .main-data-proyectos h1 span, .main-data-proyectos h2 span {
        font-size: 25px; }
    .main-data-proyectos ul li span {
      max-width: 70%;
      word-break: break-word; }
  .gallery-proyect {
    margin-top: 10px; }
    .gallery-proyect figure img {
      height: 170px; }
  .data-proyectos-ubicacion {
    padding: 30px 15px; }
    .data-proyectos-ubicacion h1, .data-proyectos-ubicacion h2 {
      font-size: 42px;
      line-height: 42px; }
      .data-proyectos-ubicacion h1 span, .data-proyectos-ubicacion h2 span {
        font-size: 25px; }
    .data-proyectos-ubicacion .info {
      max-width: 275px; }
  .gallery-relacionadas {
    padding-top: 0; }
    .gallery-relacionadas figure img {
      height: 170px; }
    .gallery-relacionadas figure:nth-child(1), .gallery-relacionadas figure:nth-child(2), .gallery-relacionadas figure:nth-child(3) {
      width: 33.333%; }
  .main-trayectoria {
    padding: 30px 15px 25px 15px; }
    .main-trayectoria figure {
      margin-top: 30px; }
    .main-trayectoria p {
      font-size: 16px;
      line-height: 21px; }
  .main-propositos {
    padding: 30px 15px 0 15px; }
    .main-propositos p {
      padding: 0;
      font-size: 16px;
      line-height: 21px; }
    .main-propositos h3 {
      font-size: 19px;
      margin-bottom: 25px; }
  .main-nuestro-equipo {
    padding: 30px 15px 40px 15px; }
    .main-nuestro-equipo .next-white {
      right: 0; }
    .main-nuestro-equipo .prev-white {
      left: 0; }
  .info-equipo {
    margin: 0 auto 30px; }
    .info-equipo .info {
      width: 250px;
      padding-left: 20px;
      padding-left: 15px; }
      .info-equipo .info h3 {
        font-size: 27px;
        line-height: 30px;
        word-break: break-word; }
      .info-equipo .info h4 {
        font-size: 16px; }
  .main-centrales {
    padding: 30px 15px 15px 15px; }
    .main-centrales p {
      font-size: 16px;
      line-height: 21px; }
    .main-centrales h3 {
      background-size: 45px !important;
      font-size: 25px;
      margin: 0 0 20px 0;
      padding-left: 60px; }
    .main-centrales.col-gray-dark:before {
      width: 100%; }
  .title-one {
    padding: 25px 0 10px 0; }
  .main-proyectos-gallery {
    padding: 30px 15px 20px 15px; }
    .main-proyectos-gallery h3 {
      font-size: 38px;
      line-height: 39px;
      margin: 0 0 20px 0; }
      .main-proyectos-gallery h3 span {
        font-size: 29px; }
  .swiper-gallery-proyectos .swiper-container {
    height: auto; }
  .swiper-gallery-proyectos figure figcaption {
    max-width: 300px;
    font-size: 21px;
    line-height: 28px; }
  .swiper-gallery-proyectos .next-yellow, .swiper-gallery-proyectos .prev-yellow {
    transform: scale(0.8);
    margin-top: -50px; }
  .main-nuestro-equipo h5 {
    font-size: 30px; }
  .main-nuestro-equipo hr {
    margin-bottom: 40px; }
  .wrap-equipo.col-left:before {
    left: 0; }
  .wrap-equipo.col-left .col-xl-5 {
    order: 1; }
  .wrap-equipo.col-left .col-xl-7 {
    order: 2; }
  .wrap-equipo:before, .wrap-equipo:after {
    width: 100%; }
  .wrap-equipo.col-right:before {
    left: 0; }
  .wrap-equipo .info-equipo {
    float: none;
    margin: 0 auto 30px; }
    .wrap-equipo .info-equipo:nth-child(1) {
      margin: 0 auto 30px; }
    .wrap-equipo .info-equipo:nth-child(2) {
      margin: 0 auto 30px; }
    .wrap-equipo .info-equipo:nth-child(3) {
      margin: 0 auto 30px; }
  .equipo-all {
    left: 0; }
  .main-propositos figure {
    margin: 0 0 30px 0;
    padding: 0 15px;
    width: 48%; }
  .main-epic {
    background: #000 url("../img/background/bg-404-xs.jpg") no-repeat bottom center;
    background-size: cover;
    padding: 150px 15px 80px 15px;
    min-height: auto; }
    .main-epic br {
      display: none; }
  .main-mapa {
    padding: 30px 15px 20px 15px; }
    .main-mapa h1 {
      font-size: 33px; }
    .main-mapa p {
      font-size: 16px;
      margin-bottom: 30px; }
    .main-mapa article {
      width: 100%;
      margin-bottom: 20px;
      padding: 0; }
  .main-wrap-blog {
    padding-top: 20px; }
    .main-wrap-blog h1 {
      font-size: 33px;
      margin: 0 0 30px 0;
      line-height: 43px; }
      .main-wrap-blog h1 strong {
        font-size: 43px; }
    .main-wrap-blog .wrap-blog {
      padding: 30px 15px 20px 15px; }
    .main-wrap-blog .card-blog {
      margin: 0 0 30px 0; }
  .banner-blog h1 {
    left: 15px;
    bottom: 20px;
    font-size: 45px; }
  .main-politicas {
    background: #545454;
    padding-top: 50px;
    padding-bottom: 0; }
    .main-politicas h1 {
      margin: 0 0 30px 0;
      text-align: center;
      display: block;
      float: none; }
  .content-accordion {
    padding: 30px 0 35px 0; }
  .main-blog-detalle {
    padding: 30px 15px 0 15px; }
  .banner-blog-detalle {
    margin-bottom: 0; }
    .banner-blog-detalle:after {
      display: none; }
    .banner-blog-detalle .wrapper-main-md {
      display: block; }
    .banner-blog-detalle figure, .banner-blog-detalle article {
      width: 100%; }
    .banner-blog-detalle article {
      background-color: #ededed;
      padding: 25px 15px; }
      .banner-blog-detalle article h2, .banner-blog-detalle article h3, .banner-blog-detalle article h4 {
        font-size: 25px;
        line-height: 29px; }
  .wrap-detalle-blog .line-header {
    margin-bottom: 25px; }
  .wrap-detalle-blog h1 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px; }
    .wrap-detalle-blog h1 span {
      font-size: 25px; }
  .wrap-detalle-blog .col {
    display: block;
    padding: 0; }
    .wrap-detalle-blog .col h4, .wrap-detalle-blog .col h3, .wrap-detalle-blog .col h4 {
      width: 100%;
      margin: 0 0 25px 0;
      padding: 0; }
    .wrap-detalle-blog .col img {
      width: 100%;
      max-width: 100%; }
  .banner-contacto .cont-info {
    width: 100%;
    bottom: 0;
    position: relative; }
    .banner-contacto .cont-info h1 {
      font-size: 35px;
      letter-spacing: 2px;
      padding: 30px 15px 0 15px;
      text-align: center; }
    .banner-contacto .cont-info h2 {
      font-size: 35px; }
    .banner-contacto .cont-info article {
      padding: 30px 15px; }
      .banner-contacto .cont-info article br {
        display: none; }
  .main-contacto {
    padding: 30px 15px 30px 15px; }
    .main-contacto article {
      margin-bottom: 30px; }
    .main-contacto textarea {
      margin-top: 20px;
      height: 120px; }
    .main-contacto button, .main-contacto input[type="submit"], .main-contacto [type="submit"] {
      float: none;
      margin: 0 auto;
      display: block; }
    .main-contacto div.wpcf7-response-output {
      margin-top: 0; }
  .banner-contacto img,
  .banner-blog img,
  .banner-mapa img {
    height: 220px;
    object-fit: cover; }
  #media_image-2 {
    max-width: 200px;
    margin: 0 auto 20px; }
  .main-trayectoria.col-gray-light:before {
    width: 100%; }
  .bar-fixed {
    margin-top: 0;
    position: relative;
    top: 0;
    padding-bottom: 0; }
  .colviva-accordion h3 {
    padding: 0;
    font-size: 16px; }
  .colviva-accordion .info-content {
    padding: 20px 0; }
  .galeria #galery-img-top {
    width: 100% !important;
    height: 100% !important; }
  .h-100.contacto {
    padding: 30px 15px !important; }
  .nuestros-proyectos.py-5 {
    overflow: hidden;
    padding: 30px 0 0 0 !important; }
    .nuestros-proyectos.py-5 .text-center.mb-5 {
      margin-bottom: 0 !important; }
    .nuestros-proyectos.py-5 .col-md-7 {
      padding: 0; }
  .nuestros-proyectos .conoce.conoce-especial {
    padding: 30px 15px 25px 15px !important;
    margin: 0 auto;
    top: 0 !important; }
  ul li.nav-item {
    width: 100% !important; }
    ul li.nav-item i {
      float: left;
      width: 45px;
      text-align: center;
      margin-right: 15px; }
    ul li.nav-item span {
      float: left;
      max-width: 85%; }
  .info-bg-proyect-video {
    margin-top: 20px;
    padding: 0px 15px 30px 15px; }
  section.video video {
    width: 330px !important;
    height: 186px !important; }
  .cita-proyecto {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    max-width: 300px !important;
    margin: 0 auto 30px;
    padding-top: 20px;
    text-align: center; }
  .icon-proyect ul li img {
    max-height: 22px !important; }
  .banner-inmobiliaria {
    padding: 40px 15px 20px 15px;
    height: auto; }
    .banner-inmobiliaria h1 {
      font-size: 30px; }
      .banner-inmobiliaria h1 strong {
        font-size: 65px;
        margin-top: -12px; }
      .banner-inmobiliaria h1 span {
        font-size: 35px;
        line-height: 25px; }
    .banner-inmobiliaria .btn-col {
      min-width: 140px;
      margin: 0 5px 25px 5px; }
  .propiedades-inmobiliaria {
    padding: 30px 15px 25px 15px; }
  .info-propiedades {
    margin: 0 auto 30px;
    display: block; }
  .main-servicion-all {
    padding: 30px 0 10px 0; }
    .main-servicion-all .info {
      max-width: 140px;
      margin: 0 10px 30px 10px; }
    .main-servicion-all figcaption {
      font-size: 15px;
      padding-top: 10px; }
  .all-filtro {
    margin-bottom: 0px; }
    .all-filtro .cont-select select {
      margin-bottom: 20px; }
  .gallery-inmueble {
    float: none;
    font-size: 16px; }
  .detalle-inmueble {
    padding: 30px 15px 25px 15px; }
    .detalle-inmueble h2 {
      font-size: 20px; }
  .gallery-right {
    padding: 0;
    width: 100%; }
  .main-comodidades {
    padding: 10px 15px 0 15px; }
    .main-comodidades ul li {
      width: 50%;
      font-size: 14px; }
  .caracteristicas-detalle ul {
    flex-wrap: wrap; }
    .caracteristicas-detalle ul li {
      max-width: inherit !important;
      margin: 0 0px !important;
      min-height: 36px;
      width: 50%;
      font-size: 13px !important;
      margin-bottom: 19px !important;
      display: flex;
      align-items: center;
      line-height: 20px; }
  .gallery-inmueble {
    margin-bottom: 13px !important; }
    .gallery-inmueble .next-white, .gallery-inmueble .prev-white {
      transform: scale(0.6); }
  .filtro-personalizado {
    padding-top: 30px;
    padding-bottom: 20px; }
    .filtro-personalizado .cont-btn {
      min-width: 155px;
      margin: 0 5px 15px 5px; }
      .filtro-personalizado .cont-btn .btn-filtro {
        font-size: 16px;
        padding: 8px 20px; }
  .info-caracteristicas ul li {
    font-size: 15px; }
  .tooltip-colviva {
    left: -173px;
    top: 59px; }
  .flex-menu-responsive {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 5; }
    .flex-menu-responsive .tooltip-colviva {
      width: 100%;
      left: 0;
      right: 0; }
    .flex-menu-responsive .cont-btn {
      min-width: 195px; }
      .flex-menu-responsive .cont-btn .btn-filtro {
        width: 80%;
        margin: 0 auto; }
  .filtro-personalizado .filtro-search {
    padding: 5px; }
    .filtro-personalizado .filtro-search input[type="search"] {
      max-width: 250px;
      font-size: 14px; }
    .filtro-personalizado .filtro-search input[type="submit"] {
      font-size: 15px;
      margin: 0;
      padding: 11px 18px;
      min-width: 80px; }
  .swiper-gallery-proyectos {
    padding-top: 30px; }
  .img-chc {
    margin-bottom: 10px;
    display: none; }
  .img-chc-1, .img-chc-2 {
    display: block; } }

.fiori {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff !important; }

.fiori .contacto {
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 3rem; }
  @media (max-width: 780px) {
    .fiori .contacto {
      padding-top: 30px; } }

.fiori .contacto h2 {
  font-weight: 500; }

.fiori .contacto h2, .fiori .contacto p {
  color: #fff !important; }

.contacto span.wpcf7-not-valid-tip {
  color: #ce4644;
  font-weight: bold;
  font-size: 12px;
  margin-top: -6px;
  float: left;
  display: block;
  width: 100%; }

.contacto div.wpcf7-response-output {
  font-size: 13px;
  text-align: center;
  color: #e53d3b; }

.contacto p {
  margin: 0 !important; }

.fiori input[type=text], .fiori input[type=email] {
  border-radius: 35px;
  display: block;
  width: 100%;
  max-width: none;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.fiori textarea {
  border-radius: 10px;
  width: 100%;
  height: auto;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.fiori label {
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: bold; }

.fiori input[type=submit] {
  background-color: #e53d3b;
  border: 0;
  padding: 0.5rem 1.5rem 0.6rem;
  border-radius: 20px;
  line-height: 1;
  color: #fff;
  font-weight: bold; }

.galeria h2 {
  color: #e53d3b;
  font-weight: 300 !important;
  font-size: 2.3rem; }

.galeria .search {
  bottom: 0;
  right: 0;
  cursor: pointer; }

.nuestros-proyectos h2 {
  color: #e53d3b;
  font-weight: 300;
  font-size: 2.3rem; }

.nuestros-proyectos h2 span {
  font-weight: 100;
  font-size: 2rem;
  line-height: 1; }

.nuestros-proyectos .conoce {
  background-color: #626262;
  position: relative;
  right: 0;
  margin-left: -3rem;
  z-index: -1;
  padding: 25px 50px 25px 100px; }
  .nuestros-proyectos .conoce.conoce-especial {
    padding: 25px 50px 25px 100px;
    /*top: 20px;*/ }

.nuestros-proyectos .conoce p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 22px; }

.nuestros-proyectos .conoce p.conoce-titulo {
  font-size: 1.3rem; }

.nuestros-proyectos .conoce h2 {
  color: #ffffff;
  font-weight: 400 !important;
  letter-spacing: 2px; }

.contacto h2 {
  font-weight: 300 !important;
  font-size: 2.1rem; }

.contacto p {
  font-size: 1.3rem; }

.fiori ul li.nav-item {
  color: #545454;
  width: 25%; }

.vita-mall ul li.nav-item {
  color: #545454;
  width: 25%; }

.contacto ul li {
  padding: 0.5rem; }

.contacto ul li img {
  width: 32px;
  height: 32px;
  margin-right: 0.3rem; }

.planos h2 {
  color: #e53d3b;
  font-weight: 300 !important;
  font-size: 2.3rem;
  line-height: 1;
  text-transform: uppercase; }

.planos img {
  cursor: pointer; }

.planos a {
  margin-bottom: 15px;
  background-color: #e53d3b;
  border: 0;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  padding: 0.5rem 1.5rem 0.6rem; }

.video a {
  background-color: #e53d3b;
  border: 0;
  padding: 0.5rem 1.5rem 0.6rem;
  border-radius: 20px;
  line-height: 1;
  color: #fff;
  font-weight: bold; }

.ubicacion h2 {
  color: #e53d3b;
  font-weight: 300 !important;
  font-size: 2.3rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px !important; }

.ubicacion .item-brand {
  flex: 1 228px;
  overflow: hidden;
  /*  img{
            width: 100%;
        } */ }
  .ubicacion .item-brand h5 {
    color: #545454 !important; }

.seccionpopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  text-align: center;
  padding: 7rem 0; }

.seccionpopup .salir {
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  right: 0;
  border: 2px solid;
  line-height: 1;
  padding: 0.2rem 0.6rem;
  border-radius: 100%; }

.img-wp {
  z-index: 1000;
  top: 50%;
  right: 0;
  width: 70px; }

span.wpcf7-not-valid-tip {
  color: inherit;
  font-weight: bold; }

div.wpcf7-validation-errors, div .wpcf7-acceptance-missing {
  border: none; }

div.wpcf7-response-output {
  margin: auto;
  border: none;
  font-weight: bold; }

.galeria #galery-img-top {
  width: 480px;
  height: 340px; }

.fiori h2, .fiori p {
  color: #545454; }

.fiori .fiori-h2 {
  color: #e53d3b !important;
  margin-bottom: 0; }

.vita-mall input[type=submit] {
  background-color: #ffb924; }

.vita-mall .vita-mall-h2 {
  color: #ffb924 !important; }

.swiper-galeria {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 4rem; }
  .swiper-galeria .swiper-wrapper {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform; }
  .swiper-galeria .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-galeria .swiper-pagination-custom, .swiper-galeria .swiper-pagination-fraction {
    bottom: 9px;
    left: 0;
    width: 100%;
    z-index: 10000; }
  .swiper-galeria .swiper-pagination {
    text-align: right; }
  .swiper-galeria .swiper-pagination-bullet {
    width: 20px;
    height: 25px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    text-align: center;
    color: #e53d3b;
    border: 1px solid #e53d3b;
    box-shadow: 0.5px 0.5px 0.5px #e53d3b;
    opacity: 1; }
  .swiper-galeria .swiper-pagination-bullet-active {
    opacity: 1;
    background: #e53d3b;
    color: #fff; }

#img-popup {
  height: 550px; }
  @media (max-width: 780px) {
    #img-popup {
      height: auto; } }

section.video video {
  height: 450px;
  margin: 30px auto 30px;
  vertical-align: top;
  vertical-align: top;
  width: 800px; }
  section.video video:focus, section.video video:hover {
    outline: none; }

.info-bg-proyect-video {
  background: #f6f6f6;
  margin-top: 40px;
  padding-top: 30px;
  overflow: hidden;
  padding-bottom: 50px; }

.bg-proyect {
  background: #f6f6f6; }

.icon-proyect ul li img {
  width: auto;
  max-height: 22px; }

.cita-proyecto {
  position: absolute;
  left: 130px;
  top: 33%;
  max-width: 300px; }

.fiori.vita-mall .cita-proyecto {
  left: 89px;
  top: 37%;
  max-width: 365px; }

.nuestros-proyectos figure {
  position: relative;
  padding: 30px 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .nuestros-proyectos figure img {
    margin: 0 !important; }

.nuestros-proyectos .conoce {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

/***************** Estilos en linea **********************/
.content-form-one {
  display: none; }

/* ---------------------------- 320px-640px -------------------------- */
@media handheld, only screen and (max-width: 667px) {
  .nuestros-proyectos .conoce {
    position: relative;
    padding: 1rem 2rem 1rem 5rem; } }

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

* {
  hyphens: none !important; }

#nav-toogle-sendos {
  width: 40px;
  height: 40px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99;
  border-radius: 50%;
  border: 4px solid transparent;
  display: inline-block;
  vertical-align: top;
  right: 15px;
  top: 17px;
  display: none; }

#nav-toogle-sendos span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: 99;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); }

#nav-toogle-sendos span:nth-child(1) {
  top: 11px; }

#nav-toogle-sendos span:nth-child(2),
#nav-toogle-sendos span:nth-child(3) {
  top: 30px; }

#nav-toogle-sendos span:nth-child(4) {
  top: 21px; }

#nav-toogle-sendos.open span:nth-child(1) {
  left: 50%;
  top: 21px;
  width: 0%; }

#nav-toogle-sendos.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 21px; }

#nav-toogle-sendos.open span {
  background: #fff !important; }

#nav-toogle-sendos.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px; }

#nav-toogle-sendos.open span:nth-child(4) {
  left: 50%;
  top: 21px;
  width: 0%; }

.header-sendos {
  background-color: #0B232F;
  padding: 15px 0;
  z-index: 3;
  position: relative; }
  .header-sendos .logo-sendos {
    display: inline-block;
    vertical-align: top;
    max-width: 130px; }
    .header-sendos .logo-sendos img {
      display: block; }
  .header-sendos nav ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .header-sendos nav ul li {
      float: left;
      font-family: 'Inter-Regular';
      margin: 0 15px; }
      .header-sendos nav ul li a {
        display: block;
        color: #ffff;
        transition: all 0.5s ease;
        line-height: 40px; }
      .header-sendos nav ul li.nav-active a {
        padding: 0 15px;
        background-color: #E8AC79;
        border-radius: 13px;
        color: #0B232F; }
      .header-sendos nav ul li.nav-active:hover a {
        background-color: #fff;
        color: #0B232F; }
      .header-sendos nav ul li:last-child {
        margin-right: 0; }
      .header-sendos nav ul li:hover a {
        color: #E8AC79; }
  .header-sendos .wrapper-main-sendos {
    display: flex;
    align-items: center;
    justify-content: space-between; }

.main-banner-sendos {
  background: url("../images/sendos/banner-home-sendos.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  padding: 140px 0; }
  .main-banner-sendos:after {
    background-color: #0B232F;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%; }
  .main-banner-sendos .wrapper-main-sendos {
    z-index: 2; }
  .main-banner-sendos h1 {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-family: 'NewYork-Regular';
    font-size: 50px;
    margin: 0 0 40px 0;
    font-weight: normal;
    line-height: 57px;
    width: 100%; }
  @media (max-width: 660px) {
    .main-banner-sendos {
      padding: 60px 15px; }
      .main-banner-sendos h1 {
        line-height: 38px;
        font-size: 25px; } }

.nav-filter-sendos {
  background-color: #fff;
  max-width: 1200px;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  border-radius: 13px;
  padding: 6px 10px; }
  .nav-filter-sendos i {
    background: url("../images/sendos/icon-search.svg") no-repeat center center;
    width: 38px;
    height: 38px;
    display: inline-block;
    vertical-align: top; }
  .nav-filter-sendos .btn-send {
    font-family: 'DM-Sans-Medium';
    display: inline-block;
    vertical-align: top;
    border: 0;
    padding: 10px 25px;
    background-color: #E8AC79;
    text-align: center;
    color: #0B232F;
    border-radius: 13px;
    margin: 0 0 0 30px;
    transition: all 0.3s ease; }
    .nav-filter-sendos .btn-send:focus {
      outline: none; }
    .nav-filter-sendos .btn-send:hover {
      background-color: #0B232F;
      color: #fff; }

.col-nav-filter {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 30px;
  min-width: 230px;
  border-right: 1px solid #d3d3d3; }
  .col-nav-filter .input-quantity {
    background: #ffffff;
    margin: 0;
    width: auto;
    display: inline-block;
    vertical-align: top; }
    .col-nav-filter .input-quantity input[type="number"],
    .col-nav-filter .input-quantity input[type="text"],
    .col-nav-filter .input-quantity .qib-button {
      height: 32px; }
  .col-nav-filter h4 {
    background: url("../images/sendos/icon-select.svg") no-repeat right center;
    background-size: 12px;
    padding-right: 25px;
    color: #0B232F;
    cursor: pointer;
    font-family: 'DM-Sans-Regular';
    font-size: 15px;
    line-height: 38px;
    margin: 0; }
    .col-nav-filter h4.arrow-open {
      background: url("../images/sendos/icon-select-right-active.svg") no-repeat right center;
      background-size: 12px; }
  .col-nav-filter .input-city {
    background: #fff;
    background-size: 12px;
    padding-right: 25px;
    color: #0B232F;
    font-family: 'DM-Sans-Regular';
    font-size: 15px;
    line-height: 38px;
    margin: 0; }
    .col-nav-filter .input-city:focus {
      outline: none;
      background-color: #fff !important;
      box-shadow: none; }
  .col-nav-filter ::-webkit-input-placeholder {
    color: #0B232F; }
  .col-nav-filter ::-moz-placeholder {
    color: #0B232F; }
  .col-nav-filter :-ms-input-placeholder {
    color: #0B232F; }
  .col-nav-filter :-moz-placeholder {
    color: #0B232F; }
  .col-nav-filter select {
    background: url("../images/sendos/icon-select.svg") no-repeat right center;
    background-size: 12px;
    padding-right: 25px;
    color: #0B232F;
    font-family: 'DM-Sans-Regular';
    font-size: 15px;
    line-height: 38px;
    margin: 0; }
    .col-nav-filter select:focus {
      outline: none;
      background-color: #fff !important;
      box-shadow: none; }
  .col-nav-filter.nav-ubicacion {
    border-left: 1px solid #d3d3d3; }
  .col-nav-filter.open-- .tooltip-caption {
    height: auto;
    opacity: 1;
    transform: translateY(-5px);
    visibility: visible; }
    @media (max-width: 660px) {
      .col-nav-filter.open-- .tooltip-caption {
        transform: translateY(0); } }

.autocomplete-items {
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  width: 210px;
  padding: 5px 15px;
  top: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  left: 0;
  max-height: 280px;
  overflow: auto;
  text-align: left;
  color: #0B232F;
  font-family: 'DM-Sans-Regular';
  cursor: pointer; }

.tooltip-caption {
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  width: 210px;
  padding: 15px 15px;
  top: 55px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  left: 0;
  max-height: 280px;
  overflow: hidden;
  transform: translate(0, 10px);
  transition: height 0ms 400ms, opacity 400ms 0ms ease-in,  transform 400ms 0ms ease-in,visibility 400ms 0ms ease-in;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  height: 0; }
  .tooltip-caption select {
    background: url("../images/sendos/icon-select.svg") no-repeat 95% center;
    background-size: 12px;
    font-family: 'DM-Sans-Regular';
    padding: 3px 15px;
    border-radius: 4px;
    display: block;
    color: #0B232F;
    border: 1px solid #e8ac79;
    font-size: 13px;
    margin: 0 3px 10px;
    height: 30px; }
  .tooltip-caption ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .tooltip-caption ul li {
      font-family: 'DM-Sans-Regular';
      float: left; }
      .tooltip-caption ul li a {
        padding: 3px 10px;
        border-radius: 4px;
        display: block;
        color: #0B232F;
        border: 1px solid #e8ac79;
        font-size: 13px;
        margin: 0 3px 10px; }
      .tooltip-caption ul li:hover a, .tooltip-caption ul li.active a {
        background: #e8ac79; }
  .tooltip-caption.visible-tooltip {
    height: auto;
    opacity: 1;
    transform: translateY(-5px);
    visibility: visible; }
    @media (max-width: 660px) {
      .tooltip-caption.visible-tooltip {
        transform: translateY(0); } }

.main-property-home {
  background: #F0EBE5 url("../images/sendos/bg-radis-circle-right.png") no-repeat right bottom;
  background-size: 1000px;
  padding: 60px 0 80px 0; }
  @media (max-width: 660px) {
    .main-property-home {
      padding: 30px 0 40px 0; } }

.col-circle-property h3 {
  color: #2A2A2A;
  font-family: 'NewYork-Regular';
  font-size: 27px;
  text-align: left;
  margin: 0 0 40px 0;
  clear: both; }

@media (max-width: 660px) {
  .col-circle-property {
    padding: 0 15px; }
    .col-circle-property h3 {
      text-align: center;
      margin-bottom: 30px; } }

.child-card-circle {
  text-align: center; }
  .child-card-circle .card-circle-property:nth-child(1) {
    margin-right: -35px; }
    @media (max-width: 660px) {
      .child-card-circle .card-circle-property:nth-child(1) {
        margin: 0 auto; } }
  .child-card-circle .card-circle-property:nth-child(2) {
    z-index: 3; }
    @media (max-width: 660px) {
      .child-card-circle .card-circle-property:nth-child(2) {
        margin: -25px auto 0; } }
  .child-card-circle .card-circle-property:nth-child(3) {
    margin-left: -35px; }
    @media (max-width: 660px) {
      .child-card-circle .card-circle-property:nth-child(3) {
        margin: -25px auto 0; } }

.card-circle-property {
  border: 2px solid #AC6751;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transition: all 0.5s ease; }
  .card-circle-property a {
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    align-items: center;
    justify-content: center; }
  .card-circle-property h2 {
    color: #102E3D;
    font-family: 'NewYork-Regular';
    font-size: 40px;
    text-align: center;
    margin: 0;
    text-transform: inherit;
    transition: all 0.5s ease; }
  .card-circle-property .avatar-property {
    position: absolute;
    z-index: 2;
    max-width: 70px;
    transform: scale(0);
    transition: all 0.5s ease; }
    .card-circle-property .avatar-property:nth-child(2), .card-circle-property .avatar-property:nth-child(4) {
      left: 20px; }
    .card-circle-property .avatar-property:nth-child(3), .card-circle-property .avatar-property:nth-child(5) {
      right: 20px; }
    .card-circle-property .avatar-property:nth-child(2), .card-circle-property .avatar-property:nth-child(3) {
      top: 15px; }
    .card-circle-property .avatar-property:nth-child(4), .card-circle-property .avatar-property:nth-child(5) {
      bottom: 15px; }
  .card-circle-property:hover {
    background-color: #AC6751; }
    .card-circle-property:hover h2 {
      color: #fff; }
    .card-circle-property:hover .avatar-property {
      transform: scale(1); }
  @media (max-width: 660px) {
    .card-circle-property {
      width: 280px;
      height: 280px;
      margin: 0 auto; }
      .card-circle-property h2 {
        font-size: 30px;
        line-height: 31px; } }

.col-luxury-exclusives-property {
  padding: 60px 0 0 0; }
  .col-luxury-exclusives-property h3 {
    color: #2A2A2A;
    font-family: 'NewYork-Regular';
    font-size: 25px;
    text-align: left;
    margin: 0 0 40px 0;
    clear: both;
    float: left; }
  .col-luxury-exclusives-property .btn-sendos {
    float: right; }
  @media (max-width: 660px) {
    .col-luxury-exclusives-property {
      padding: 30px 0 0 0;
      text-align: center; }
      .col-luxury-exclusives-property .btn-sendos {
        margin: 0 auto 15px;
        float: none;
        display: inline-block;
        vertical-align: top; }
      .col-luxury-exclusives-property h3 {
        text-align: center;
        width: 100%;
        margin-bottom: 30px; } }

.main-carrousel-property {
  padding-top: 20px;
  max-width: 100%;
  margin: 0 auto; }
  .main-carrousel-property .swiper-carrousel-property {
    padding-right: 130px;
    padding-left: 130px; }
    @media (max-width: 660px) {
      .main-carrousel-property .swiper-carrousel-property {
        padding-right: 50px;
        padding-left: 50px; } }

.btn-sendos {
  background-color: #102E3D;
  color: #E8AC79;
  font-family: 'Inter-Regular';
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 0;
  display: inline-block;
  vertical-align: top; }
  .btn-sendos.arrow-right {
    background: #102E3D url("../images/sendos/arrow-right-nav.png") no-repeat center right;
    padding-right: 35px;
    background-size: 20px !important; }
  .btn-sendos:hover {
    color: #fff; }
    .btn-sendos:hover.arrow-right {
      background: #102E3D url("../images/sendos/arrow-right-nav-white.png") no-repeat center right; }

.btn-gold {
  background-color: #E8AC79;
  color: #102E3D;
  font-family: 'Inter-Regular';
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: top; }
  .btn-gold.arrow-right {
    background: #E8AC79 url("../images/sendos/arrow-right-nav-blue.png") no-repeat center right;
    padding-right: 35px;
    background-size: 20px !important; }
  .btn-gold:hover {
    color: #102E3D; }
    .btn-gold:hover.arrow-right {
      color: #102E3D;
      background: #fff url("../images/sendos/arrow-right-nav-blue.png") no-repeat center right; }

.card-property {
  max-width: 320px;
  background-color: #0B232F;
  display: block;
  padding: 17px;
  border: 2px solid #0B232F;
  border-radius: 13px;
  overflow: hidden;
  transition: all 0.5s ease;
  margin: 0 auto; }
  .card-property figure {
    overflow: hidden;
    border-radius: 13px;
    border: 2px solid #E8AC79;
    position: relative;
    margin-bottom: 20px; }
    .card-property figure img {
      width: 100%;
      max-height: 185px;
      object-fit: cover;
      transition: all 0.5s ease; }
  .card-property figcaption {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #0B232F;
    border-radius: 6px;
    z-index: 1;
    color: #fff;
    font-family: 'Inter-Light';
    font-size: 14px;
    padding: 4px 8px; }
  .card-property h2 {
    font-family: 'NewYork-Regular';
    text-transform: inherit;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 30px;
    clear: both;
    min-height: 60px; }
  .card-property h3 {
    font-family: 'Inter-Light';
    text-transform: inherit;
    font-size: 17px;
    color: #E59B64;
    margin: 0 0 10px 0;
    line-height: 30px; }
  .card-property h6 {
    color: #E59B64;
    font-size: 14px;
    margin: 0 0 3px 0;
    display: block;
    font-family: 'Inter-Bold';
    line-height: 18px; }
  .card-property ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: inline-block;
    vertical-align: top; }
    .card-property ul li {
      color: #fff;
      float: left;
      padding: 0 15px;
      border-right: 1px solid #c3c3c3;
      text-align: center;
      font-size: 15px; }
      .card-property ul li i {
        height: 18px;
        display: block;
        width: 100%;
        min-width: 20px;
        margin: 0 0 3px 0; }
      .card-property ul li:first-child {
        padding-left: 0; }
      .card-property ul li:last-child {
        border-right: 0;
        padding-right: 0; }
      .card-property ul li.room i {
        background: url("../images/sendos/icon-room.svg") no-repeat center center; }
      .card-property ul li.bathing i {
        background: url("../images/sendos/icon-bathing.svg") no-repeat center center; }
  .card-property:hover {
    border-color: #E8AC79;
    background-color: #F0EBE5; }
    .card-property:hover h6 {
      color: #102E3D; }
    .card-property:hover h2 {
      color: #AC6751; }
    .card-property:hover ul li {
      color: #AC6751; }
      .card-property:hover ul li.room i {
        background: url("../images/sendos/icon-room-dark.svg") no-repeat center center; }
      .card-property:hover ul li.bathing i {
        background: url("../images/sendos/icon-bathing-dark.svg") no-repeat center center; }
    .card-property:hover h3 {
      color: #102E3D; }
    .card-property:hover figure img {
      transform: scale(1.1); }

.col-dreamteam-property {
  padding: 50px 0 60px 0; }
  @media (max-width: 660px) {
    .col-dreamteam-property {
      padding: 40px 15px 0 15px; } }

.next-sendos,
.prev-sendos {
  background-color: #0B232F;
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: 10px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5; }

.cont-arrow {
  float: right; }
  @media (max-width: 660px) {
    .cont-arrow {
      margin-right: 15px; } }

.next-sendos {
  background: #0B232F url("../images/sendos/arrow-right.png") no-repeat center center; }
  .next-sendos:hover {
    background: #0B232F url("../images/sendos/arrow-right-white.png") no-repeat center center; }
  .next-sendos.color-white {
    background: #fff url("../images/sendos/arrow-right-blue.png") no-repeat center center; }

.prev-sendos {
  background: #0B232F url("../images/sendos/arrow-left.png") no-repeat center center;
  margin-right: 50px; }
  .prev-sendos:hover {
    background: #0B232F url("../images/sendos/arrow-left-white.png") no-repeat center center; }
  .prev-sendos.color-white {
    background: #fff url("../images/sendos/arrow-left-blue.png") no-repeat center center; }
  @media (max-width: 660px) {
    .prev-sendos {
      margin-right: 10px; } }

.pagination-sendos {
  width: auto;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px; }
  .pagination-sendos .swiper-pagination-bullet {
    background: #0B232F;
    opacity: 1;
    width: 30px;
    height: 4px;
    border-radius: 0;
    vertical-align: top;
    margin: 0 5px;
    border-radius: 4px; }
  .pagination-sendos .swiper-pagination-bullet-active {
    background: #E59B64 !important; }
  @media (max-width: 660px) {
    .pagination-sendos {
      margin-left: 15px; } }

.main-testimonials-sendos {
  background-color: #102E3D;
  padding: 60px 0;
  text-align: center; }
  .main-testimonials-sendos .swiper-pagination-bullet {
    background: #fff; }
  @media (max-width: 660px) {
    .main-testimonials-sendos {
      padding: 30px 15px; }
      .main-testimonials-sendos .cont-arrow {
        margin-right: 0; } }

.caption-testimonials {
  max-width: 290px;
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
  color: #fff;
  text-align: left; }
  .caption-testimonials h2 {
    color: #E59B64;
    font-size: 18px;
    font-family: 'Inter-Light';
    margin: 0 0 20px 0;
    line-height: 25px; }
  @media (max-width: 660px) {
    .caption-testimonials {
      max-width: 100%;
      padding: 0 0;
      margin: 0 auto 20px;
      text-align: center; } }

.row-swiper-testimonial {
  max-width: 800px;
  display: inline-block;
  vertical-align: top;
  width: 100%; }

.card-testimonials {
  max-width: 300px;
  color: #fff;
  text-align: left; }
  .card-testimonials i {
    max-width: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top; }
  .card-testimonials h4 {
    clear: both;
    color: #E8AC79;
    font-family: 'NewYork-Regular';
    font-size: 20px;
    margin: 0 0 15px 0; }
  .card-testimonials p {
    margin: 0;
    font-family: 'Inter-Light';
    font-size: 15px; }
  @media (max-width: 660px) {
    .card-testimonials {
      margin: 0 auto;
      display: block;
      text-align: center; } }

.info-dreamteam {
  max-width: 370px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px; }
  .info-dreamteam h2 {
    color: #2A2A2A;
    font-family: 'NewYork-Regular';
    font-size: 27px;
    text-align: left;
    margin: 0 0 30px 0;
    clear: both;
    width: 100%; }
  .info-dreamteam p {
    clear: both;
    display: block;
    width: 100%;
    color: #000;
    margin: 0 0 30px 0;
    font-family: 'Inter-Light'; }
  .info-dreamteam i {
    max-width: 80px;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: top; }

.video-sendos {
  display: inline-block;
  vertical-align: top;
  max-width: 700px;
  float: right; }
  .video-sendos figure {
    border-radius: 13px;
    overflow: hidden;
    cursor: pointer; }

.footer-sendos {
  background: #f0ebe5;
  padding: 30px 0; }
  .footer-sendos hr {
    clear: both;
    margin-top: 30px;
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-top: 1px solid #cbcbcb; }
  .footer-sendos .redes-sendos {
    float: left; }
    .footer-sendos .redes-sendos ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .footer-sendos .redes-sendos ul li {
        float: left;
        margin-right: 15px; }
        .footer-sendos .redes-sendos ul li a {
          width: 25px;
          height: 25px;
          text-indent: -9999px;
          display: block;
          background-size: 25px !important; }
        .footer-sendos .redes-sendos ul li.icon-fb a {
          background: url("../images/sendos/logo-facebook.svg") no-repeat center center; }
        .footer-sendos .redes-sendos ul li.icon-it a {
          background: url("../images/sendos/logo-instagram.svg") no-repeat center center; }
        .footer-sendos .redes-sendos ul li.icon-yt a {
          background: url("../images/sendos/logo-youtube.svg") no-repeat center center; }
        .footer-sendos .redes-sendos ul li:last-child {
          margin-right: 0; }
  .footer-sendos .nav-sendos {
    float: right; }
    .footer-sendos .nav-sendos ul {
      list-style: none;
      padding: 0 0;
      margin: 0; }
      .footer-sendos .nav-sendos ul li {
        color: #202020;
        float: left;
        font-family: 'Inter-Bold';
        border-right: 1px solid #cbcbcb;
        font-size: 14px; }
        .footer-sendos .nav-sendos ul li a {
          margin: 0 10px;
          padding: 0 10px;
          color: #202020;
          display: block; }
        .footer-sendos .nav-sendos ul li:last-child {
          border-right: 0; }
          .footer-sendos .nav-sendos ul li:last-child a {
            margin-right: 0;
            padding-right: 0; }
        .footer-sendos .nav-sendos ul li:hover a {
          color: #e59b64; }
  .footer-sendos p {
    color: #202020;
    font-family: 'Inter-Light';
    font-size: 14px;
    margin: 0;
    float: left; }
  .footer-sendos .by-sm {
    float: right;
    max-width: 80px; }

.main-dreamteam {
  background-color: #102E3D;
  color: #fff; }

.main-dreamteam-banner {
  background: url("../images/sendos/bg-circle-doble.svg") no-repeat center center;
  background-size: 100%;
  padding: 60px 0 110px 0;
  text-align: center;
  border-bottom: 2px solid #7c6d5b;
  overflow: hidden; }
  .main-dreamteam-banner h1 {
    color: #E8AC79;
    font-family: 'NewYork-Regular';
    font-size: 115px;
    line-height: 100%;
    margin: 0 0 20px 0;
    letter-spacing: 6px;
    text-transform: inherit; }
  .main-dreamteam-banner .video-dreamteam {
    display: inline-block;
    vertical-align: top;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1; }
    .main-dreamteam-banner .video-dreamteam figure {
      border-radius: 13px;
      overflow: hidden;
      cursor: pointer; }
    .main-dreamteam-banner .video-dreamteam iframe {
      height: 372px;
      width: 600px; }
  @media (max-width: 660px) {
    .main-dreamteam-banner {
      padding: 30px 15px; }
      .main-dreamteam-banner h1 {
        font-size: 40px; }
      .main-dreamteam-banner iframe {
        height: 205px !important;
        width: 330px !important; } }

.row-card-dreamteam {
  padding: 60px 0 70px 0;
  border-bottom: 2px solid #7c6d5b; }
  .row-card-dreamteam h2 {
    font-family: 'NewYork-Regular';
    font-size: 26px;
    margin: 0 0 15px 0;
    font-weight: normal;
    line-height: 31px; }
  .row-card-dreamteam p {
    max-width: 520px;
    margin: 0 0 50px 0;
    font-size: 15px; }
  .row-card-dreamteam .swiper-dreamteam {
    padding-right: 130px;
    padding-left: 130px; }
  @media (max-width: 660px) {
    .row-card-dreamteam {
      padding: 30px 0 40px 0; }
      .row-card-dreamteam .leyend-experts {
        padding: 0 15px; }
        .row-card-dreamteam .leyend-experts h2 {
          font-size: 22px; }
      .row-card-dreamteam .swiper-dreamteam {
        padding-right: 50px;
        padding-left: 50px; } }

.date-community {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 50px; }
  .date-community i {
    max-width: 80px;
    margin: 0 0 15px 0;
    display: inline-block;
    vertical-align: top; }
  .date-community h4 {
    color: #E8AC79;
    font-size: 17px;
    font-family: 'Inter-Regular';
    margin: 0 0 10px 0;
    width: 100%;
    clear: both; }
  .date-community h5 {
    font-family: 'NewYork-Regular';
    font-size: 22px;
    margin: 0 0 20px 0; }
  @media (max-width: 660px) {
    .date-community {
      padding: 0 15px;
      margin: 0 0 20px 0; } }

.main-community-dreamteam {
  padding: 60px 0 70px 0; }
  .main-community-dreamteam .btn-gold {
    float: right;
    margin-top: 40px; }
  .main-community-dreamteam .swiper-community {
    padding-right: 130px;
    padding-left: 130px; }
  .main-community-dreamteam .swiper-slide:after {
    background-color: #7c6e5a;
    width: 92%;
    height: 1px;
    content: "";
    position: absolute;
    left: 60px;
    top: 30px; }
  .main-community-dreamteam .swiper-slide:last-child:after {
    display: none; }
  @media (max-width: 660px) {
    .main-community-dreamteam {
      padding: 30px 0 40px 0;
      text-align: center; }
      .main-community-dreamteam .btn-gold {
        margin: 0 0 30px 0;
        float: none; }
      .main-community-dreamteam .swiper-community {
        padding-right: 50px;
        padding-left: 50px; } }

.card-dreamteam {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  display: block; }
  .card-dreamteam i {
    background: url("../images/sendos/icon-play.png") no-repeat top center;
    width: 40px;
    height: 44px;
    display: block;
    transition: all 0.3s ease; }
  .card-dreamteam img {
    transition: all 0.3s ease; }
  .card-dreamteam .caption {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    display: block;
    padding: 0 30px;
    color: #fff; }
  .card-dreamteam h5 {
    font-family: 'NewYork-Regular';
    font-size: 20px;
    margin: 0 0 5px 0; }
  .card-dreamteam h6 {
    font-family: 'Inter-Regular';
    margin: 0;
    font-size: 16px;
    text-transform: initial;
    font-weight: normal; }
  .card-dreamteam .overflow {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 20px;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 30px 30px 0 30px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; }
  .card-dreamteam:hover img {
    transform: scale(1.1); }
  .card-dreamteam:hover i {
    background-position: center bottom; }

.card-community {
  max-width: 250px;
  text-align: left;
  float: left;
  display: block;
  position: relative;
  padding: 80px 0 0 0; }
  .card-community i {
    width: 60px;
    height: 60px;
    background: url("../images/sendos/arrow-bullet-community.svg") no-repeat top center;
    background-size: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2; }
  .card-community span {
    opacity: 0.1;
    color: #E8AC79;
    font-family: 'DM-Sans-Bold';
    font-size: 120px;
    position: absolute;
    top: 5px;
    left: 0; }
  .card-community h3, .card-community p {
    position: relative;
    z-index: 1; }
  .card-community h3 {
    font-family: 'Inter-Light';
    color: #E59B64;
    font-size: 18px; }
  .card-community p {
    font-size: 14px;
    font-family: 'Inter-Light'; }

.main-property_all-sendos {
  background-color: #F0EBE5;
  padding: 50px 0 70px 0;
  border-bottom: 1px solid #b5b5b5; }
  @media (max-width: 660px) {
    .main-property_all-sendos {
      padding: 30px 15px 40px 15px; } }

.col-property-all {
  display: inline-block;
  vertical-align: top;
  max-width: 700px;
  width: 100%;
  margin-left: 25px; }
  @media (max-width: 660px) {
    .col-property-all {
      max-width: 100%;
      margin: 0 auto;
      display: block; } }

.card-property-details {
  background-color: #102E3D;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px; }
  .card-property-details .gallery-property {
    max-width: 290px;
    float: left;
    position: relative; }
    .card-property-details .gallery-property figure {
      width: 100%;
      display: block; }
      .card-property-details .gallery-property figure img {
        width: 100%;
        max-height: 252px;
        object-fit: cover;
        vertical-align: top; }
    .card-property-details .gallery-property .prev-sendos, .card-property-details .gallery-property .next-sendos {
      position: absolute;
      margin-top: -20px;
      top: 50%;
      transform: scale(0.8); }
      .card-property-details .gallery-property .prev-sendos.swiper-button-disabled, .card-property-details .gallery-property .next-sendos.swiper-button-disabled {
        opacity: 0.5; }
    .card-property-details .gallery-property .next-sendos {
      right: 15px; }
    .card-property-details .gallery-property .prev-sendos {
      left: 15px; }
  .card-property-details .btn-gold {
    background-color: #fff;
    float: right;
    padding: 5px 35px 5px 25px;
    font-size: 14px;
    margin-top: 17px; }
  @media (max-width: 660px) {
    .card-property-details .gallery-property {
      max-width: 100%;
      width: 100%; }
      .card-property-details .gallery-property figure img {
        max-height: 200px; } }

.tags-comfort {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2; }
  .tags-comfort ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .tags-comfort ul li {
      font-family: 'Inter-Regular';
      float: left;
      margin-left: 8px;
      border-radius: 6px;
      line-height: 10px;
      color: #0B232F;
      font-size: 14px;
      padding: 6px 10px; }
      .tags-comfort ul li.like {
        background: url("../images/sendos/icon-like.png") no-repeat center center;
        width: 22px;
        height: 22px;
        text-indent: -9999px;
        cursor: pointer; }
        .tags-comfort ul li.like:hover, .tags-comfort ul li.like.active, .tags-comfort ul li.like.current {
          background: url("../images/sendos/icon-like-active.png") no-repeat center center; }
      .tags-comfort ul li.rent {
        background-color: #E8AC79; }
      .tags-comfort ul li.sale {
        background-color: #BA7C64; }

.details-caption-comfort {
  max-width: 410px;
  width: 100%;
  text-align: left;
  padding: 30px 25px 0 25px;
  float: left;
  position: relative; }
  .details-caption-comfort h2 {
    font-family: 'NewYork-Regular';
    color: #E59B64;
    font-size: 23px;
    margin: 0 0 15px 0;
    text-transform: inherit;
    line-height: 29px;
    display: block;
    clear: both; }
  .details-caption-comfort h3 {
    font-family: 'DM-Sans-Regular';
    font-size: 17px;
    margin: 0 0 15px 0;
    color: #E59B64;
    width: 100%;
    clear: both; }
  .details-caption-comfort h6 {
    font-family: 'DM-Sans-Bold';
    font-size: 13px;
    margin: 0 0 15px 0;
    color: #fff; }
  @media (max-width: 660px) {
    .details-caption-comfort {
      padding: 30px 15px 15px 15px; } }

.type-comfort {
  display: inline-block;
  vertical-align: top; }
  .type-comfort h6 {
    color: #E59B64;
    font-size: 14px;
    margin: 0 0 3px 0;
    display: block;
    font-family: 'Inter-Bold';
    line-height: 18px; }
  .type-comfort ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: inline-block;
    vertical-align: top; }
    .type-comfort ul li {
      color: #fff;
      float: left;
      padding: 0 15px;
      border-right: 1px solid #c3c3c3;
      text-align: center;
      font-size: 15px; }
      .type-comfort ul li i {
        height: 18px;
        display: block;
        width: 100%;
        min-width: 20px;
        margin: 0 0 3px 0; }
      .type-comfort ul li:first-child {
        padding-left: 0; }
      .type-comfort ul li:last-child {
        border-right: 0;
        padding-right: 0; }
      .type-comfort ul li.room i {
        background: url("../images/sendos/icon-room.svg") no-repeat center center; }
      .type-comfort ul li.bathing i {
        background: url("../images/sendos/icon-bathing.svg") no-repeat center center; }

.col-filter-property {
  display: inline-block;
  vertical-align: top;
  max-width: 370px;
  width: 100%; }

.wrap-filter {
  background-color: #F0EBE5;
  text-align: left;
  box-shadow: 0px 18px 30px #AC67514D;
  min-height: 400px;
  border-radius: 15px;
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 30px; }
  .wrap-filter h6 {
    background-color: #102E3D;
    display: block;
    color: #E8AC79;
    width: 100%;
    padding: 10px 25px;
    text-align: left;
    font-family: 'Inter-Light';
    font-size: 22px; }
  .wrap-filter .btn-sendos {
    margin-top: 30px;
    margin-left: 25px; }

.filter-row {
  display: block;
  width: 100%;
  clear: both;
  border-bottom: 1px solid #ACACAC;
  overflow: hidden;
  padding: 20px 25px; }
  .filter-row h3 {
    font-family: 'Inter-Bold';
    margin: 0 0 15px 0;
    color: #2A2A2A;
    font-size: 15px; }
  @media (max-width: 660px) {
    .filter-row {
      padding: 15px 15px; } }

.icos-comfort {
  clear: both;
  width: 100%;
  display: block; }
  .icos-comfort ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .icos-comfort ul li {
      text-align: center;
      float: left;
      width: 50%;
      padding: 0 5px;
      margin-bottom: 15px;
      cursor: pointer; }
      .icos-comfort ul li span {
        clear: both;
        color: #0B232F;
        font-size: 15px;
        font-family: 'Inter-Regular';
        transition: all 0.3s ease; }
      .icos-comfort ul li i {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto;
        background-size: 100% !important; }
      .icos-comfort ul li.i-apartment i {
        background: url("../images/sendos/apartamento-dark.svg") no-repeat center center; }
      .icos-comfort ul li.i-house i {
        background: url("../images/sendos/casa-dark.svg") no-repeat center center; }
      .icos-comfort ul li.i-batch i {
        background: url("../images/sendos/lote-dark.svg") no-repeat center center;
        background-size: 80% !important; }
      .icos-comfort ul li.i-finca i {
        background: url("../images/sendos/finca-dark.svg") no-repeat center center; }
      .icos-comfort ul li:hover.i-apartment i, .icos-comfort ul li.active.i-apartment i, .icos-comfort ul li.current.i-apartment i {
        background: url("../images/sendos/apartamento-gold.svg") no-repeat center center; }
      .icos-comfort ul li:hover.i-house i, .icos-comfort ul li.active.i-house i, .icos-comfort ul li.current.i-house i {
        background: url("../images/sendos/casa-gold.svg") no-repeat center center; }
      .icos-comfort ul li:hover.i-batch i, .icos-comfort ul li.active.i-batch i, .icos-comfort ul li.current.i-batch i {
        background: url("../images/sendos/lote-gold.svg") no-repeat center center;
        background-size: 80% !important; }
      .icos-comfort ul li:hover.i-finca i, .icos-comfort ul li.active.i-finca i, .icos-comfort ul li.current.i-finca i {
        background: url("../images/sendos/finca-gold.svg") no-repeat center center; }
      .icos-comfort ul li:hover span, .icos-comfort ul li.active span, .icos-comfort ul li.current span {
        color: #E59B64; }

.cont-quantity {
  display: inline-block;
  vertical-align: top;
  max-width: 152px;
  width: 100%; }
  .cont-quantity label {
    font-weight: normal;
    font-family: 'Inter-Regular';
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #2A2A2A;
    line-height: 18px; }
  .cont-quantity.input-full input[type="number"],
  .cont-quantity.input-full input[type="text"] {
    max-width: 100%; }
  @media (max-width: 660px) {
    .cont-quantity {
      max-width: 140px; } }

.input-quantity {
  background: #E6DFD7;
  border: 1px solid #E59B64;
  border-radius: 9px;
  margin-bottom: 12px;
  width: 100%;
  display: block; }
  .input-quantity input[type="number"],
  .input-quantity input[type="text"] {
    margin: 0;
    float: left;
    max-width: 58px;
    padding: 0;
    text-align: center;
    width: 100%;
    background: transparent;
    color: #2A2A2A;
    font-family: 'DM-Sans-Regular';
    font-size: 18px;
    height: 40px; }
    @media (max-width: 660px) {
      .input-quantity input[type="number"],
      .input-quantity input[type="text"] {
        max-width: 50px; } }
  .input-quantity .qib-button {
    background: transparent;
    border-radius: 8px;
    font-size: 22px;
    font-family: 'Inter-Black';
    float: left;
    width: 45px;
    color: #2A2A2A;
    height: 40px;
    border: 0;
    transition: all 0.3s ease;
    padding: 0; }
    .input-quantity .qib-button:hover {
      color: #2A2A2A;
      background: rgba(229, 155, 100, 0.4); }
    .input-quantity .qib-button:focus {
      outline: none;
      box-shadow: none; }
    @media (max-width: 660px) {
      .input-quantity .qib-button {
        width: 40px; } }
  .input-quantity input::-webkit-outer-spin-button,
  .input-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .input-quantity input[type=number] {
    -moz-appearance: textfield; }

.range-slide {
  display: block;
  clear: both;
  margin-bottom: 20px; }
  .range-slide .ui-slider-horizontal {
    height: 6px;
    border: 0 !important;
    background: #d1d1d1 !important;
    position: relative;
    clear: both;
    border-radius: 4px; }
  .range-slide .ui-widget-header {
    background: #0B232F;
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 4px; }
  .range-slide .ui-slider-handle {
    background: #E59B64 !important;
    border: 1px solid #E59B64 !important;
    border-radius: 50% !important;
    width: 16px !important;
    height: 16px !important;
    top: -5px !important;
    position: absolute;
    margin-left: -0.6em; }
    .range-slide .ui-slider-handle:focus {
      outline: none; }

.cont-radio {
  display: inline-block;
  vertical-align: top;
  margin-right: 25px; }
  .cont-radio label {
    font-weight: normal;
    font-family: 'Inter-Regular';
    font-size: 15px;
    margin: 0 0 0 10px;
    color: #2A2A2A;
    line-height: 18px; }

.lifgtbox-team {
  max-width: 800px;
  max-height: 455px;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto; }
  .lifgtbox-team .closes {
    color: #2A2A2A;
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'DM-Sans-Bold';
    z-index: 2;
    cursor: pointer;
    font-size: 25px; }
  .lifgtbox-team figure {
    float: left;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    max-height: 455px;
    border-radius: 15px 0 0 15px; }
    .lifgtbox-team figure img {
      width: 100%; }
  .lifgtbox-team #videoframe {
    height: 455px; }
  .lifgtbox-team iframe {
    width: 400px;
    height: 455px; }
  .lifgtbox-team i {
    background: url("../images/sendos/icon-play.png") no-repeat top center;
    width: 40px;
    height: 44px;
    display: block;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    top: 50%;
    margin: -22px auto 0;
    position: absolute;
    cursor: pointer;
    z-index: 1; }
  .lifgtbox-team .info-team {
    font-family: 'Inter-Regular';
    float: left;
    max-width: 50%;
    position: relative;
    padding: 30px;
    color: #2A2A2A;
    font-size: 14px; }
  .lifgtbox-team h2 {
    font-family: 'NewYork-Regular';
    font-size: 22px;
    clear: both;
    width: 100%;
    text-transform: inherit;
    line-height: 25px;
    margin: 0 0 10px 0; }
  .lifgtbox-team h3 {
    font-family: 'Inter-Regular';
    text-transform: inherit;
    font-size: 18px;
    margin: 0 0 10px 0; }
  .lifgtbox-team .btn-whatsapp {
    background: #E8AC79 url("../images/sendos/icon-whatsapp.svg") no-repeat 15px center;
    background-size: 17px !important;
    color: #0B232F;
    font-family: 'Inter-Regular';
    border-radius: 25px;
    padding: 12px 25px 12px 45px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 0;
    display: inline-block;
    vertical-align: top; }
    .lifgtbox-team .btn-whatsapp:hover {
      background-color: #e59b64; }
  @media (max-width: 660px) {
    .lifgtbox-team {
      max-width: 90%; }
      .lifgtbox-team .closes {
        color: #fff;
        background-color: #0B232F;
        width: 30px;
        height: 30px;
        font-size: 24px;
        border-radius: 50%;
        text-align: center;
        line-height: 25px; }
      .lifgtbox-team figure {
        border-radius: 15px 15px 0 0; }
        .lifgtbox-team figure img {
          width: 100%;
          max-height: 180px;
          object-fit: cover; }
      .lifgtbox-team .info-team {
        overflow: auto;
        max-height: 300px;
        margin-bottom: 20px;
        padding: 20px 15px; }
      .lifgtbox-team figure, .lifgtbox-team .info-team {
        max-width: 100%;
        width: 100%; }
      .lifgtbox-team #videoframe {
        height: 180px;
        width: 100%;
        max-width: 100%; }
      .lifgtbox-team iframe {
        max-width: 100%;
        max-height: 180px; } }

.lifgtbox-work {
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background-color: #fff;
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  color: #1E1E1E; }
  .lifgtbox-work .closes {
    color: #2A2A2A;
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'DM-Sans-Bold';
    z-index: 2;
    cursor: pointer;
    font-size: 25px; }
  .lifgtbox-work figure {
    float: left;
    max-width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 15px 0 0 15px; }
    .lifgtbox-work figure img {
      width: 100%; }
  .lifgtbox-work label input[type=checkbox] {
    margin-right: 15px; }
  .lifgtbox-work label a {
    color: #1E1E1E;
    text-decoration: underline; }
  .lifgtbox-work h2 {
    font-family: 'NewYork-Regular';
    font-size: 21px;
    clear: both;
    width: 100%;
    text-transform: inherit;
    line-height: 29px;
    margin: 0 0 20px 0; }
  .lifgtbox-work h3 {
    font-family: 'Inter-Regular';
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #2A2A2A; }
  .lifgtbox-work .info-work {
    font-family: 'Inter-Regular';
    float: left;
    max-width: 55%;
    position: relative;
    padding: 30px;
    color: #2A2A2A;
    font-size: 14px; }
  .lifgtbox-work .btn-send, .lifgtbox-work input[type=submit],
  .lifgtbox-work [type=button], .lifgtbox-work button {
    background: #E8AC79 url("../images/sendos/icon-send.svg") no-repeat 15px center;
    background-size: 17px !important;
    color: #0B232F;
    font-family: 'Inter-Regular';
    border-radius: 25px;
    padding: 12px 25px 12px 45px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 0;
    display: inline-block;
    vertical-align: top;
    margin-top: 15px; }
    .lifgtbox-work .btn-send:hover, .lifgtbox-work input[type=submit]:hover,
    .lifgtbox-work [type=button]:hover, .lifgtbox-work button:hover {
      background-color: #e59b64; }
  @media (max-width: 660px) {
    .lifgtbox-work {
      max-width: 90%; }
      .lifgtbox-work .closes {
        color: #fff;
        background-color: #0B232F;
        width: 30px;
        height: 30px;
        font-size: 24px;
        border-radius: 50%;
        text-align: center;
        line-height: 25px; }
      .lifgtbox-work h2 {
        line-height: 24px;
        margin: 0 0 10px 0;
        font-size: 16px; }
      .lifgtbox-work figure, .lifgtbox-work .info-work {
        width: 100%;
        max-width: 100%; }
      .lifgtbox-work .info-work {
        padding: 20px 15px; }
      .lifgtbox-work figure {
        border-radius: 15px 15px 0 0; }
        .lifgtbox-work figure img {
          max-height: 180px;
          object-fit: cover; } }

.input-sendos {
  margin-bottom: 5px;
  display: inline-block;
  vertical-align: top;
  color: #1E1E1E;
  width: 100%; }
  .input-sendos input[type="text"], .input-sendos input[type="email"],
  .input-sendos input[type="tel"], .input-sendos input[type="number"],
  .input-sendos select {
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d1d1d1;
    height: 40px;
    margin: 0 0 10px 0;
    border-radius: 0;
    padding: 0 15px 0 0;
    color: #2A2A2A; }
  .input-sendos select {
    background: url("../images/sendos/icon-select.svg") no-repeat right center;
    background-size: 10px; }
  @media (max-width: 660px) {
    .input-sendos {
      margin-bottom: 0; } }

.wrap-input-file {
  display: inline-block;
  vertical-align: top;
  margin: 15px 15px 0 0;
  max-width: 300px; }
  .wrap-input-file .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1; }
  .wrap-input-file label {
    max-width: 200px;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 8px 25px 7px 45px;
    font-family: 'Inter-Regular'; }
  .wrap-input-file label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em; }
  .wrap-input-file .iborrainputfile {
    font-size: 15px; }
  .wrap-input-file label {
    background: #fff url("../images/sendos/icon-file.svg") no-repeat 15px center;
    background-size: 17px !important;
    color: #0B232F;
    border: 1px solid #E59B64;
    border-radius: 25px; }
  .wrap-input-file .inputfile-2:focus + label,
  .wrap-input-file .inputfile-2.has-focus + label,
  .wrap-input-file .inputfile-2 + label:hover {
    color: #0B232F; }
  @media (max-width: 660px) {
    .wrap-input-file {
      margin-right: 5px; }
      .wrap-input-file .iborrainputfile {
        font-size: 13px; } }

.popup-gallery figure {
  overflow: hidden;
  margin-bottom: 10px; }
  .popup-gallery figure img {
    transition: all 0.3s ease; }
  @media (max-width: 660px) {
    .popup-gallery figure {
      border-radius: 10px; } }
  .popup-gallery figure:hover img {
    transform: scale(1.1); }

.popup-gallery .magnific-left figure {
  border-radius: 20px 0 0 20px; }
  @media (max-width: 660px) {
    .popup-gallery .magnific-left figure {
      border-radius: 10px; } }

.popup-gallery .row {
  margin-right: -5px;
  margin-left: -5px; }

.popup-gallery .col-xl-6 {
  padding-right: 5px;
  padding-left: 5px; }

@media (max-width: 660px) {
  .popup-gallery .row {
    margin-right: -5px;
    margin-left: -5px; } }

.main-single-property {
  background-color: #F0EBE5;
  padding: 50px 0 70px 0;
  border-bottom: 1px solid #b5b5b5;
  color: #2A2A2A; }
  .main-single-property h1 {
    font-family: 'NewYork-Regular';
    font-size: 22px;
    margin: 0 0 20px 0;
    line-height: 30px;
    display: inline-block;
    vertical-align: top; }
  .main-single-property .content-share-sendos {
    float: right;
    position: relative; }
    .main-single-property .content-share-sendos ul {
      list-style: none;
      padding: 0;
      margin: 0;
      position: absolute;
      left: 25px;
      top: 40px;
      width: 100%;
      overflow: hidden;
      transform: translate(0, 10px);
      transition: height 0ms 400ms, opacity 400ms 0ms ease-in,  transform 400ms 0ms ease-in,visibility 400ms 0ms ease-in;
      z-index: 2;
      visibility: hidden;
      opacity: 0;
      height: 0; }
      .main-single-property .content-share-sendos ul li {
        display: block;
        float: left;
        margin-right: 5px; }
        .main-single-property .content-share-sendos ul li a {
          background-size: 15px !important;
          border-radius: 50%;
          border: 0;
          cursor: pointer;
          display: block;
          height: 35px;
          margin: 0 auto 10px;
          text-indent: -9999px;
          transition: all 0.3s ease;
          width: 35px;
          background-color: #102E3D !important; }
        .main-single-property .content-share-sendos ul li.share-ws a {
          background: url("../images/sendos/share-ws.png") no-repeat center center; }
        .main-single-property .content-share-sendos ul li.share-fb a {
          background: url("../images/sendos/share-fb.png") no-repeat center center; }
        .main-single-property .content-share-sendos ul li.share-tw a {
          background: url("../images/sendos/share-tw.png") no-repeat center center; }
        .main-single-property .content-share-sendos ul li.share-pt a {
          background: url("../images/sendos/share-pt.png") no-repeat center center; }
      .main-single-property .content-share-sendos ul.visible-share {
        height: auto;
        opacity: 1;
        transform: translateY(-5px);
        visibility: visible; }
  .main-single-property .title-share {
    background: url("../images/sendos/icon-share.png") no-repeat left center;
    background-size: 18px;
    color: #0B232F;
    cursor: pointer;
    float: right;
    font-family: 'DM-Sans-Regular';
    font-size: 15px;
    line-height: 26px;
    padding-left: 30px; }
    .main-single-property .title-share a {
      color: #0B232F;
      text-decoration: none; }
    @media (max-width: 660px) {
      .main-single-property .title-share {
        float: left;
        margin-bottom: 20px; } }
  .main-single-property h6 {
    background: url("../images/sendos/icon-pin.png") no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    line-height: 26px;
    font-family: 'Inter-Light';
    font-size: 15px;
    margin: 0 0 30px 0;
    width: 100%;
    clear: both; }
  .main-single-property .col-luxury-exclusives-property {
    padding: 20px 0 0 0; }
    .main-single-property .col-luxury-exclusives-property h3 {
      font-size: 20px;
      margin-bottom: 20px; }
  @media (max-width: 660px) {
    .main-single-property {
      padding: 30px 15px 20px 15px; } }

.single-property-comfort {
  padding-top: 40px;
  font-family: 'Inter-Regular'; }
  .single-property-comfort h2 {
    font-family: 'NewYork-Regular';
    font-size: 20px;
    margin: 0 0 25px 0;
    line-height: 25px;
    display: inline-block;
    vertical-align: top; }
  .single-property-comfort p {
    font-size: 15px;
    margin: 0 0 20px 0; }
  .single-property-comfort ul li {
    font-size: 15px; }
  .single-property-comfort h3 {
    color: #202020;
    font-family: 'Inter-Bold';
    font-size: 20px;
    margin: 0 0 30px 0; }
  .single-property-comfort hr {
    clear: both;
    margin-top: 20px;
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-top: 1px solid #cbcbcb; }
  @media (max-width: 660px) {
    .single-property-comfort {
      padding-top: 25px; } }

.col-offers {
  overflow: hidden;
  margin-bottom: 10px; }
  .col-offers ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .col-offers ul li {
      float: left;
      width: 25%;
      text-align: left;
      margin-bottom: 30px; }
      .col-offers ul li strong {
        color: #2A2A2A;
        font-size: 15px;
        clear: both;
        margin: 0 0 5px 0;
        width: 100%;
        display: block;
        font-family: 'Inter-Bold'; }
      .col-offers ul li i {
        max-width: 30px;
        display: inline-block;
        vertical-align: top;
        line-height: 27px; }
      .col-offers ul li span {
        margin-left: 10px;
        font-size: 14px;
        line-height: 27px;
        display: inline-block;
        vertical-align: top;
        font-family: 'Inter-Regular'; }
  @media (max-width: 660px) {
    .col-offers ul li {
      width: 33.333%;
      text-align: center; }
      .col-offers ul li strong, .col-offers ul li span {
        font-size: 11px; } }

.benefit-team-sendos {
  clear: both;
  padding: 30px 0 50px 0;
  text-align: center; }
  .benefit-team-sendos h2 {
    font-family: 'NewYork-Regular';
    font-size: 22px;
    margin: 0 0 40px 0;
    text-align: left; }

.card-max {
  max-width: 250px;
  text-align: center;
  margin: 0 10px 35px 10px;
  display: inline-block;
  vertical-align: top; }
  .card-max i {
    width: 70px;
    height: 70px;
    background-color: #dcdcdc;
    margin: 0 auto 15px;
    display: block;
    border-radius: 50%;
    position: relative; }
    .card-max i:after {
      background-color: #838383;
      border-radius: 50%;
      content: "";
      height: 30px;
      left: 0;
      margin: -15px auto 0;
      position: absolute;
      right: 0;
      top: 50%;
      width: 30px; }
  .card-max p {
    color: #fff;
    text-align: center;
    clear: both;
    font-size: 14px;
    font-family: 'Inter-Light'; }

.card-price_sendos {
  background-color: #0B232F;
  border-radius: 20px;
  padding: 30px 25px;
  color: #fff;
  margin: 0 auto 30px;
  display: block;
  text-align: left;
  max-width: 350px;
  position: sticky;
  top: 15px; }
  .card-price_sendos h4 {
    font-family: 'NewYork-Regular';
    font-size: 25px;
    display: block;
    width: 100%;
    clear: both;
    margin: 0 0 30px 0; }
  .card-price_sendos h5 {
    color: #E59B64;
    font-family: 'Inter-Regular';
    font-size: 15px;
    margin: 0 0 10px 0; }
  .card-price_sendos label {
    font-family: 'Inter-Regular';
    margin: 0 0 15px 0;
    font-size: 13px; }
  .card-price_sendos .btn-whatsapp {
    background: #E59B64;
    border-radius: 25px;
    border: 0;
    color: #0B232F;
    display: inline-block;
    font-family: 'Inter-Regular';
    font-size: 15px;
    margin-bottom: 15px;
    padding: 12px 25px 12px 45px;
    text-align: center;
    transition: all 0.3s ease;
    vertical-align: top;
    width: 100%; }
    .card-price_sendos .btn-whatsapp:before {
      background: url("../images/sendos/icon-whatsapp.svg") no-repeat center center;
      background-size: 17px !important;
      content: "";
      display: inline-block;
      height: 20px;
      margin-left: -20px;
      margin-right: 8px;
      margin: 0 8px 0 -20px;
      vertical-align: middle;
      width: 20px; }
    .card-price_sendos .btn-whatsapp:hover {
      background-color: #e59b64; }
  .card-price_sendos .btn-email {
    background: transparent;
    border: 1px solid #E59B64;
    color: #fff;
    font-family: 'Inter-Regular';
    border-radius: 25px;
    padding: 12px 25px 12px 45px;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center; }
    .card-price_sendos .btn-email:before {
      background: url("../images/sendos/icon-email.svg") no-repeat center center;
      background-size: 17px !important;
      content: "";
      display: inline-block;
      height: 20px;
      margin-left: -20px;
      margin-right: 8px;
      margin: 0 8px 0 -20px;
      vertical-align: middle;
      width: 20px; }
    .card-price_sendos .btn-email:hover {
      color: #fff;
      background-color: #0B232F; }
  @media (max-width: 660px) {
    .card-price_sendos {
      position: relative;
      top: 0; } }

.fixed-help {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 5;
  text-align: center; }
  .fixed-help .i-help {
    background: #102E3D url("../images/sendos/chat-help.svg") no-repeat center center;
    background-size: 20px;
    border-radius: 50%;
    border: 1px solid #E8AC79;
    display: block;
    height: 50px;
    width: 50px;
    margin: 0 auto 10px;
    cursor: pointer;
    transition: all 0.3s ease; }
    .fixed-help .i-help:hover {
      background-size: 26px; }
  .fixed-help span {
    font-family: 'Inter-Regular';
    clear: both;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    vertical-align: top;
    display: none; }
  @media (max-width: 660px) {
    .fixed-help {
      right: 15px; } }

.flex-lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%; }

.modal-backdrop {
  background-color: #000;
  opacity: 0.5; }
  .modal-backdrop.show {
    opacity: 0.5; }

.first {
  float: left; }

.last {
  float: right; }

.wrapper-main-sendos {
  max-width: 1100px; }

.text-left {
  text-align: left; }

.wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
  text-align: center;
  display: none !important; }

.wpcf7-spinner {
  transform: translateY(20px); }

.images-radius {
  bottom: -40px;
  left: 70px;
  max-width: 250px;
  position: absolute; }
  @media (max-width: 660px) {
    .images-radius {
      display: none; } }

.input-price {
  position: relative; }
  .input-price:before {
    content: 'COP';
    position: absolute;
    top: 52%;
    color: #2A2A2A;
    left: 10px;
    font-weight: bolder;
    transform: translateY(-50%); }

.dnd-upload-status {
  display: none !important; }

.codedropz-upload-handler {
  display: none !important; }

/* ------------------------------Ipad Horizontal---------------------------- */
/* ------------------------------Ipad Vertical---------------------------- */
/* ---------------------------- 320px-640px -------------------------- */
@media handheld, only screen and (max-width: 667px) {
  #nav-toogle-sendos {
    display: block; }
  .header-sendos {
    padding: 15px 20px; }
    .header-sendos .wrapper-main-sendos {
      display: block; }
    .header-sendos nav {
      margin: 0 auto;
      width: 100%;
      clear: both;
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 92px;
      z-index: 2;
      background: #0b232f;
      padding: 10px 20px 25px 20px;
      border-top: 1px solid #525252; }
      .header-sendos nav ul li {
        width: 100%;
        display: block;
        margin: 0; }
        .header-sendos nav ul li.nav-active {
          margin-top: 10px; }
  .footer-sendos {
    padding: 30px 15px;
    text-align: center; }
    .footer-sendos p {
      clear: both;
      width: 100%; }
    .footer-sendos .redes-sendos {
      display: inline-block;
      vertical-align: top;
      margin-bottom: 30px;
      float: none; }
    .footer-sendos .nav-sendos {
      clear: both;
      border-top: 1px solid #cbcbcb;
      width: 100%; }
      .footer-sendos .nav-sendos ul li {
        width: 100%;
        margin: 0 0;
        border: 0; }
        .footer-sendos .nav-sendos ul li a {
          padding: 8px 0;
          margin: 0; }
  .col-nav-filter {
    border-right: 0;
    border-bottom: 1px solid #d3d3d3;
    width: 100%;
    text-align: left;
    padding: 0 15px; }
    .col-nav-filter.nav-ubicacion {
      border-left: 0;
      z-index: 3; }
    .col-nav-filter .input-city {
      background: url("../images/sendos/icon-select-right-active.svg") no-repeat right center;
      background-size: 12px;
      max-width: 100%;
      padding-left: 0; }
    .col-nav-filter h4 {
      background: url("../images/sendos/icon-select-right-active.svg") no-repeat right center;
      background-size: 12px;
      pointer-events: none; }
  .nav-filter-sendos {
    padding: 20px 15px; }
    .nav-filter-sendos i {
      display: none; }
    .nav-filter-sendos .btn-send {
      margin-left: 0;
      margin-top: 20px; }
  .tooltip-caption {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    transform: translate(0, 0);
    padding: 15px 0 15px 0;
    display: block;
    opacity: 1;
    height: auto;
    visibility: visible; }
  .lifgtbox-work h3 {
    font-size: 14px;
    margin: 12px 0 5px 0; } }

@font-face {
  font-family: 'Inter-Regular';
  src: url("./fonts-sentos/Inter-Regular.eot");
  src: url("./fonts-sentos/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/Inter-Regular.woff") format("woff"), url("./fonts-sentos/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter-Light';
  src: url("./fonts-sentos/Inter-Light.eot");
  src: url("./fonts-sentos/Inter-Light.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/Inter-Light.woff") format("woff"), url("./fonts-sentos/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter-Bold';
  src: url("./fonts-sentos/Inter-Bold.eot");
  src: url("./fonts-sentos/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/Inter-Bold.woff") format("woff"), url("./fonts-sentos/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Inter-Black';
  src: url("./fonts-sentos/Inter-Black.eot");
  src: url("./fonts-sentos/Inter-Black.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/Inter-Black.woff") format("woff"), url("./fonts-sentos/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'NewYork-Regular';
  src: url("./fonts-sentos/NewYork-Regular.eot");
  src: url("./fonts-sentos/NewYork-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/NewYork-Regular.woff") format("woff"), url("./fonts-sentos/NewYork-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'NewYork-Italic';
  src: url("./fonts-sentos/NewYork-RegularItalic.eot");
  src: url("./fonts-sentos/NewYork-RegularItalic.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/NewYork-RegularItalic.woff") format("woff"), url("./fonts-sentos/NewYork-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Inter-SemiBold';
  src: url("./fonts-sentos/Inter-SemiBold.eot");
  src: url("./fonts-sentos/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/Inter-SemiBold.woff") format("woff"), url("./fonts-sentos/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DM-Sans-Bold';
  src: url("./fonts-sentos/DMSans-Bold.eot");
  src: url("./fonts-sentos/DMSans-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/DMSans-Bold.woff") format("woff"), url("./fonts-sentos/DMSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DM-Sans-Regular';
  src: url("./fonts-sentos/DMSans-Regular.eot");
  src: url("./fonts-sentos/DMSans-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/DMSans-Regular.woff") format("woff"), url("./fonts-sentos/DMSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DM-Sans-Medium';
  src: url("./fonts-sentos/DMSans-Medium.eot");
  src: url("./fonts-sentos/DMSans-Medium.eot?#iefix") format("embedded-opentype"), url("./fonts-sentos/DMSans-Medium.woff") format("woff"), url("./fonts-sentos/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Regular';
  src: url("./fonts/Montserrat-Regular.eot");
  src: url("./fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Regular.woff") format("woff"), url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Light';
  src: url("./fonts/Montserrat-Light.eot");
  src: url("./fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Light.woff") format("woff"), url("./fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Black';
  src: url("./fonts/Montserrat-Black.eot");
  src: url("./fonts/Montserrat-Black.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Black.woff") format("woff"), url("./fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Thin';
  src: url("./fonts/Montserrat-Thin.eot");
  src: url("./fonts/Montserrat-Thin.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Thin.woff") format("woff"), url("./fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Medium';
  src: url("./fonts/Montserrat-Medium.eot");
  src: url("./fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Medium.woff") format("woff"), url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("./fonts/Montserrat-Bold.eot");
  src: url("./fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-Bold.woff") format("woff"), url("./fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url("./fonts/Montserrat-SemiBold.eot");
  src: url("./fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts/Montserrat-SemiBold.woff") format("woff"), url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

/*********************
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.
*/
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
				plan your menus and drop-downs wisely.
				*/ }
        .menu ul li a {
          /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */ }

/*********************
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
*********************/
  .wrap {
    width: 760px; }
  /*********************
HEADER STYLES
*********************/
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      background: #323944;
      margin-top: 0; }
    .nav li {
      float: left;
      position: relative;
      /*
		plan your menus and drop-downs wisely.
		*/
      /* showing sub-menus */ }
      .nav li a {
        border-bottom: 0;
        /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
        .nav li a:hover, .nav li a:focus {
          color: #fff;
          text-decoration: underline; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
          .nav li ul.sub-menu li a,
          .nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }
          .nav li ul.sub-menu li ul,
          .nav li ul.children li ul {
            top: 0;
            left: 100%; }
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }
  /* end .nav */
  /*********************
SIDEBARS & ASIDES
*********************/
  .sidebar {
    margin-top: 2.2em; }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0; }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  .footer-links ul li {
    /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }
  /* end .footer-links */ }

/*********************
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.

******************************************************************/
  .wrap {
    width: 1040px; } }

/*********************
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.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
