:root {
	--font-1: "Roboto", sans-serif;
	--font-2: "Inter", sans-serif;
	--font-3: "Montserrat", sans-serif;
	/* monospace
*/
	--font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/*@font-face {
	font-family: "FontAwesome";
	font-weight: normal;
	font-style: normal;
	src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0");
	src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"),
		url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"),
		url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"),
		url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"),
		url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
}
*/
/* -------------------------------------------------------------------
* ## colors
* ------------------------------------------------------------------- */
:root {
	/* color-1 (#0C2E7E - St. Patricks Blue)
* color-2 (#DF2935 - Rose Madder)
* color-3 (#00b295 - Jungle Green)
*/
	--color-1: hsla(222, 83%, 27%, 1);
	--color-2: hsla(356, 74%, 52%, 1);
	--color-3: hsla(170, 100%, 35%, 1);
	/* theme color variations
*/
	--color-1-lighter: hsla(222, 83%, 47%, 1);
	--color-1-light: hsla(222, 83%, 37%, 1);
	--color-1-dark: hsla(222, 83%, 17%, 1);
	--color-1-darker: hsla(222, 83%, 10%, 1);
	--color-2-lighter: hsla(356, 74%, 72%, 1);
	--color-2-light: hsla(356, 74%, 62%, 1);
	--color-2-dark: hsla(356, 74%, 42%, 1);
	--color-2-darker: hsla(356, 74%, 32%, 1);
	/* feedback colors
* color-error(#ffd1d2), color-success(#c8e675),
* color-info(#d7ecfb), color-notice(#fff099)
*/
	--color-error: hsla(359, 100%, 91%, 1);
	--color-success: hsla(76, 69%, 68%, 1);
	--color-info: hsla(205, 82%, 91%, 1);
	--color-notice: hsla(51, 100%, 80%, 1);
	--color-error-content: hsla(359, 50%, 50%, 1);
	--color-success-content: hsla(76, 29%, 28%, 1);
	--color-info-content: hsla(205, 32%, 31%, 1);
	--color-notice-content: hsla(51, 30%, 30%, 1);
	/* shades
* generated using
* Tint & Shade Generator
* (https://maketintsandshades.com/)
*/
	--color-black: #000000;
	--color-gray-19: #0a0a0a;
	--color-gray-18: #141414;
	--color-gray-17: #1e1e1e;
	--color-gray-16: #282828;
	--color-gray-15: #333333;
	--color-gray-14: #3d3d3d;
	--color-gray-13: #474747;
	--color-gray-12: #515151;
	--color-gray-11: #5b5b5b;
	--color-gray-10: #656565;
	--color-gray-9: #747474;
	--color-gray-8: #848484;
	--color-gray-7: #939393;
	--color-gray-6: #a3a3a3;
	--color-gray-5: #b2b2b2;
	--color-gray-4: #c1c1c1;
	--color-gray-3: #d1d1d1;
	--color-gray-2: #e0e0e0;
	--color-gray-1: #f0f0f0;
	--color-white: #ffffff;
	/* text
*/
	--color-text: var(--color-gray-18);
	--color-text-dark: var(--color-black);
	--color-text-light: var(--color-gray-8);
	--color-placeholder: var(--color-gray-8);
	/* buttons
*/
	--color-btn: var(--color-gray-3);
	--color-btn-text: var(--color-black);
	--color-btn-hover: var(--color-1);
	--color-btn-hover-text: var(--color-white);
	--color-btn-primary: var(--color-black);
	--color-btn-primary-text: var(--color-white);
	--color-btn-primary-hover: var(--color-1);
	--color-btn-primary-hover-text: var(--color-white);
	--color-btn-stroke: var(--color-black);
	--color-btn-stroke-text: var(--color-black);
	--color-btn-stroke-hover: var(--color-1);
	--color-btn-stroke-hover-text: var(--color-white);
	/* others
*/
	--color-white-bg: white;
	--color-body: #f5f5f5;
	--color-border: var(--color-gray-2);
}

/* -------------------------------------------------------------------
* ## vertical spacing and typescale
* ------------------------------------------------------------------- */
:root {
	/* spacing
* base font size: 18px
* vertical space unit : 32px
*/
	--base-size: 62.5%;
	--base-font-size: 16px;
	--space: 3.2rem;
	/* vertical spacing
*/
	--vspace-0_125: calc(0.25 * var(--space));
	--vspace-0_25: calc(0.25 * var(--space));
	--vspace-0_5: calc(0.5 * var(--space));
	--vspace-0_75: calc(0.75 * var(--space));
	--vspace-0_875: calc(0.875 * var(--space));
	--vspace-1: calc(var(--space));
	--vspace-1_25: calc(1.25 * var(--space));
	--vspace-1_5: calc(1.5 * var(--space));
	--vspace-1_75: calc(1.75 * var(--space));
	--vspace-2: calc(2 * var(--space));
	--vspace-2_5: calc(2.5 * var(--space));
	--vspace-3: calc(3 * var(--space));
	--vspace-3_5: calc(3.5 * var(--space));
	--vspace-4: calc(4 * var(--space));
	--vspace-4_5: calc(4.5 * var(--space));
	--vspace-5: calc(5 * var(--space));
	/* type scale
* ratio 1:2 | base: 18px
* -------------------------------------------------------
*
* --text-display-3 = (77.40px)
* --text-display-2 = (64.50px)
* --text-display-1 = (53.75px)
* --text-xxxl      = (44.79px)
* --text-xxl       = (37.32px)
* --text-xl        = (31.10px)
* --text-lg        = (25.92px)
* --text-md        = (21.60px)
* --text-size      = (18.00px) BASE
* --text-sm        = (15.00px)
* --text-xs        = (12.50px)
*
* -------------------------------------------------------
*/
	--text-scale-ratio: 1.2;
	--text-size: var(--base-font-size);
	--text-xs: calc((var(--text-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
	--text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
	--text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
	--text-lg: calc(var(--text-md) * var(--text-scale-ratio));
	--text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
	--text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
	--text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
	--text-display-1: calc(var(--text-xxxl) * var(--text-scale-ratio));
	--text-display-2: calc(var(--text-display-1) * var(--text-scale-ratio));
	--text-display-3: calc(var(--text-display-2) * var(--text-scale-ratio));
	/* default button height
*/
	--vspace-btn: var(--vspace-2);
}

/* on mobile devices below 600px
*/
@media screen and (max-width: 600px) {
	:root {
		--base-font-size: 1.6rem;
		--space: 2.8rem;
	}
}

/* -------------------------------------------------------------------
* ## grid variables
* ------------------------------------------------------------------- */
:root {
	/* widths for rows and containers
*/
	--width-full: 100%;
	--width-max: 1200px;
	--width-wide: 1400px;
	--width-wider: 1600px;
	--width-widest: 1800px;
	--width-narrow: 1000px;
	--width-narrower: 900px;
	--width-grid-max: var(--width-max);
	/* gutters
*/
	--gutter-lg: 2rem;
	--gutter-md: 1.8rem;
	--gutter-mob: 1rem;
}

/* ==========================================================================
* # normalize
* 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
* ------------------------------------------------------------------- */
/* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE. */
hr {
	-webkit-box-sizing: content-box;
	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 */
	-webkit-text-decoration: underline dotted;
	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 {
	-webkit-box-sizing: border-box;
	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"] {
	-webkit-box-sizing: border-box;
	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;
}

/* ===================================================================
* # basic/base setup styles
*
* ------------------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	font-weight: normal;
	line-height: 1;
	word-wrap: break-word;
	-moz-font-smoothing: grayscale;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}

/* -------------------------------------------------------------------
* ## media
* ------------------------------------------------------------------- */
svg,
img,
video embed,
iframe,
object {
	max-width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------
* ## typography resets
* ------------------------------------------------------------------- */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

p {
	font-size: inherit;
	text-rendering: optimizeLegibility;
}

em,
i {
	font-style: italic;
	line-height: inherit;
}

strong,
b {
	font-weight: bold;
	line-height: inherit;
}

small {
	font-size: 60%;
	line-height: inherit;
}

ol,
ul {
	list-style: none;
}

li {
	display: block;
}

/* -------------------------------------------------------------------
* ## links
* ------------------------------------------------------------------- */
a {
	text-decoration: none;
	line-height: inherit;
}

a img {
	border: none;
}

/* -------------------------------------------------------------------
* ## inputs
* ------------------------------------------------------------------- */
fieldset {
	margin: 0;
	padding: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* ===================================================================
* # Grid v3.0.0 - (_grid.scss)
*
*   -----------------------------------------------------------------
* - Grid breakpoints are based on MAXIMUM WIDTH media queries,
*   meaning they apply to that one breakpoint and ALL THOSE BELOW IT.
* - Grid columns without a specified width will automatically layout
*   as equal width columns.
* ------------------------------------------------------------------- */
/* rows
* ------------------------------------- */
.row {
	max-width: 1140px;
	margin: 0 auto;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-flow: row wrap;
}

.row .row {
	width: auto;
	max-width: none;
	margin-left: calc(var(--gutter-lg) * -1);
	margin-right: calc(var(--gutter-lg) * -1);
}

/* columns
* -------------------------------------- */
.column {
	-ms-flex: 1 1 0%;
	-webkit-box-flex: 1;
	flex: 1 1 0%;
	padding: 20px;
}

.collapse>.column,
.column.collapse {
	padding: 0;
}

/* flex row containers utility classes
*/
.row.row-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.row.row-nowrap {
	-ms-flex-wrap: none;
	flex-wrap: nowrap;
}

.row.row-y-top {
	-ms-flex-align: start;
	-webkit-box-align: start;
	align-items: flex-start;
}

.row.row-y-bottom {
	-ms-flex-align: end;
	-webkit-box-align: end;
	align-items: flex-end;
}

.row.row-y-center {
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.row.row-stretch {
	-ms-flex-align: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;
}

.row.row-baseline {
	-ms-flex-align: baseline;
	-webkit-box-align: baseline;
	align-items: baseline;
}

.row.row-x-left {
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
}

.row.row-x-right {
	-ms-flex-pack: end;
	-webkit-box-pack: end;
	justify-content: flex-end;
}

.row.row-x-center {
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
}

/* flex item utility alignment classes
*/
.align-center {
	margin: auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.align-left {
	margin-right: auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.align-right {
	margin-left: auto;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.align-x-center {
	margin-right: auto;
	margin-left: auto;
}

.align-x-left {
	margin-right: auto;
}

.align-x-right {
	margin-left: auto;
}

.align-y-center {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.align-y-top {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.align-y-bottom {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
}

/* large screen column widths
*/
.large-1 {
	-ms-flex: 0 0 8.33333%;
	-webkit-box-flex: 0;
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.large-2 {
	-ms-flex: 0 0 16.66667%;
	-webkit-box-flex: 0;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.large-3 {
	-ms-flex: 0 0 25%;
	-webkit-box-flex: 0;
	flex: 0 0 25%;
	max-width: 25%;
}

.large-4 {
	-ms-flex: 0 0 33.33333%;
	-webkit-box-flex: 0;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.large-5 {
	-ms-flex: 0 0 41.66667%;
	-webkit-box-flex: 0;
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.large-6 {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.large-7 {
	-ms-flex: 0 0 58.33333%;
	-webkit-box-flex: 0;
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.large-8 {
	-ms-flex: 0 0 66.66667%;
	-webkit-box-flex: 0;
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.large-9 {
	-ms-flex: 0 0 75%;
	-webkit-box-flex: 0;
	flex: 0 0 75%;
	max-width: 75%;
}

.large-10 {
	-ms-flex: 0 0 83.33333%;
	-webkit-box-flex: 0;
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.large-11 {
	-ms-flex: 0 0 91.66667%;
	-webkit-box-flex: 0;
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.large-12 {
	-ms-flex: 0 0 100%;
	-webkit-box-flex: 0;
	flex: 0 0 100%;
	max-width: 100%;
}

/* -------------------------------------------------------------------
* ## medium screen devices
* ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.row .row {
		margin-left: calc(var(--gutter-md) * -1);
		margin-right: calc(var(--gutter-md) * -1);
	}

	/* .column {
padding-left: 30px;
padding-right: 30px;
}*/
	.medium-1 {
		-ms-flex: 0 0 8.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.medium-2 {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.medium-3 {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.medium-4 {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.medium-5 {
		-ms-flex: 0 0 41.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.medium-6 {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.medium-7 {
		-ms-flex: 0 0 58.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.medium-8 {
		-ms-flex: 0 0 66.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.medium-9 {
		-ms-flex: 0 0 75%;
		-webkit-box-flex: 0;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.medium-10 {
		-ms-flex: 0 0 83.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.medium-11 {
		-ms-flex: 0 0 91.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.medium-12 {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* -------------------------------------------------------------------
* ## tablets
* ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.row {
		max-width: 1140px;
	}

	.tab-1 {
		-ms-flex: 0 0 8.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.tab-2 {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.tab-3 {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.tab-4 {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.tab-5 {
		-ms-flex: 0 0 41.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.tab-6 {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.tab-7 {
		-ms-flex: 0 0 58.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.tab-8 {
		-ms-flex: 0 0 66.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.tab-9 {
		-ms-flex: 0 0 75%;
		-webkit-box-flex: 0;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.tab-10 {
		-ms-flex: 0 0 83.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.tab-11 {
		-ms-flex: 0 0 91.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.tab-12 {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hide-on-tablet {
		display: none;
	}
	figure.snip1104 {
   
    margin-bottom: 30px !important;
}
}

/* -------------------------------------------------------------------
* ## mobile devices
* ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
	.row {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.row .row {
		margin-left: calc(var(--gutter-mob) * -1);
		margin-right: calc(var(--gutter-mob) * -1);
		padding-left: 0;
		padding-right: 0;
	}

	.column {
		padding: 0 var(--gutter-mob);
	}

	.mob-1 {
		-ms-flex: 0 0 8.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.mob-2 {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.mob-3 {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.mob-4 {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.mob-5 {
		-ms-flex: 0 0 41.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.mob-6 {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.mob-7 {
		-ms-flex: 0 0 58.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.mob-8 {
		-ms-flex: 0 0 66.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.mob-9 {
		-ms-flex: 0 0 75%;
		-webkit-box-flex: 0;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.mob-10 {
		-ms-flex: 0 0 83.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.mob-11 {
		-ms-flex: 0 0 91.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.mob-12 {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hide-on-mobile {
		display: none;
	}
}

/* -------------------------------------------------------------------
* ## small mobile devices <= 400px
* ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
	.row .row {
		margin-left: 0;
		margin-right: 0;
	}

	.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}

	.large-6.tab-6.mob-12.column.site-links {
		margin: 2rem 0px 2rem;
	}

	.large-12.column.site-links {
		margin: 2rem 0px 2rem;
	}
}

/* ===================================================================
* # block grids
*
* -------------------------------------------------------------------
* Equally-sized columns define at parent/row level.
* ------------------------------------------------------------------- */
.block-large-1-8>.column {
	-ms-flex: 0 0 12.5%;
	-webkit-box-flex: 0;
	flex: 0 0 12.5%;
	max-width: 12.5%;
}

.block-large-1-6>.column {
	-ms-flex: 0 0 16.66667%;
	-webkit-box-flex: 0;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.block-large-1-5>.column {
	-ms-flex: 0 0 20%;
	-webkit-box-flex: 0;
	flex: 0 0 20%;
	max-width: 20%;
}

.block-large-1-4>.column {
	-ms-flex: 0 0 25%;
	-webkit-box-flex: 0;
	flex: 0 0 25%;
	max-width: 25%;
}

.block-large-1-3>.column {
	-ms-flex: 0 0 33.33333%;
	-webkit-box-flex: 0;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.block-large-1-2>.column {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.block-large-full>.column {
	-ms-flex: 0 0 100%;
	-webkit-box-flex: 0;
	flex: 0 0 100%;
	max-width: 100%;
}

/* -------------------------------------------------------------------
* ## block grids - medium screen devices
* ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.block-medium-1-8>.column {
		-ms-flex: 0 0 12.5%;
		-webkit-box-flex: 0;
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}

	.block-medium-1-6>.column {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.block-medium-1-5>.column {
		-ms-flex: 0 0 20%;
		-webkit-box-flex: 0;
		flex: 0 0 20%;
		max-width: 20%;
	}

	.block-medium-1-4>.column {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.block-medium-1-3>.column {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.block-medium-1-2>.column {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.block-medium-full>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* -------------------------------------------------------------------
* ## block grids - tablets
* ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.block-tab-1-8>.column {
		-ms-flex: 0 0 12.5%;
		-webkit-box-flex: 0;
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}

	.block-tab-1-6>.column {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.block-tab-1-5>.column {
		-ms-flex: 0 0 20%;
		-webkit-box-flex: 0;
		flex: 0 0 20%;
		max-width: 20%;
	}

	.block-tab-1-4>.column {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.block-tab-1-3>.column {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.block-tab-1-2>.column {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.block-tab-full>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* -------------------------------------------------------------------
* ## block grids - mobile devices
* ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
	.block-mob-1-8>.column {
		-ms-flex: 0 0 12.5%;
		-webkit-box-flex: 0;
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}

	.block-mob-1-6>.column {
		-ms-flex: 0 0 16.66667%;
		-webkit-box-flex: 0;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.block-mob-1-5>.column {
		-ms-flex: 0 0 20%;
		-webkit-box-flex: 0;
		flex: 0 0 20%;
		max-width: 20%;
	}

	.block-mob-1-4>.column {
		-ms-flex: 0 0 25%;
		-webkit-box-flex: 0;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.block-mob-1-3>.column {
		-ms-flex: 0 0 33.33333%;
		-webkit-box-flex: 0;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.block-mob-1-2>.column {
		-ms-flex: 0 0 50%;
		-webkit-box-flex: 0;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.block-mob-full>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}

	ul.tr-emulando {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		 clear:both;
		border: 0px solid;
		border-color: red;
		width: auto;
		margin-left: 0px;
		flex-direction: column;
	}

	li.td-emulando.first,
	li.td-emulando.two,
	li.td-emulando.three,
	li.td-emulando.four {
		width: 100% !important;
		display: flex;
		flex-direction: column;
		align-content: space-around;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		text-align: center;


	}

	li.td-emulando.two img {
		width: 50% !important;
		height: auto;
		margin: 0px;
		padding: 1em;
		box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%);
		float: left;
	}

	li.td-emulando.two,
	li.td-emulando.three {

		border: 0px;
	}

	li.td-emulando.three {
		width: 55%;
		display: flex;
		flex-direction: row;
		justify-content: center !important;
		border-left: 0px;
		border-right: 0px;
	}
}

/* -------------------------------------------------------------------
* ## block grids - small mobile devices <= 400px
* ------------------------------------------------------------------- */
@media screen and (max-width: 400px) {
	.stack>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}
}

/* ===================================================================
* # MISC
*
* ------------------------------------------------------------------- */
.h-group:after {
	content: "";
	display: table;
	clear: both;
}

/* misc helper classes
*/
.is-hidden {
	display: none;
}

.is-invisible {
	visibility: hidden;
}

.h-antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.h-overflow-hidden {
	overflow: hidden;
}

.h-remove-top {
	margin-top: 0;
}

.h-remove-bottom {
	margin-bottom: 0;
}

.h-add-half-bottom {
	margin-bottom: var(--vspace-0_5) !important;
}

.h-add-bottom {
	margin-bottom: var(--vspace-1) !important;
}

.h-no-border {
	border: none;
}

.h-full-width {
	width: 100%;
}

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

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

.h-text-right {
	text-align: right;
}

.h-pull-left {
	float: left;
}

.h-pull-right {
	float: right;
}

/* ===================================================================
* # custom grid, block grid STACK breakpoints
*
* ------------------------------------------------------------------- */
@media screen and (max-width: 1000px) {

	.w-1000-stack,
	.block-1000-stack>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 700px) {

	.w-700-stack,
	.block-700-stack>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 500px) {

	.w-500-stack,
	.block-500-stack>.column {
		-ms-flex: 0 0 100%;
		-webkit-box-flex: 0;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* ===================================================================
* # base style overrides
*
* ------------------------------------------------------------------- */
html {
	font-size: var(--base-size);
}

html,
body {
	height: 100%;
}

body {
	background: #ffffff;
	font-family: var(--font-1);
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	line-height: 1.9;
	color: var(--color-text);
	margin: 0;
	padding: 0;
}

/* -------------------------------------------------------------------
* ## links
* ------------------------------------------------------------------- */
a {
	color: #c0043e;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
	color: var(--color-2);
}

a:hover,
a:active {
	outline: 0;
}

/* ===================================================================
* # typography & general theme styles
*
* ------------------------------------------------------------------- */
/* type scale - ratio 1:2 | base: 18px
* -------------------------------------------------------------------
* --text-display-3 = (77.40px)
* --text-display-2 = (64.50px)
* --text-display-1 = (53.75px)
* --text-xxxl      = (44.79px)
* --text-xxl       = (37.32px)
* --text-xl        = (31.10px)
* --text-lg        = (25.92px)
* --text-md        = (21.60px)
* --text-size      = (18.00px) BASE
* --text-sm        = (15.00px)
* --text-xs        = (12.50px)
* -------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-2);
	font-weight: 600;
	font-style: normal;
	color: var(--color-text-dark);
	-webkit-font-variant-ligatures: common-ligatures;
	font-variant-ligatures: common-ligatures;
	text-rendering: optimizeLegibility;
}

h1,
.h1 {
	margin-top: var(--vspace-2_5);
	margin-bottom: var(--vspace-0_75);
}

h2,
.h2,
h3,
.h3,
h4,
.h4 {
	margin-top: var(--vspace-2);
	margin-bottom: var(--vspace-0_5);
}

h5,
.h5,
h6,
.h6 {
	margin-top: var(--vspace-1_5);
	margin-bottom: var(--vspace-0_5);
}

h1,
.h1 {
	font-size: var(--text-display-1);
	line-height: var(--vspace-2);
	letter-spacing: -.015em;
}

@media screen and (max-width: 600px) {

	h1,
	.h1 {
		font-size: var(--text-xxxl);
		line-height: var(--vspace-1_75);
	}
}

h2,
.h2 {
	font-size: var(--text-xxl);
	line-height: var(--vspace-1_5);
}

h2.slide-title.encabezado-principal.page-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: left;
	font-size: 3em;
	line-height: 1.2;
	margin: 0rem 0rem 4rem;
}

h3,
.h3 {
	font-size: var(--text-xl);
	line-height: var(--vspace-1_25);
}

h4,
.h4 {
	font-size: var(--text-lg);
	line-height: var(--vspace-1);
}

h5,
.h5 {
	font-size: var(--text-md);
	line-height: var(--vspace-0_875);
}

h6,
.h6 {
	font-size: calc(var(--text-size) * 0.8889);
	font-weight: 700;
	line-height: var(--vspace-0_75);
	text-transform: uppercase;
	letter-spacing: .25em;
}

.lead,
.attention-getter {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	line-height: 1.5;
	color: #000000;
	margin: 4rem 0px 4rem;
	font-weight: 600;
}

@media screen and (max-width: 400px) {

	.lead,
	.attention-getter {
		font-size: calc(var(--text-size) * 1.0556);
	}
}

figure img,
p img {
	margin: 0;
	vertical-align: bottom;
}

em,
i,
strong,
b {
	font-size: inherit;
	line-height: inherit;
}

em,
i {
	font-family: var(--font-1);
	font-style: italic;
}

strong,
b {
	font-family: var(--font-1);
	font-weight: 800;
	color: var(--color-text-dark);
	letter-spacing: .5px;
	text-decoration: initial;
}

small {
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: var(--vspace-0_5);
}

blockquote {
	margin: 0 0 var(--vspace-1) 0;
	padding: var(--vspace-1) var(--vspace-1_5);
	border-left: 4px solid black;
	position: relative;
}

@media screen and (max-width: 400px) {
	blockquote {
		padding: var(--vspace-0_75) var(--vspace-0_75);
	}
}

blockquote p {
	font-family: var(--font-1);
	font-size: var(--text-lg);
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	color: var(--color-text-dark);
	padding: 0;
}

blockquote cite {
	display: block;
	font-family: var(--font-1);
	font-weight: 400;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_75);
	font-style: normal;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
	color: var(--color-text-light);
	border: none;
}

figure {
	display: block;
	margin-left: 0;
	margin-right: 0;
}

/*figure img+figcaption {
	margin-top: var(--vspace-1);
}*/

figcaption {
	font-size: var(--text-sm);
	text-align: center;
	margin-bottom: 0;
}

var,
kbd,
samp,
code,
pre {
	font-family: var(--font-mono);
}

pre {
	padding: var(--vspace-0_75) var(--vspace-1) var(--vspace-1);
	background: var(--color-gray-1);
	overflow-x: auto;
}

code {
	font-size: var(--text-sm);
	line-height: 1.6rem;
	margin: 0 .2rem;
	padding: calc(((var(--vspace-1) - 1.6rem) / 2) - .1rem) calc(.8rem - .1rem);
	white-space: nowrap;
	background: var(--color-gray-1);
	border: 1px solid var(--color-gray-3);
	color: var(--color-text);
	border-radius: 3px;
}

pre>code {
	display: block;
	white-space: pre;
	line-height: var(--vspace-1);
	padding: 0;
	margin: 0;
	border: none;
}

del {
	text-decoration: line-through;
}

abbr {
	font-family: var(--font-1);
	font-weight: 400;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .1em;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
	text-decoration: none;
}

mark {
	background: var(--color-notice);
	color: var(--color-black);
}

hr {
	border: solid var(--color-border);
	border-width: .1rem 0 0;
	clear: both;
	margin: var(--vspace-2) 0 calc(var(--vspace-2) - .1rem);
	height: 0;
}

hr.fancy {
	border: none;
	margin: var(--vspace-2) 0;
	height: var(--vspace-1);
	text-align: center;
}

hr.fancy::before {
	content: "*****";
	letter-spacing: .3em;
}

/* -------------------------------------------------------------------
* ## lists
* ------------------------------------------------------------------- */
ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

li {
	display: list-item;
}

ol,
ul {
	margin-left: 1.6rem;
}

ul li {
	padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.6rem 0 1.6rem 1.6rem;
}

ul.disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 0 .8rem;
	position: relative;
}

ul.disc li::before {
	content: "";
	display: inline-block;
	width: var(--vspace-0_25);
	height: var(--vspace-0_25);
	border-radius: 50%;
	background: var(--color-1-dark);
	position: absolute;
	left: -.9em;
	top: .65em;
	vertical-align: middle;
}

dt {
	margin: 0;
	color: var(--color-1);
}

dd {
	margin: 0 0 0 2rem;
}

ul.color-dots li::marker {
	color: #c0043e;
	font-size: 2rem;
}

ul.color-dots li {
	line-height: 1.5;
}

/* -------------------------------------------------------------------
* ## responsive video container
* ------------------------------------------------------------------- */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* -------------------------------------------------------------------
* ## tables
* ------------------------------------------------------------------- */
table {
	border-width: 0;
	width: 100%;
	max-width: 100%;
	font-family: var(--font-1);
	border-collapse: collapse;
}

th,
td {
	padding: var(--vspace-0_5) 3.2rem calc(var(--vspace-0_5) - .1rem);
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

th {
	padding: var(--vspace-0_5) 3.2rem;
	color: var(--color-text-dark);
	font-family: var(--font-2);
	font-weight: 600;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* -------------------------------------------------------------------
* ## spacing
* ------------------------------------------------------------------- */
fieldset,
button,
.btn {
	margin-bottom: var(--vspace-0_5);
}

input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
	margin-bottom: var(--vspace-1);
}

/* ===================================================================
* # preloader
*
* ------------------------------------------------------------------- */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-flow: row wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	background: white;
	z-index: 500;
	height: 100vh;
	width: 100%;
	opacity: 1;
}

.no-js #preloader,
.oldie #preloader {
	display: none;
}

#loader {
	width: var(--vspace-1_5);
	height: var(--vspace-1_5);
	padding: 0;
	opacity: 1;
}

#loader:before {
	content: "";
	border-top: 6px solid rgba(0, 0, 0, 0.2);
	border-right: 6px solid rgba(0, 0, 0, 0.2);
	border-bottom: 6px solid rgba(0, 0, 0, 0.2);
	border-left: 6px solid black;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: var(--vspace-1_5);
	height: var(--vspace-1_5);
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* -------------------------------------------------------------------
* ## page loaded
* ------------------------------------------------------------------- */
.ss-loaded #preloader {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .6s .9s ease-in-out;
	transition: all .6s .9s ease-in-out;
}

.ss-loaded #preloader #loader {
	opacity: 0;
	-webkit-transition: opacity .6s ease-in-out;
	transition: opacity .6s ease-in-out;
}

/* ===================================================================
* # forms
*
* ------------------------------------------------------------------- */
fieldset {
	border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	--input-height: var(--vspace-2);
	--input-line-height: var(--vspace-1);
	--input-vpadding: calc(((var(--input-height) - var(--input-line-height)) / 2) - .1rem);
	display: block;
	height: var(--input-height);
	padding: var(--input-vpadding) calc(2.4rem - .1rem);
	border: 0;
	outline: none;
	color: var(--color-placeholder);
	font-family: var(--font-1);
	font-size: var(--text-sm);
	line-height: var(--input-line-height);
	max-width: 100%;
	background-color: rgba(0, 0, 0, 0.07);
	border: 1px solid transparent;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.ss-custom-select {
	position: relative;
	padding: 0;
}

.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	
	margin: 0;
	vertical-align: middle;
}

.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
	display: none;
}

.ss-custom-select::after {
	border-bottom: 2px solid black;
	border-right: 2px solid black;
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -7px;
	pointer-events: none;
	position: absolute;
	right: 2.4rem;
	top: 50%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	-webkit-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

textarea {
	min-height: calc(8 * var(--space));
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	color: white;
	background-color: var(--color-gray-16);
	border: 1px solid var(--color-gray-16);
}

label,
legend {
	font-family: var(--font-1);
	font-size: var(--text-sm);
	line-height: var(--vspace-0_5);
	margin-bottom: var(--vspace-0_5);
	color: var(--color-text-dark);
	display: block;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label>.label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: var(--font-1);
	line-height: inherit;
}

label>input[type="checkbox"],
label>input[type="radio"] {
	margin: 0;
	position: relative;
	top: .2rem;
}

/* -------------------------------------------------------------------
* ## style placeholder text
* ------------------------------------------------------------------- */
::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: var(--color-placeholder);
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--color-placeholder);
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: var(--color-placeholder);
}

::placeholder {
	/* Most modern browsers support this now. */
	color: var(--color-placeholder);
}

.placeholder {
	color: var(--color-placeholder) !important;
}

/* -------------------------------------------------------------------
* ## change autocomplete styles in Chrome
* ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--color-1);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

/* ===================================================================
* # buttons
*
* ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	--btn-height: var(--vspace-btn);
	display: inline-block;
	font-family: var(--font-2);
	font-weight: 600;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: .4em;
	height: var(--btn-height);
	line-height: calc(var(--btn-height) - .4rem);
	padding: 0 3.2rem;
	margin: 0 .4rem 1.6rem 0;
	color: var(--color-btn-text);
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--color-btn);
	border: 0.2rem solid var(--color-btn);
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background-color: var(--color-btn-hover);
	border-color: var(--color-btn-hover);
	color: var(--color-btn-hover-text);
	outline: 0;
}

/* button primary
* ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
	background: var(--color-btn-primary);
	border-color: var(--color-btn-primary);
	color: var(--color-btn-primary-text);
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
	background: var(--color-btn-primary-hover);
	border-color: var(--color-btn-primary-hover);
	color: var(--color-btn-primary-hover-text);
}

/* button modifiers
* ------------------------------------------------- */
.btn.h-full-width,
button.h-full-width {
	width: 100%;
	margin-right: 0;
}

.btn--small,
button.btn--small {
	--btn-height: calc(var(--vspace-btn) - 1.6rem);
}

.btn--medium,
button.btn--medium {
	--btn-height: calc(var(--vspace-btn) + .8rem);
}

.btn--large,
button.btn--large {
	--btn-height: calc(var(--vspace-btn) + 1.6rem);
}

.btn--stroke,
button.btn--stroke {
	background: transparent !important;
	border: 0.2rem solid var(--color-btn-stroke);
	color: var(--color-btn-stroke-text);
}

.btn--stroke:hover,
button.btn--stroke:hover {
	background: var(--color-btn-stroke-hover) !important;
	border: 0.2rem solid var(--color-btn-stroke-hover);
	color: var(--color-btn-stroke-hover-text);
}

.btn--pill,
button.btn--pill {
	padding-left: 3.2rem !important;
	padding-right: 3.2rem !important;
	border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* ===================================================================
* # additional components
*
* ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
* ## additional typo styles
* ------------------------------------------------------------------- */
.drop-cap:first-letter {
	float: left;
	font-family: var(--font-2);
	font-weight: 700;
	font-size: calc(3 * var(--space));
	line-height: .85;
	padding: 0 0.125em 0 0;
	text-transform: uppercase;
	background: transparent;
	color: var(--color-text-dark);
}

/* line definition style
* ----------------------------------------------- */
.lining dt,
.lining dd {
	display: inline;
	margin: 0;
}

.lining dt+dt:before,
.lining dd+dt:before {
	content: "\A";
	white-space: pre;
}

.lining dd+dd:before {
	content: ", ";
}

.lining dd+dd:before {
	content: ", ";
}

.lining dd:before {
	content: ": ";
	margin-left: -0.2em;
}

/* dictionary definition style
* ----------------------------------------------- */
.dictionary-style dt {
	display: inline;
	counter-reset: definitions;
}

.dictionary-style dt+dt:before {
	content: ", ";
	margin-left: -0.2em;
}

.dictionary-style dd {
	display: block;
	counter-increment: definitions;
}

.dictionary-style dd:before {
	content: counter(definitions, decimal) ". ";
}

/**
* Pull Quotes
* -----------
* markup:
*
* <figure class="pull-quote">
    *      <blockquote>
        *          <p></p>
    *      </blockquote>
* </figure>
*
* --------------------------------------------------------------------- */
.pull-quote {
	position: relative;
	padding: 0;
	margin-top: 0;
	text-align: center;
}

.pull-quote blockquote {
	border: none;
	margin: 0 auto;
	max-width: 62rem;
	padding-top: var(--vspace-2_5);
	padding-bottom: var(--vspace-2_5);
	position: relative;
}

.pull-quote blockquote p {
	font-weight: 400;
	color: var(--color-text-dark);
}

.pull-quote blockquote:before {
	content: "";
	display: block;
	height: var(--vspace-1);
	width: var(--vspace-1);
	background-repeat: no-repeat;
	background: center center;
	background-size: contain;
	background-image: url(../images/icons/icon-quote.svg);
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	position: absolute;
	top: var(--vspace-1);
	/*left: 50%;*/
}

/**
* Stats Tab
* ---------
* markup:
*
* <ul class="stats-tabs">
    *      <li><a href="#">[value]<em>[name]</em></a></li>
*  </ul>
*
* Extend this object into your markup.
*
* --------------------------------------------------------------------- */
.stats-tabs {
	padding: 0;
	margin: var(--vspace-1) 0;
}

.stats-tabs li {
	display: inline-block;
	margin: 0 1.6rem var(--vspace-0_5) 0;
	padding: 0 1.5rem 0 0;
	border-right: 1px solid var(--color-border);
}

.stats-tabs li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.stats-tabs li a {
	display: inline-block;
	font-size: var(--text-lg);
	font-family: var(--font-2);
	font-weight: 600;
	line-height: var(--vspace-1_5);
	border: none;
	color: var(--color-black);
}

.stats-tabs li a:hover {
	color: var(--color-1);
}

.stats-tabs li a em {
	display: block;
	margin: 0;
	font-family: var(--font-1);
	font-size: var(--text-sm);
	line-height: var(--vspace-0_5);
	font-weight: normal;
	font-style: normal;
	color: var(--color-text-light);
}

/* -------------------------------------------------------------------
* ## skillbars
* ------------------------------------------------------------------- */
.skill-bars {
	list-style: none;
	margin: var(--vspace-2) 0 var(--vspace-1);
}

.skill-bars li {
	height: .4rem;
	background: var(--color-gray-3);
	width: 100%;
	margin-bottom: calc(var(--vspace-2) - .4rem);
	padding: 0;
	position: relative;
}

.skill-bars li strong {
	position: absolute;
	left: 0;
	top: calc((var(--vspace-1) * 1.25) * -1);
	font-family: var(--font-2);
	font-weight: 500;
	color: white;
	text-transform: uppercase;
	letter-spacing: .2em;
	font-size: calc(var(--text-size) * 0.7778);
	line-height: calc(0.75 * var(--space));
}

.skill-bars li .progress {
	background: var(--color-black);
	position: relative;
	height: 100%;
}

.skill-bars li .progress span {
	position: absolute;
	right: 0;
	top: calc((var(--vspace-1) + .8rem)* -1);
	display: block;
	font-family: var(--font-2);
	color: white;
	font-size: 1rem;
	line-height: 1;
	background: var(--color-black);
	padding: calc(0.25 * var(--space)) calc(0.25 * var(--space));
	border-radius: 4px;
}

.skill-bars li .progress span::after {
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -5px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: var(--color-black, var(--color-black));
	content: "";
}

.skill-bars li .percent5 {
	width: 5%;
}

.skill-bars li .percent10 {
	width: 10%;
}

.skill-bars li .percent15 {
	width: 15%;
}

.skill-bars li .percent20 {
	width: 20%;
}

.skill-bars li .percent25 {
	width: 25%;
}

.skill-bars li .percent30 {
	width: 30%;
}

.skill-bars li .percent35 {
	width: 35%;
}

.skill-bars li .percent40 {
	width: 40%;
}

.skill-bars li .percent45 {
	width: 45%;
}

.skill-bars li .percent50 {
	width: 50%;
}

.skill-bars li .percent55 {
	width: 55%;
}

.skill-bars li .percent60 {
	width: 60%;
}

.skill-bars li .percent65 {
	width: 65%;
}

.skill-bars li .percent70 {
	width: 70%;
}

.skill-bars li .percent75 {
	width: 75%;
}

.skill-bars li .percent80 {
	width: 80%;
}

.skill-bars li .percent85 {
	width: 85%;
}

.skill-bars li .percent90 {
	width: 90%;
}

.skill-bars li .percent95 {
	width: 95%;
}

.skill-bars li .percent100 {
	width: 100%;
}

/* -------------------------------------------------------------------
* ## alert box
* ------------------------------------------------------------------- */
.alert-box {
	padding: var(--vspace-0_75) 4rem var(--vspace-0_75) 3.2rem;
	margin-bottom: var(--vspace-1);
	border-radius: 4px;
	font-family: var(--font-1);
	font-weight: 500;
	font-size: var(--text-sm);
	line-height: var(--vspace-0_75);
	opacity: 1;
	visibility: visible;
	position: relative;
}

.alert-box__close {
	position: absolute;
	display: block;
	right: 1.6rem;
	top: 1.6rem;
	cursor: pointer;
	width: 12px;
	height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 2px;
	height: 12px;
	top: 0;
	left: 5px;
}

.alert-box__close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.alert-box__close::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.alert-box--error {
	background-color: var(--color-error);
	color: var(--color-error-content);
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
	background-color: var(--color-error-content);
}

.alert-box--success {
	background-color: var(--color-success);
	color: var(--color-success-content);
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
	background-color: var(--color-success-content);
}

.alert-box--info {
	background-color: var(--color-info);
	color: var(--color-info-content);
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
	background-color: var(--color-info-content);
}

.alert-box--notice {
	background-color: var(--color-notice);
	color: var(--color-notice-content);
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
	background-color: var(--color-notice-content);
}

.alert-box.hideit {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* -------------------------------------------------------------------
* ## pagination
* ------------------------------------------------------------------- */
.pgn {
	--pgn-num-height: calc(var(--vspace-1) + .4rem);
	margin: var(--vspace-1) auto var(--vspace-1);
	text-align: center;
}

.pgn ul {
	display: inline-block;
	list-style: none;
	margin-left: 0;
	position: relative;
	padding: 0 6rem;
}

.pgn ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.pgn__num {
	display: inline-block;
	font-family: var(--font-2);
	font-weight: 600;
	font-size: var(--text-size);
	line-height: var(--vspace-1);
	padding: .2rem 1.2rem;
	height: var(--pgn-num-height);
	margin: .2rem .2rem;
	color: var(--color-text-dark);
	border-radius: 4px;
	-webkit-transition: all, .3s, ease-in-out;
	transition: all, .3s, ease-in-out;
}

.pgn__num:hover {
	background: var(--color-gray-18);
	color: var(--color-white);
}

.pgn .current,
.pgn .current:hover {
	background-color: var(--color-gray-18);
	color: var(--color-white);
}

.pgn .inactive,
.pgn .inactive:hover {
	opacity: 0.4;
	cursor: default;
}

.pgn__prev,
.pgn__next {
	display: -ms-inline-flexbox;
	display: -webkit-inline-box;
	display: inline-flex;
	-ms-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-flow: row wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	height: var(--pgn-num-height);
	width: 4.8rem;
	line-height: var(--vspace-1);
	border-radius: 4px;
	padding: 0;
	margin: 0;
	opacity: 1;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	-webkit-transition: all, .3s, ease-in-out;
	transition: all, .3s, ease-in-out;
	position: absolute;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}

.pgn__prev:hover,
.pgn__next:hover {
	background-color: var(--color-gray-18);
}

.pgn__prev svg,
.pgn__next svg {
	height: 2.4rem;
	width: 2.4rem;
	-webkit-transition: all, .3s, ease-in-out;
	transition: all, .3s, ease-in-out;
}

.pgn__prev svg path,
.pgn__next svg path {
	fill: var(--color-text-dark);
}

.pgn__prev:hover svg path,
.pgn__prev:focus svg path,
.pgn__next:hover svg path,
.pgn__next:focus svg path {
	fill: white;
}

.pgn__prev {
	left: 0;
}

.pgn__next {
	right: 0;
}

.pgn__prev.inactive,
.pgn__next.inactive {
	opacity: 0.4;
	cursor: default;
}

.pgn__prev.inactive:hover,
.pgn__next.inactive:hover {
	background-color: transparent;
}

/* -------------------------------------------------------------------
* responsive:
* pagination
* ------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
	.pgn ul {
		padding: 0 5.2rem;
	}
}

/* ===================================================================
* # common and reusable styles
*
* ------------------------------------------------------------------- */
.wide {
	max-width: var(--width-wide);
}

.wider {
	max-width: var(--width-wider);
}

.narrow {
	max-width: var(--width-narrow);
}

.narrower {
	max-width: var(--width-narrower);
}

/* -------------------------------------------------------------------
* ## animation stuff
* ------------------------------------------------------------------- */
.animate-this {
	opacity: 0;
	visibility: hidden;
}

.no-js .animate-this,
.no-cssanimations .animate-this {
	opacity: 1;
	visibility: visible;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

/* fade in */
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translate3d(0, 150%, 0);
		transform: translate3d(0, 150%, 0);
	}

	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translate3d(0, 150%, 0);
		transform: translate3d(0, 150%, 0);
	}

	to {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

/* -------------------------------------------------------------------
* ## close button for search and mobile navigation
* ------------------------------------------------------------------- */
.s-header__overlay-close {
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	display: block;
	width: 46px;
	height: 46px;
	margin-left: -23px;
	position: absolute;
	top: var(--vspace-1);
	left: 50%;
}

.s-header__overlay-close::before,
.s-header__overlay-close::after {
	content: '';
	display: inline-block;
	width: 2px;
	height: 20px;
	top: 12px;
	left: 22px;
	background-color: #ffffff;
	position: absolute;
}

.s-header__overlay-close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.s-header__overlay-close::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

a.s-header__overlay-close.close-mobile-menu {
	background: #c0043e;
}

/* -------------------------------------------------------------------
* ## slick slider
* ------------------------------------------------------------------- */
.slick-slider .slick-slide {
	outline: none;
}

.slick-slider .slick-dots {
	display: block;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: var(--vspace-1) 0 0 0;
	text-align: center;
	position: absolute;
	top: 100%;
	left: 0;
}

.slick-slider .slick-dots li {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 5px;
	cursor: pointer;
}

.slick-slider .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	line-height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

.slick-slider .slick-dots li button:hover,
.slick-slider .slick-dots li button:focus {
	outline: none;
}

.slick-slider .slick-dots li.slick-active button,
.slick-slider .slick-dots li:hover button {
	background: white;
}

/* -------------------------------------------------------------------
* ## imagen encabezado home
* ---------------------*/
/*.masthead {
  height: 100vh;
  min-height: 500px;
  background-image: url('../images/portada/portada-slide.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
*/

/* -------------------------------------------------------------------
* ## masonry entries
* ------------------------------------------------------------------- */
.bricks-wrapper .entry {
	margin-bottom: 4rem;
}

/*.bricks-wrapper .entry__thumb,
.bricks-wrapper .entry__text {
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
box-shadow: 0 2px 8px 7px rgb(0 0 0 / 6%);
}*/
.bricks-wrapper .entry__thumb {
	overflow: hidden;
	position: relative;
}

.bricks-wrapper .entry__thumb img {
	vertical-align: bottom;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin: 0;
}

.bricks-wrapper .entry__thumb .thumb-link::before {
	z-index: 1;
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}

.bricks-wrapper .entry__thumb .thumb-link::after {
	z-index: 1;
	display: block;
	content: "...";
	font-family: georgia, serif;
	font-size: 3.2rem;
	height: 90px;
	width: 90px;
	letter-spacing: .2rem;
	line-height: 90px;
	margin-left: -45px;
	margin-top: -45px;
	text-align: center;
	color: white;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 50%;
	top: 50%;
}

.bricks-wrapper .entry__thumb:hover .thumb-link::before {
	opacity: 1;
	visibility: visible;
}

.bricks-wrapper .entry__thumb:hover .thumb-link::after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.bricks-wrapper .entry__thumb:hover .thumb-link img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.bricks-wrapper .entry__text {
	padding: 2.4rem 2.8rem 3.6rem;
	background-color: white;
}

.bricks-wrapper .entry__title {
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: var(--vspace-1);
	margin-top: 0;
	margin-bottom: var(--vspace-0_5);
}

.bricks-wrapper .entry__title a,
.bricks-wrapper .entry__title a:visited {
	color: black;
}

.bricks-wrapper .entry__meta {
	font-family: "roboto-regular", sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1.2rem;
}

.bricks-wrapper .entry__meta a,
.bricks-wrapper .entry__meta a:visited {
	color: black;
}

.bricks-wrapper .entry__cat-links a::after {
	content: ", ";
}

.bricks-wrapper .entry__cat-links a:last-child::after {
	display: none;
}

.bricks-wrapper .entry__excerpt {
	font-size: 1.5rem;
	line-height: 1.733;
	color: var(--color-text-light);
}

.bricks-wrapper .entry__excerpt p {
	margin-bottom: 0;
}

/* featured post slider
* ------------------------------------------------------------------- */
.featured-grid .entry__content {
	position: relative;
}

.featured-grid .entry__content:hover .f-slide__overlay {
	background-color: rgba(0, 0, 0, 0.5);
}

.f-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	height: 600px;
	width: 100%;
	background-color: white;
	padding: var(--vspace-2) 15% var(--vspace-1);
	text-align: center;
	position: relative;
}

.f-slide__background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.f-slide__overlay {
	background-color: rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.f-slide__content {
	position: relative;
}

.f-slide__meta {
	font-family: var(--font-1);
	font-size: set-text-size(0.8888);
	margin: -3.2rem 0 0.8rem 0;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.f-slide__meta li {
	display: inline-block;
	margin: 0 3px;
	padding: 0;
}

.f-slide__meta li a {
	color: rgba(255, 255, 255, 0.6);
}

.f-slide__meta li a:hover,
.f-slide__meta li a:focus {
	color: white;
	border-color: rgba(255, 255, 255, 0.2);
}

.f-slide__title {
	font-family: var(--font-2);
	font-weight: 500;
	font-size: var(--text-xxl);
	line-height: 1.286;
	margin-top: 0;
	margin-bottom: var(--vspace-1);
	color: white;
}

.f-slide__title a {
	color: white;
	border-bottom: 1px solid transparent;
}

.f-slide__title a:hover,
.f-slide__title a:focus {
	color: white;
	border-color: rgba(255, 255, 255, 0.1);
}

/* featured-post-slider direction nav
* --------------------------------------------------------- */
.featured-post-nav button {
	z-index: 2;
	background-color: black;
	border: black;
	padding: 0;
	margin: 0;
	height: 6rem;
	width: 6rem;
	cursor: pointer;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
}

.featured-post-nav button svg {
	height: 2rem;
	width: 2rem;
}

.featured-post-nav button svg path {
	fill: rgba(255, 255, 255, 0.5);
	-webkit-transition: all .3s;
	transition: all .3s;
}

.featured-post-nav button:hover svg path,
.featured-post-nav button:focus svg path {
	fill: white;
}

.featured-post-nav__prev {
	left: 0;
}

.featured-post-nav__next {
	right: 0;
}

/*  post formats - masonry view
* ------------------------------------------------------------------- */
/* format quote & format link
* --------------------------------------- */
.format-quote,
.format-link {
	text-align: center;
}

.format-quote .entry__thumb,
.format-link .entry__thumb {
	display: table;
	background: white;
	padding: 2.4rem 3rem 4.8rem;
	min-height: 320px;
	width: 100%;
	position: relative;
}

.format-quote .entry__thumb::before,
.format-link .entry__thumb::before {
	content: "";
	display: block;
	height: 3.6rem;
	width: 3.6rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 1.5rem;
	position: absolute;
	top: var(--vspace-1_25);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.format-quote blockquote::before {
	display: none;
}

.format-quote blockquote,
.format-link .link-wrap {
	display: table-cell;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	border: none;
}

.format-quote blockquote p,
.format-link .link-wrap p {
	font-family: var(--font-2);
	font-weight: 500;
	font-size: var(--text-lg);
	line-height: var(--vspace-1);
	color: black;
	padding: 7.8rem 0 0 0;
	margin-bottom: var(--vspace-1);
}

.format-quote cite,
.format-link cite {
	display: block;
	font-family: var(--font-1);
	font-size: 1.5rem;
	font-style: normal;
	line-height: 1.6;
	color: var(--color-text-light);
}

.format-quote cite::before,
.format-link cite::before {
	display: none;
}

.format-quote cite a,
.format-quote cite a:visited {
	color: var(--color-text-light);
	border: none;
}

.format-quote .entry__thumb::before {
	background-image: url(../images/icons/icon-quote.svg);
}

.format-link .entry__thumb::before {
	background-image: url(../images/icons/icon-link.svg);
	width: 3.2rem;
	height: 3.2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 3rem 3rem;
}

.format-link .link-wrap cite:before {
	display: none;
}

.format-link .link-wrap cite a,
.format-link .link-wrap cite a:visited {
	color: var(--color-text-light);
	display: inline-block;
	padding-bottom: .4rem;
}

.format-link .link-wrap cite a:hover,
.format-link .link-wrap cite a:focus {
	color: black;
}

/* format video & format audio
* --------------------------------------- */
.format-video .entry__thumb::after,
.format-audio .entry__thumb::after {
	content: "";
	display: block;
	height: 5.6rem;
	width: 5.6rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	position: absolute;
	top: 2.4rem;
	left: 2.4rem;
}

.format-video .thumb-link::before,
.format-video .thumb-link::after,
.format-audio .thumb-link::before,
.format-audio .thumb-link::after {
	display: none !important;
}

.format-video .entry__thumb::after {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	background-image: url(../images/icons/icon-video.svg);
	background-size: 2.8rem 2.8rem;
}

.format-video .entry__thumb-link {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.format-audio .entry__thumb::after {
	background-image: url(../images/icons/icon-audio.svg);
	background-size: 2.8rem 2.8rem;
}

/* -------------------------------------------------------------------
* ## format gallery
* ------------------------------------------------------------------- */
.format-gallery .entry__thumb {
	overflow: hidden;
}

.format-gallery .slider {
	overflow: hidden;
}

.format-gallery .slick-dots {
	text-align: right;
	margin: 0;
	padding: 0 2.4rem 0 2rem;
	position: absolute;
	top: auto;
	bottom: var(--vspace-0_75);
	right: 0;
}

.format-gallery .slider__slides {
	cursor: pointer;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}

.format-gallery .slider__slides.slick-initialized {
	opacity: 1;
	visibility: visible;
}

/* responsive:
/* common and reusable styles
* ------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
	.bricks-wrapper .entry {
		margin-bottom: 3.6rem;
	}
}

@media screen and (max-width: 1040px) {

	.bricks-wrapper .entry__title,
	.format-quote blockquote p,
	.format-link .link-wrap p {
		font-size: var(--text-md);
		line-height: calc(0.875 * var(--space));
	}
}

@media screen and (max-width: 980px) {

	.bricks-wrapper .entry__title,
	.format-quote blockquote p,
	.format-link .link-wrap p {
		font-size: var(--text-lg);
		line-height: var(--vspace-1);
	}
}

@media screen and (max-width: 800px) {
	.bricks-wrapper .entry {
		margin-bottom: 3.2rem;
	}
}

@media screen and (max-width: 700px) {
	.bricks-wrapper .entry {
		margin-bottom: 2.4rem;
	}

	.bricks-wrapper .entry__title,
	.format-quote blockquote p,
	.format-link .link-wrap p {
		font-size: var(--text-md);
		line-height: calc(0.875 * var(--space));
	}
}

@media screen and (max-width: 600px) {
	.bricks-wrapper .entry {
		margin-bottom: 4rem;
	}

	.bricks-wrapper .entry__title,
	.format-quote blockquote p,
	.format-link .link-wrap p {
		font-size: var(--text-lg);
		line-height: var(--vspace-1);
	}

	.f-slide {
		height: 552px;
	}

	.f-slide__meta {
		font-size: var(--text-sm);
	}

	.f-slide__title {
		font-size: var(--text-xl);
	}

	.featured-post-nav button {
		height: 5.2rem;
		width: 5.2rem;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		top: auto;
		bottom: 0;
	}

	.featured-post-nav button svg {
		height: 1.6rem;
		width: 1.6rem;
	}
}

@media screen and (max-width: 400px) {
	.bricks-wrapper .entry {
		margin-bottom: 3.6rem;
	}

	.f-slide {
		height: 440px;
	}

	.featured-post-nav button {
		height: 4.4rem;
		width: 4.4rem;
	}

	.featured-post-nav button svg {
		height: 1.4rem;
		width: 1.4rem;
	}
}

/* ===================================================================
* # site header
*
* ------------------------------------------------------------------- */
.s-header {
	z-index: 100;
	width: 100%;
	background: #000000;
	/* height: 7.800000000000001rem; */
	-webkit-box-shadow: 0px 1px 12px rgb(17 17 26);
	box-shadow: 0px 1px 12px 0px rgb(20 20 20);
	position: relative;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	position: fixed;
	top: 0;
	height: 70px;
	max-height: 70px;
}

.s-header__content {
	width: 100%;
	height: auto;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	position: relative;
}

/* -------------------------------------------------------------------
* ## header logo
* ------------------------------------------------------------------- */
.s-header__logo {
	z-index: 101;
	margin: 0;
	padding-left: var(--gutter-lg);
	position: relative;
}

.s-header__logo a {
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.s-header__logo img {
	margin: 0;
	vertical-align: bottom;
	padding-bottom: 9px;
}

/* -------------------------------------------------------------------
* ## main navigation
* ------------------------------------------------------------------- */
.s-header__nav-wrap {
	margin: auto;
}

.s-header__nav-wrap .s-header__nav-heading {
	font-family: var(--font-2);
	font-weight: 600;
	font-size: var(--text-sm);
	margin-top: var(--vspace-3);
	text-align: center;
}

.s-header__nav-wrap .s-header__nav-heading,
.s-header__nav-wrap .close-mobile-menu {
	display: none;
}

.s-header__nav {
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--font-2);
	font-weight: 500;
	font-size: 1.6rem;
}

.s-header__nav li {
	display: inline-block;
	position: relative;
	padding: 0 1rem;
}

.not-work a {
	text-decoration: line-through;
	color: #15f7c4 !important;
}

.s-header__nav li.has-children {
	padding-right: 2rem;
}

.s-header__nav li a {
	display: block;
	color: #dedbdb;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
}

.s-header__nav li.has-children>a::after {
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	border-right: 1px solid rgba(0, 0, 0, 0.5);
	content: '';
	display: block;
	height: 5px;
	width: 5px;
	margin-top: -4px;
	pointer-events: none;
	-webkit-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
	position: absolute;
	right: -1.2rem;
	top: calc(50% + 2px);
}

.s-header__nav li:hover>a {
	color: #c0043e;
}

.s-header__nav li:hover>a.active {
	color: #898989;
}

.s-header__nav li:hover>a.disable {
	color: #898989;
}

.s-header__nav li:focus>a {
	color: #565656;
}

a.disable {
	cursor: default;
}

.s-header__nav li:hover li,
.s-header__nav li:focus li {
	background: transparent;
}

.s-header__nav li.current>a {
	border-bottom: 2px solid #e2e2e2;
	color: #e2e2e2;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

.s-header__nav li.current>a::before {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background-color: black;
	position: absolute;
	left: 0;
	bottom: 0;
}

.s-header__nav li ul {
	z-index: 200;
	font-size: 1.5rem;
	font-weight: 400;
	margin: 0;
	background: #f4f4f4;
	border-radius: 0 0 4px 4px;
	-webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s;
	transition: all .5s;
	position: absolute;
	top: 100%;
	left: 0;
}

.s-header__nav li ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	left: calc(100% + 1px);
	border-radius: 0 0 4px 4px;
	padding-top: 1.2rem;
}

.s-header__nav li ul li {
	display: block;
	text-align: left;
	padding: 0;
	margin: 0;
	min-height: 3.2rem;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.s-header__nav li ul li a {
	display: block;
	white-space: nowrap;
	padding: 16.5px 25px;
	font-family: var(--font-1);
	line-height: 1.8rem;
	color: rgba(0, 0, 0, 0.6);
}

.s-header__nav li ul li a:hover,
.s-header__nav li ul li a:focus {
	color: black;
}

.s-header__nav li:hover>ul {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* -------------------------------------------------------------------
* ## header-toggle
* ------------------------------------------------------------------- */
.s-header__toggle-menu {
	display: none;
	width: 48px;
	height: 48px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	right: 4rem;
	top: 50%;
}

.s-header__toggle-menu span {
	display: block;
	width: 28px;
	height: 3px;
	margin-top: -1.5px;
	position: absolute;
	right: 10px;
	top: 50%;
	bottom: auto;
	left: auto;
	background-color: #f5f5f5;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

.s-header__toggle-menu span::before,
.s-header__toggle-menu span::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
}

.s-header__toggle-menu span::before {
	top: -10px;
}

.s-header__toggle-menu span::after {
	bottom: -10px;
}

/* -------------------------------------------------------------------
* ## header-search
* ------------------------------------------------------------------- */
.s-header__search {
	z-index: 300;
	display: block;
	text-align: center;
	background: white;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.s-header__search-form {
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
}

.s-header__search-form label {
	color: black;
}

.s-header__search-form::after {
	content: "Press Enter to begin your search.";
	display: block;
	letter-spacing: 0.6px;
	font-size: 1.6rem;
	margin-top: var(--vspace-1);
	text-align: center;
	color: rgba(0, 0, 0, 0.5);
}

.s-header__search-form input[type="search"] {
	background-color: transparent;
	color: black;
	height: auto;
	width: 100%;
	font-family: var(--font-2);
	font-weight: 600;
	font-size: 6rem;
	line-height: 1.5;
	border: none;
	border-bottom: 1px solid var(--color-border) !important;
	max-width: 680px;
	padding-top: .8rem !important;
	padding-bottom: .8rem !important;
	margin: 0 auto;
	text-align: center;
}

.s-header__search-form input[type="search"]::-webkit-search-decoration,
.s-header__search-form input[type="search"]::-webkit-search-cancel-button,
.s-header__search-form input[type="search"]::-webkit-search-results-button,
.s-header__search-form input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

.s-header__search-form input[type="search"]::-webkit-input-placeholder {
	color: black;
	text-align: center !important;
	opacity: 1;
}

.s-header__search-form input[type="search"]:-moz-placeholder {
	color: black;
	text-align: center !important;
	opacity: 1;
}

.s-header__search-form input[type="search"]::-moz-placeholder {
	color: black;
	text-align: center !important;
	opacity: 1;
}

.s-header__search-form input[type="search"]:-ms-input-placeholder {
	color: black;
	text-align: center !important;
	opacity: 1;
}

.s-header__search-form input[type="search"].placeholder {
	color: black;
	text-align: center !important;
	opacity: 1;
}

.s-header__search-form input[type="search"]:focus {
	outline: none;
}

.s-header__search-form input[type="submit"] {
	display: none;
}

body.search-is-visible {
	overflow: hidden;
}

.search-is-visible .s-header__search {
	opacity: 1;
	visibility: visible;
}

/* -------------------------------------------------------------------
* ## search triggers
* ------------------------------------------------------------------- */
.s-header__search-trigger {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: var(--gutter-lg);
}

.s-header__search-trigger svg {
	height: 2.2rem;
	width: 2.2rem;
}

.s-header__search-trigger svg path {
	fill: black;
}

/* -------------------------------------------------------------------
* responsive:
* header
* ------------------------------------------------------------------- */
@media screen and (max-width: 1240px) {
	.s-header__logo {
		padding-left: 4.4rem;
	}

	.s-header__search-trigger {
		right: 4rem;
	}
}

@media screen and (min-width: 801px) {

	.s-header__nav li.has-children:hover>a::after,
	.s-header__nav li.has-children:focus>a::after {
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}

	.s-header__nav li ul {
		display: block !important;
	}

	div#filtros-mobile {
		display: none;
	}
}

@media screen and (max-width: 800px) {
	.s-header__logo {
		padding-left: 4rem;
	}

	.s-header__logo img {}

	.s-header__nav-wrap {
		--color-border: var(--color-gray-1);
		z-index: 300;
		background-color: #000000;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		border: none;
		overflow-y: auto;
	}

	.s-header__nav-wrap .s-header__nav-heading,
	.s-header__nav-wrap .close-mobile-menu {
		display: block;
	}

	.s-header__nav {
		font-weight: 600;
		font-size: var(--text-size);
		margin: var(--vspace-2_5) 6rem var(--vspace-1);
		border-bottom: 1px solid var(--color-border);
	}

	.s-header__nav li {
		display: block;
		padding: 0;
		text-align: left;
	}

	.s-header__nav li ul {
		display: none;
		position: static;
		-webkit-box-shadow: none;
		box-shadow: none;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
		visibility: visible;
		background-color: transparent;
		padding: 0 0 1.8rem 0;
		-webkit-transition: none !important;
		transition: none !important;
	}

	.s-header__nav li.has-children>a::after {
		top: 27px;
	}

	.s-header__nav li.has-children>a.sub-menu-is-open::after {
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}

	.s-header__nav li ul li a {
		padding: .8rem 1.6rem .8rem;
	}

	.s-header__nav li.current a::before {
		display: none;
	}

	.s-header__nav>li {
		border-top: 1px solid var(--color-border);
	}

	.s-header__nav>li a {
		line-height: 5.6rem;
	}

	.s-header__toggle-menu {
		display: block;
	}

	.s-header__search-trigger {
		top: calc(50% + 2px);
		right: calc(4rem + 5rem);
	}

	.s-header__search-trigger svg {
		height: 3.2rem;
		width: 3.2rem;
	}

	body.nav-wrap-is-visible {
		overflow: hidden;
	}

	.nav-wrap-is-visible .s-header__nav-wrap {
		opacity: 1;
		visibility: visible;
	}

	.s-header__search-form::after {
		font-size: var(--text-sm);
	}

	.s-header__search-form input[type="search"] {
		max-width: none;
		width: 80%;
		font-size: 4.2rem;
	}
}

@media screen and (max-width: 600px) {
	.s-header {
		height: 11.2rem;
	}

	.s-header__toggle-menu {
		right: 3.2rem;
	}

	.s-header__search-trigger {
		right: calc(3.2rem + 5rem);
	}

	.s-header__logo {
		padding-left: var(--gutter-mob);
	}

	.s-header__search-form input[type="search"] {
		font-size: 3.4rem;
	}
}

@media screen and (max-width: 500px) {
	.s-header__search-form input[type="search"] {
		font-size: 3rem;
	}
}

@media screen and (max-width: 400px) {
	.s-header {
		height: 10rem;
	}

	.s-header__logo {
		padding-left: .2rem;
	}

	.s-header__logo img {}

	.s-header__nav {
		margin: 4.2rem 3.2rem 3.2rem;
	}

	.s-header__toggle-menu {
		right: 2rem;
	}

	.s-header__search-trigger {
		right: calc(2rem + 4.8rem);
	}

	.s-header__search-form input[type="search"] {
		font-size: 2.4rem;
	}
}

/* ===================================================================
* # pageheader
*
* ------------------------------------------------------------------- */
.s-pageheader {
	padding: var(--vspace-1_5) 0 0 0;
	text-align: center;
}

.s-pageheader .row {
	max-width: 900px;
}

.s-pageheader h1 {
	margin-top: 0;
	margin-bottom: var(--vspace-1);
}

/* ===================================================================
* # content wrap
*
* ------------------------------------------------------------------- */
.s-content {
	--row-max-width: 1080px;
	padding-bottom: var(--vspace-3_5);
}

.s-content--single {
	padding-bottom: 0px;
}

.s-content .row {
	max-width: 1140px;
}

.s-content .row.wide {
	max-width: 1400px;
}

.s-content .row.narrow {
	max-width: 800px;
}

.s-content__media {
	position: relative;
	margin: 2rem 0px 2rem;
}

.s-content__media img {
	vertical-align: bottom;
	margin-bottom: 0;
}

.s-content__primary {
	padding-left: 8rem;
	padding-right: 8rem;
}

article.s-post.entry.format-standard .s-content__primary {
	padding: 0px;
}

/*article.brick.custom-brick.entry.format-standard {
	border-bottom: 1px solid #9c9c9c7d;
	padding-bottom: 25px;
	margin-bottom: 2rem;
}*/

/*.s-content__primary img {
max-width: calc(var(--row-max-width) - var(--gutter-lg) * 2);
margin: var(--vspace-1) 0 var(--vspace-1) -8rem;
}*/
.s-content__title {
	font-size: var(--text-xxxl);
	line-height: var(--vspace-1_75);
	margin-top: 0;
	margin-bottom: var(--vspace-1_75);
	letter-spacing: -.02em;
	text-align: center;
}

.s-content__title--post {
	margin-bottom: var(--vspace-0_25);
}

.s-content__blocks h4 {
	margin-top: 0;
}

.s-content__form {
	margin-top: var(--vspace-2);
}

/* responsive:
* content wrap
* ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.s-content {
		--row-max-width: 1000px;
	}

	.s-content__primary {
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}

	.s-content__primary img {
		max-width: 100%;
		/*margin: 0px 2.8rem 2.8rem 0rem;*/
	}
}

@media screen and (max-width: 1100px) {
	.s-content {
		--row-max-width: 920px;
	}

	.s-content__primary {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.s-content__primary img {
		/* margin: 0px 2.8rem 2.8rem 0rem;*/
	}
}

@media screen and (max-width: 1020px) {
	.s-content__primary {
		padding-left: 3.2rem;
		padding-right: 3.2rem;
	}

	.s-content__primary img {
		max-width: 100%;
		/* margin: 0px 0rem 2.8rem 0rem;*/
	}
}

@media screen and (max-width: 800px) {
	.s-content__primary {
		padding-left: 0;
		padding-right: 0;
	}

	.s-content__media {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 600px) {
	.s-content__media {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 400px) {
	.s-content__title {
		font-size: var(--text-xxl);
		line-height: var(--vspace-1_5);
	}
}

/* ===================================================================
* # bricks masonry
*
* ------------------------------------------------------------------- */
.s-bricks {
	padding: 0rem 0px 4.2rem;
}

.s-bricks.with-top-sep {
	position: relative;
}

.s-bricks.with-top-sep::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -100px;
	width: 200px;
	height: 1px;
	/* background-color: var(--color-border);*/
}

.s-bricks .masonry {
	max-width: 1440px;
	width: 94%;
	margin: 0 auto var(--vspace-1);
}

.s-bricks .pagination {
	margin-top: 6rem;
}

.bricks-wrapper .grid-sizer,
.bricks-wrapper .brick {
	width: 25%;
}

.bricks-wrapper .brick {
	float: left;
	padding: 20px;
}

.bricks-wrapper .featured-grid {
	width: 50%;
}

.bricks-wrapper .featured-grid .entry-content {
	width: 100%;
	background: #151515;
}

/*CUSTOM BRICS*/
.bricks-wrapper.custom-bricks .grid-sizer.custom-sizer,
.bricks-wrapper .brick.custom-brick {
	width: 33.3%;
}

/* responsive:
/* bricks masonry
* ------------------------------------------------------------------- */
@media screen and (max-width: 1440px) {
	.s-bricks .masonry {
		width: 98%;
	}
}

@media screen and (max-width: 1400px) {
	.s-bricks .masonry {
		max-width: var(--width-max);
		width: 94%;
	}

	.bricks-wrapper .grid-sizer,
	.bricks-wrapper .brick {
		width: 33.33333%;
	}

	.bricks-wrapper .brick {
		padding: 15px;
	}

	.bricks-wrapper .featured-grid {
		width: 66.66667%;
	}

	/*CUSTOM BRICKS*/
	.bricks-wrapper.custom-bricks .grid-sizer.custom-sizer,
	.bricks-wrapper .brick.custom-brick {
		width: 33.33333%;
	}
}

@media screen and (max-width: 980px) {
	.s-bricks .masonry {
		max-width: 780px;
		width: 96%;
	}

	.bricks-wrapper .grid-sizer,
	.bricks-wrapper .brick {
		width: 50%;
	}

	.bricks-wrapper .featured-grid {
		width: 100%;
	}

	/*CUSTOM BRICKS*/
	.bricks-wrapper.custom-bricks .grid-sizer.custom-sizer,
	.bricks-wrapper .brick.custom-brick {
		width: 50%;
	}
}

@media screen and (max-width: 800px) {
	.bricks-wrapper .brick {
		padding: 15px;
	}
}

@media screen and (max-width: 700px) {
	.bricks-wrapper .brick {
		padding: 15px;
	}
}

@media screen and (max-width: 600px) {
	.s-bricks .masonry {
		max-width: 480px;
		width: 100%;
	}

	.bricks-wrapper .grid-sizer,
	.bricks-wrapper .brick {
		float: none;
		width: 100%;
		padding: 0px;
		clear: both;
	}

	/*CUSTOM BRICKS*/
	.bricks-wrapper.custom-bricks .grid-sizer.custom-sizer,
	.bricks-wrapper .brick.custom-brick {
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.bricks-wrapper .brick {
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}
}

/* ===================================================================
* # footer
*
* ------------------------------------------------------------------- */
.s-footer {
	padding-top: 9rem;
	padding-bottom: 3rem;
	font-size: 1.5rem;
	color: #e2dcdc;
	background: #151515;
}

.s-footer__info h3 {
	border-bottom: 1px solid rgb(255 255 255 / 14%);
	padding-bottom: 1.2rem;
	margin-bottom: 1.5rem;
	color: whitesmoke;
	font-size: 1.7rem;
	line-height: 1.76;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin-top: 50px;
}

.s-footer .row {
	max-width: 1140px;
}

.s-footer [class*="column"] {
	margin-bottom: var(--vspace-0_5);
}

.s-footer a {
	color: whitesmoke;
}

.s-footer h5 {
	border-bottom: 1px solid rgb(255 255 255 / 14%);
	padding-bottom: 1.2rem;
	margin-bottom: 1.5rem;
	color: whitesmoke;
	font-size: 1.7rem;
	line-height: 1.76;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

.s-footer ul {
	margin-left: 0;
}

.s-footer li {
	padding-left: 0;
}

/* -------------------------------------------------------------------
* ## footer main
* ------------------------------------------------------------------- */
.s-footer__main {
	padding-bottom: var(--vspace-0_5);
}

.s-footer__main ul li {
	list-style: none;
}

.s-footer__main ul a {
	color: #afabab;
	border: none;
	/* text-decoration: underline; */
	margin: 0px 0px 10px 0px;
	border-bottom: 1px solid #7b7b7b;
}

.s-footer__main ul a:hover,
.s-footer__main ul a:focus {
	color: #be083f;
}

/* footer subscribe
* -------------------------------------- */
.s-footer__subscribe p {
	margin-bottom: var(--vspace-0_5);
}

.s-footer__subscribe .subscribe-form #mc-form {
	padding: 0;
}

.s-footer__subscribe .subscribe-form input[type="email"] {
	padding: .8rem 2rem;
	border: none;
	width: 100%;
	margin-bottom: var(--vspace-0_5);
}

.s-footer__subscribe .subscribe-form input[type="submit"] {
	display: none;
}

.s-footer__subscribe .subscribe-form .subscribe-message {
	font-family: var(--font-1);
	font-size: var(--text-sm);
	color: black;
}

.s-footer__subscribe .subscribe-form .subscribe-message i {
	color: black;
	margin-right: .4rem;
}

/* -------------------------------------------------------------------
* ## footer bottom
* ------------------------------------------------------------------- */
.s-footer__bottom {
	margin-top: var(--vspace-0_5);
	text-align: center;
}

/* copyright
* -------------------------------------- */
.ss-copyright span {
	display: inline-block;
	font-size: var(--text-sm);
	line-height: 2.4rem;
}

.ss-copyright span::after {
	content: "|";
	display: inline-block;
	padding: 0 1rem 0 1.2rem;
	color: #ffffffad;
}

.ss-copyright span:last-child::after {
	display: none;
}

/* -------------------------------------------------------------------
* ## go top
* ------------------------------------------------------------------- */
.ss-go-top {
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	position: fixed;
	bottom: 6.4rem;
	right: 6.4rem;
}

.ss-go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 63px;
	width: 60px;
	line-height: 77px;
	text-align: center;
	background: #c0043e;
	color: #f5f5f5;
	text-align: center;
	text-transform: uppercase;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.ss-go-top a:hover,
.ss-go-top a:focus {
	background-color: black;
}

.ss-go-top a:hover svg path,
.ss-go-top a:focus svg path {
	fill: white;
}

.ss-go-top svg {
	height: 2.4rem;
	width: 2.4rem;
}

.ss-go-top svg path {
	fill: white;
}

.ss-go-top.link-is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* responsive:
* footer
* ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.s-footer {
		padding-bottom: var(--vspace-1_5);
	}

	.ss-go-top {
		right: 3.6rem;
		bottom: 4.8rem;
	}

	.ss-go-top a {
		height: 5.2rem;
		width: 5.2rem;
	}

	.ss-go-top svg {
		height: 2rem;
		width: 2rem;
	}
}

@media screen and (max-width: 600px) {
	.s-footer__bottom {
		padding-bottom: .8rem;
	}

	.ss-copyright span {
		display: block;
	}

	.ss-copyright span::after {
		display: none;
	}

	.ss-go-top {
		right: 2.4rem;
		bottom: 4rem;
	}
}

/* ===================================================================
* # blog styles and blog components
*
* ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
* ## single post meta
* ------------------------------------------------------------------- */
.s-content__post-meta {
	font-family: var(--font-1);
	font-size: calc(var(--text-size) * 0.944);
	list-style: none;
	text-align: left;
	margin-left: 0;
	margin-bottom: 4rem;
	color: #000000;
}

li.cat {
	color: #c0043e;
}

.s-content__post-meta a {
	color: black;
}

.s-content__post-meta li {
	/*display: inline-block;*/
	padding-left: 0;

}

.s-content__post-meta .cat a:last-child {
	margin-right: 0;
	border-bottom: 1px solid black;
}

.s-content__post-meta .cat a:last-child::after {
	content: none;
}

.s-content__post-meta .cat a::after {
	content: ",";
}

/* -------------------------------------------------------------------
* ## single post tags
* ------------------------------------------------------------------- */
.s-content__post-tags {
	margin: var(--vspace-2) 0 var(--vspace-1_25);
}

.s-content__post-tags span {
	color: black;
	margin-right: 1rem;
	font-weight: 600;
}

.s-content__post-tags a {
	color: var(--color-text-light);
	margin-right: 1rem;
}

/* -------------------------------------------------------------------
* ## author profile
* ------------------------------------------------------------------- */
.s-content__author {
	margin-top: var(--vspace-2_5);
	padding-top: var(--vspace-0_25);
	padding-left: 9.6rem;
	position: relative;
}

.s-content__author a {
	color: black;
}

.s-content__author h5 {
	margin-top: 0;
}

.s-content__author img {
	margin: .6rem 0 0 0 !important;
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
}

.s-content__author p {
	margin-bottom: var(--vspace-0_5);
}

.s-content__author .author-social {
	list-style: none;
	margin-left: 0;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: .2em;
}

.s-content__author .author-social li {
	display: inline-block;
	margin-right: 0.8rem;
	padding-left: 0;
}

.s-content__author .author-social a {
	color: var(--color-text-light);
}

/* -------------------------------------------------------------------
* ## single post page nav
* ------------------------------------------------------------------- */
/*.s-content__pagenav {
padding-top: var(--vspace-0_5);
margin: 12rem 0;
border-top: 1px solid var(--color-border);
}*/
.s-content__pagenav div {
	float: left;
	width: 50%;
}

.s-content__pagenav a {
	font-family: var(--font-2);
	font-weight: 600;
	font-size: var(--text-lg);
	line-height: var(--vspace-1);
	border: none;
	color: black;
}

.s-content__pagenav a span {
	display: block;
	font-family: var(--font-1);
	font-weight: 400;
	font-size: var(--text-sm);
	line-height: var(--vspace-1);
	margin-bottom: var(--vspace-0_5);
	color: #000000;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.s-content__pagenav a:hover span {
    color: #c0043e;
}

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

/* -------------------------------------------------------------------
* responsive:
* blog styles and blog components
* ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
	.s-content__author {
		padding-left: 0;
		text-align: center;
	}

	.s-content__author img {
		position: static;
		width: 6.6rem;
		height: 6.6rem;
		margin: 0 0 0.8rem 0 !important;
	}
}

@media screen and (max-width: 640px) {
	.s-content__pagenav {
		text-align: center;
	}

	.s-content__pagenav div {
		float: left;
		width: 50%;
		padding-right: 0;
	}

	.s-content__pagenav div:first-child {
		margin-bottom: var(--vspace-0_5);
		text-align: left;
	}
}

/* -------------------------------------------------------------------
* ## comments
* ------------------------------------------------------------------- */
.comments-wrap {
	margin-top: var(--vspace-3);
	padding: var(--vspace-3_5) 0 var(--vspace-3_5);
	background-color: var(--color-gray-1);
}

.comments-wrap .column {
	padding: 0 calc(8rem + var(--gutter-lg));
}

.comments-wrap h3 {
	margin-top: 0;
	margin-bottom: var(--vspace-0_5);
}

.comments-wrap h3 span {
	display: block;
	font-family: var(--font-1);
	font-weight: 400;
	font-size: calc(var(--text-size) * 0.8889);
	line-height: var(--vspace-0_75);
	color: var(--color-text-light);
	margin-top: calc(0.125 * var(--space));
}

/* comments
* -------------------------------------------------- */
#comments {
	padding-top: var(--vspace-0_5);
	padding-bottom: var(--vspace-0_5);
}

#comments ol,
#comments ul {
	list-style: none;
}

.commentlist {
	margin: var(--vspace-2) 0 var(--vspace-1_5);
	padding: 0;
}

.commentlist>.comment {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 2rem 0 0 0;
	padding-left: 14%;
}

.comment__avatar {
	position: absolute;
	left: 0;
	display: block;
}

.comment__avatar img {
	height: var(--vspace-2);
	width: var(--vspace-2);
	border-radius: 100%;
	vertical-align: bottom;
}

.comment__info {
	position: relative;
}

.comment__info .comment__author {
	font-weight: 600;
	font-size: var(--text-size);
	line-height: var(--vspace-1);
	font-style: normal;
	color: black;
}

.comment__meta {
	display: block;
	font-style: normal;
	line-height: var(--vspace-0_75);
	color: var(--color-text-light);
	text-align: right;
	width: 150px;
	position: absolute;
	top: 0;
	right: 0;
}

.comment__meta .comment__time {
	font-size: calc(var(--text-size) * 0.7778);
	text-transform: uppercase;
	letter-spacing: .1rem;
	color: var(--color-text-light);
}

.comment__meta .comment__reply a {
	font-size: var(--text-xs);
	font-family: var(--font-1);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .2rem;
	color: black;
}

.comment__text {
	clear: both;
	margin: var(--vspace-0_5) 0 0 0;
	padding: 0 175px 0 0;
}

.comment ul.children {
	margin: 0;
	padding: 0;
}

.comment ul.children li {
	padding-left: 5%;
	margin-top: calc(var(--vspace-1) + 2rem);
	border-left: 1px solid var(--color-border);
}

/* comments form
* ---------------------------- */
.comments-wrap .comment-respond {
	margin-top: var(--vspace-2);
}

.comment-respond form {
	padding-top: var(--vspace-1_75);
}

/* -------------------------------------------------------------------
* responsive:
* comments
* ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	.comments-wrap .column {
		padding: 0 calc(4.8rem + var(--gutter-md));
	}
}

@media screen and (max-width: 1100px) {
	.comments-wrap .column {
		padding: 0 calc(4rem + var(--gutter-md));
	}
}

@media screen and (max-width: 1020px) {
	.comments-wrap .column {
		padding: 0 calc(3.2rem + var(--gutter-md));
	}
}

@media screen and (max-width: 1000px) {
	.comment__avatar img {
		height: var(--vspace-1_75);
		width: var(--vspace-1_75);
	}

	.comment__meta {
		text-align: left;
		width: auto;
		position: static;
	}

	.comment__meta .comment__time,
	.comment__meta .comment__reply {
		display: inline-block;
	}

	.comment__meta .comment__time {
		margin-right: 12px;
	}

	.comment__text {
		padding: 0;
	}

	.comments-wrap .comment-respond {
		margin-top: var(--vspace-1_5);
	}
}

@media screen and (max-width: 800px) {
	.comments-wrap {
		padding: var(--vspace-2) 0 var(--vspace-1);
	}

	.comments-wrap .column {
		padding: 0 var(--gutter-md);
	}

	.comment__avatar img {
		margin-top: 0;
		height: var(--vspace-1_5);
		width: var(--vspace-1_5);
	}
}

@media screen and (max-width: 600px) {
	.comments-wrap h3 {
		text-align: center;
	}

	.comments-wrap .column {
		padding: 0 var(--gutter-mob);
	}

	.commentlist>.comment {
		padding-top: 0;
		padding-left: 0;
	}

	.comment__avatar {
		display: none;
	}

	.comment ul.children li {
		margin-top: calc(var(--vspace-1) + 0rem);
	}
}

@media screen and (max-width: 500px) {
	.comment ul.children li {
		border-left: none;
	}
}

@media screen and (max-width: 400px) {
	.comments-wrap .column {
		padding: 0;
	}

	.comment-respond form {
		padding-top: var(--vspace-1);
	}
}

/*section#noticias-home .column.large-12 {
padding-left: 0px;
padding-right: 0px;
}*/
section#colaboradores {
	background: #f5f5f5;
	padding-top: 4rem;
}

.s-content--single {
	padding-bottom: 4.2rem;
}

section#colaboradores img {
	width: 100%;
	margin-bottom: 0px;
}

section#colaboradores .large-3.tab-6.mob-12.column.site-links {
	padding-bottom: 7.5px;
}



input,
textarea,
select,
pre,
blockquote,
figure,
figcaption,
table,
p,
ul,
ol,
dl,
form,
img,
.video-container,
.ss-custom-select {
	margin-bottom: 0;
}

.entry__meta {
	margin-bottom: 1rem;
	margin-top: 1rem;
}

/*article.brick.custom-brick.entry.format-standard img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}*/

.entry__thumb {
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.entry__thumb:hover .thumb-link::before {
	opacity: 1;
	visibility: visible;
}

.entry__thumb .thumb-link::before {
	z-index: 1;
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}

.entry__thumb:hover .thumb-link::after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.entry__thumb .thumb-link::after {
	z-index: 1;
	display: block;
	content: "...";
	font-size: 3.2rem;
	height: 90px;
	width: 90px;
	letter-spacing: .2rem;
	line-height: 90px;
	margin-left: -45px;
	margin-top: -45px;
	text-align: center;
	color: white;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 50%;
	top: 50%;
}

section#bricks {
	border-bottom: 1px solid #dad7d778;
}

#bricks.with-top-sep::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -100px;
	width: 200px;
	height: 1px;
}

.row.masonry {
	max-width: 1140px;
}

.col-twelve.sin-padding {
	padding: 0px;
}

section#content-wrap.blog-single.introduccion {
	text-align: center;
	padding-bottom: 4.2rem;
	border-bottom: 1px solid #dad7d778;
	margin-top: 3rem;
}

section#bricks.colaboradores {
	padding-bottom: 130px;
}

p {
	text-align: left;
	/* hyphens: auto; */
	margin-bottom: 1rem;
	line-height: 1.5;
}

section#page-header.sin-margin-top {
	margin-bottom: 6.6rem;
}

section#page-header.margin-bottom {
	margin-bottom: 6.6rem;
}

section#page-header.slide-home {
    margin-top: 69px;
}
ul.flex-direction-nav {
	display: none;
}

#page-header .row.line-tras-encabezado {
	width: 100%;
	/* background: red; */
	max-width: 100%;
}

h1.slide-title.encabezado-principal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 4vw;
    line-height: 1.421;
    margin: 0rem 0rem 1rem;
    color: #ffffff;
    text-align: center;
}
span.color-granate {
	color: #c0043e;
}

h2.subtitulo {
	line-height: 1.25;
	font-family: "muli-regular", sans-serif;
	color: #646465;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin: 2rem 1rem 2rem;
	font-weight: 100;
	text-align: center;
	font-size: 1em;
	letter-spacing: 1px;
}

h2.titulo-articulo {
	text-align: left;
	margin: 0rem 0px 3rem;
	border-bottom: 1px solid #0000004a;
	font-size: 3rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #151515;
}

span.primera-letra {
	float: left;
	margin: 0;
	padding: 1.2rem .6rem 0 0;
	font-size: 10rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 6rem;
	text-indent: 0;
	background: transparent;
	color: #151515;
}

img.pull-left {
	border-radius: 50px 0px 50px 0px;
}

h2.extracto-titular {
	line-height: 1.1;
	text-align: left;
	margin-top: 2.1rem;
}

.extracto {
	display: flex;
	flex-direction: row;
	align-content: stretch;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	margin-top: 40px;
	line-height: 1;
}

.extracto-titular span {
	font-size: 3vw;
}

span.extracto-articulo-granate {
	font-family: 'roboto-light', sans-serif;
	color: #c0043e;
	text-transform: uppercase;
	font-weight: 600;
}

span.extracto-articulo-negro {
	font-family: 'roboto-light', sans-serif;
	text-transform: uppercase;
}

h2.porcentaje {
	margin: 0.9rem 2.4rem 3rem 0px;
}

.imagen-principal-post {
	position: relative;
	max-width: 400px;
	max-height: 557px;
	background: yellow;
}

.bottom-right {
	position: absolute;
	top: 507px;
	left: 0;
	color: black;
	font-size: .8em;
	/* width: 100%; */
	/* height: 100%; */
	text-align: justify;
	hyphens: auto;
	padding: .5em 1.5em 1em;
	background: #a99a71;
	border-radius: 0px 0px 50px 0px;
	line-height: 1;
}

i.fas.fa-square {
	color: #c0043e;
	font-size: 10pt;
}

h2.contenidos-home {
	margin: 2.1rem 0rem 6rem;
	font-size: 3rem;
	line-height: 1.35;
	letter-spacing: -.1rem;
	text-align: center;
}


.entry-meta span.cat-links {
	color: #010101;
	font-weight: 400;
	letter-spacing: 1px;
}

hr.icon {
	margin: 25px auto 30px;
	padding: 0;
	border: 0;
	border-top: solid 3px;
	text-align: center;
}

hr.icon:after {
	content: "\f0e7";
	display: inline-block;
	position: relative;
	top: -1.7rem;
	padding: 0 1rem;
	font-family: FontAwesome;
	font-size: 3rem;
	background-color: #fff;
}

a:hover,
a:focus {
	color: #000000;
	border-color: rgba(21, 21, 21, 0.2);
}

.ss-copyright a:hover,
a:focus {
	color: #d4d3d3;
	border-color: rgba(21, 21, 21, 0.2);
}

/*section#bricks a:hover,
a:focus {
border: none;
}
*/
a img:hover {
	opacity: .8;
}

.col-full.tab-full.right-floating.twitter {
	position: relative;
	display: flex;
	border-bottom: 1px dashed #0000004f;
	margin: 3rem 0px 3rem;
	flex-direction: row;
	justify-content: flex-end;
	padding-bottom: 2rem;
}

a.button.button-primary.full-width.share-button {
	text-transform: none;
	background: #f5f5dc00;
	color: #151515;
	padding: 0px;
	border-top: 1px solid #00000030;
	margin-top: 2rem;
	text-align: right;
}

.subtitulo {
	text-align: center;
	color: #3e3e3e;
}

.subtitulo a {
	color: #131212;
	letter-spacing: 2px;
	margin: 0px 5px 0px;
	font-size: 16px;
}

.subtitulo a:hover {
	color: #c0043e;
}

p.subtitulo-uno.place {
	font-size: 20px;
}

p.footer-department {
	border-bottom: 1px solid rgb(255 255 255 / 14%);
	padding-bottom: 1.2rem;
	margin-bottom: 1.5rem;
	color: whitesmoke;
	font-size: 1.7rem;
	line-height: 1.76;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

a.sin-borde:hover {
	border-color: rgb(21 21 21 / 0%);
}

a.disabled {
	text-decoration: none;
	pointer-events: none;
}

a.visited {
	color: #e0003d;
}

.leer-mas-contenedor {
	margin: 0rem 0px 0px;
	padding: 1rem 0px 0px;
}

a.leer-mas {
	color: black;
	font-size: .8em;
	border-bottom: 1px solid black;
}

a.leer-mas:hover {
	color: #be083f;
	border-bottom: 1px solid #be083f;
}

a.btn-floating.btn.btn-tw.twitter {
	font-size: 10px;
	margin: 0px;
}

a.btn-floating.btn.btn-tw.twitter-button {
	color: #151515;
	font-size: 10pt;
	background: #ffffff;
	border: 0px;
	margin: 0px;
	text-transform: none;
	letter-spacing: 0;
}

a.btn-floating.btn.btn-tw.twitter-button:hover {
	color: #c0043e;
}

i.fab.fa-2x.fa-twitter {
	color: black;
}

i.fab.fa-2x.fa-twitter:hover {
	color: #c0043e;
}

a.btn-floating.btn.btn-tw.volver-noticias {
	color: #151515;
	font-size: 10pt;
	background: #ffffff;
	border: 0px;
	margin: 0px;
	text-transform: none;
	letter-spacing: 0;
	padding: 0px;
}

a.btn-floating.btn.btn-tw.volver-noticias:hover {
	color: #c0043e;
}

i.fab.fa-2x.fa-twitter {
	font-size: 18pt;
	margin: 1rem;
}

i.fas.fa-chevron-left {
	margin: 1rem;
}

/*BLOG SINGLE*/
h3.entry-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.32;
	margin: 0px 0px 1.8rem;
}

h3.titulo-article {
	color: #c0043e;
	margin-bottom: .3em;
	margin-top: 1em;
	text-transform: uppercase;
	line-height: 1.3;
}

h3.entry-title a {
	color: #c0043e;
}

h3.entry-title a:hover {
	border-bottom: 1px solid #cac5c5;
}

.bricks-wrapper .entry__meta a,
.bricks-wrapper .entry__meta h3.entry-title {
	color: #c0043e;
}

section#noticias-home h3.entry-title a {
	color: #c0043e;
}

section#noticias-home .entry__text {
	padding: 20px 10px;
}

.content-media.single-post {
	margin-bottom: 1rem;
}

.post-thumb {
	margin: 2rem 0rem 0rem;
}

h1.page-title.blog-single {
	margin: 5rem 0rem 4rem;
	font-size: 3em;
	line-height: 1;
}

li.place {
	font-family: 'roboto-regular', sans-serif;
	color: #151515;
	line-height: 1.4;
}

.content-wrap .primary-content .responsive-image img {
	margin: 2rem 0rem 2rem;
}

p.question {
	margin: 0px;
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
}

li a.active {
	border-bottom: 2px solid #e2e2e2;
}

header.s-header li a.active {
	color: #ffffff6b;
}

.s-content__post-meta .cat a:hover,
a:focus {
	color: #928f8f;
	border-bottom: 1px solid #1515156b;
}

.col-full.tab-full.right-floating.twitter .s-content__post-meta .cat a:hover,
a:focus {
	color: #928f8f;
	border-bottom: 0px;
}

ul.s-content__post-meta.no-margin-bottom {
	margin-bottom: 0px;
}

h1.slide-title.encabezado-principal.page-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: left;
	font-size: 3em;
	line-height: 1.2;
	margin: 0rem 0rem 4rem;
}

a.next-post {
	text-align: right;
}

a.previous-post {
	text-align: left;
}

a.previous-post.disabled,
a.next-post.disabled {
	color: #c0043e;
	cursor: not-allowed;
	text-decoration: line-through !important;
}

nav ol {
	list-style: none;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: 0px;
}

.row.masonry.centrado {
	margin: auto;
}

.breadcrumbs a.disabled {
	border: 0px;
	color: #c0043e;
}

a.disabled.active {
	color: black;
	border-bottom: 1px solid black;
}

section#page-header a.disabled.active {
	color: #e2003e;
	border-bottom: 0px;
}

a.s-header__toggle-menu {
	border: 0px;
}

.breadcrumbs {
	color: #615d5d;
	font-size: .8em;
	text-align: center;
	padding: .3rem;
	margin-top: 3rem;
}

.breadcrumbs a {
	text-transform: none;
	color: #3c3c3c;
	border-bottom: 1px solid #b9b9b9;
}

.breadcrumbs a:hover {
	color: #928f8f;
	border-bottom: 0px;
}

span.breadcrumb-separator {
	margin: 0px 8px 0px;
}

span.cat-links a {
	text-transform: none;
	color: #3c3c3c;
	border-bottom: 1px solid #b9b9b9;
}

span.cat-links a:hover {
	color: #928f8f;
	border-bottom: 0px;
}

span.entrecomillado {
	color: black;
	font-size: 2rem;
	/* line-height: 0; */
}

h1.breadcrumbs {
	/* display: none; */
	opacity: 0;
}

.breadcrumbs nav ol li a {
	text-transform: uppercase;
}

/* TOOGLE SIDEBAR  */
sidebar-main {
	width: 100%;
	margin: 0 auto;
	border-right: 1px solid #00000021;
	padding-right: 20px;
}

/*SIDEBAR*/
div#sidebar {
	margin-bottom: 4rem;
}

div#sidebar h3 {
	margin: 0rem 0px 1rem;
	border-bottom: 3px solid black;
	padding-bottom: 10px;
}

ul.acnav__list li {
	margin-top: 5px;
}

div#sidebar a.disabled.active {
	color: #e2003e;
	border-bottom: 0px;
	padding-right: 10px;
	font-size: 13px;
}

div#sidebar a {
	border-bottom: 0px;
	padding-right: 10px;
	font-size: 13px;
}

ul.acnav__list.acnav__list li.has-children {
	margin: 0px;
	border-bottom: 1px solid #00000036;
}

ul.acnav__list.acnav__list li,
li.has-children {
	padding: 10px 0px 10px;
}

li .acnav__checkbox {
	position: absolute;
	display: none;
	visibility: hidden;
}

ul.cat-sidebar {
	list-style: none;
}

.accordion__single input {
	display: none;
}

label.accordion__single__question {
	font-size: 16px;
	line-height: 1.5;
}

ul.cat-sidebar.accordion__single__answer li {
	margin: 2rem 0px 0px;
	font-size: 13px;
	font-weight: 600;
}

ul.cat-sidebar.accordion__single__answer li a {
	color: #e0013e;
}

ul.cat-sidebar.accordion__single__answer li a:hover {
	color: #767776;
}

h2.navigation-category {
	display: none;
}

.accordion__single__hidden {
	display: none;
}

.accordion__single__hidden:checked~.accordion__single__answer {
	max-height: 400px;
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	margin-top: 14px;
}

.accordion__single__hidden:checked~.accordion__single__question:after {
	content: '-';
}

.accordion__single__answer {
	margin-top: 0;
	margin-left: 10px;
	max-height: 0;
	opacity: 0;
	-webkit-transform: translate(0, 50%);
	-ms-transform: translate(0, 50%);
	transform: translate(0, 50%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	position: relative;
}

.accordion {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
	line-height: 1.5;
	max-width: 80%;
}

.accordion__single {
	margin-bottom: 30px;
}

.accordion__single__question {
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	position: relative;
}

.accordion__single__question:hover,
.accordion__single__question:focus {
	text-decoration: underline;
}

.accordion__single__question:after {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	color: #000;
	content: '+';
	float: right;
	font-size: 20px;
	font-weight: normal;
	line-height: 22px;
}

.accordion__single__answer {
	margin-top: 5px;
}

li.author {
	font-size: 20px;
	line-height: 1.3;
	margin-top: 1rem;
}

span.name {
	font-size: 23px;
	color: black;
	font-weight: 700;
}

blockquote.no-com {
	border: none;
	margin: 0 auto;
	max-width: 62rem;
	position: relative;
}

p.image-footer {
	font-size: 14px;
	margin-bottom: 5rem;
	background: #f5f4f4;
	border-radius: 20px;
	padding: 2rem;
}

img.table-with-footer {
	margin-bottom: 5px;
}

i.far.fa-chart-bar {
	font-size: 24px;
	padding: 0rem .6rem 0rem 0rem;
}

p.subtitulo-uno {
	font-size: 30px;
	line-height: 1.4;
	margin-bottom: 3rem;
}

h1.slide-title.encabezado-principal.page-title.sin-margin-bottom {
	margin-bottom: 1rem;
}

.s-content__media.imagen-con-margin {
	margin: 1.5rem 0px 1.5rem;
}

.image-footer {
	font-size: inherit;
	margin-bottom: 5rem;
	background: #f5f4f457;
	padding: 2rem;
}

h2.titulo-article {
	color: #c0043e;
	margin-bottom: 1rem;
	margin-top: 1em;
	text-transform: uppercase;
	line-height: 1.3;
}

h3.titular {
	color: #c0043e;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 3rem;
	margin-top: 0px;
	text-transform: uppercase;
}

hr.divider {
	border: 3px solid #c0043e;
}

img.h-pull-left.sin-radio {
	border-radius: 0px;
}

.imagen-con-caption img.h-pull-left.sin-radio {
	margin-bottom: 0px;
}

/* -------------------------------------------------------------------
* ## floated image
* ------------------------------------------------------------------- */
img.h-pull-right {
	margin: var(--vspace-0_5) 0 var(--vspace-0_5) 2.8rem;
}

img.h-pull-left {
	border-radius: 20px 0px 0px 20px;
}

.imagen-con-caption {
    position: relative;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.caption {
	position: absolute;
	bottom: 0px;
	padding: 10px 20px 10px;
	background: #a99a71;
	line-height: 1.2;
	border-radius: 0px 0px 0px 20px;
}

@media screen and (max-width: 400px) {
	.imagen-con-caption {
		position: relative;
		height: auto;
		float: left;
		margin: 1rem 0px 1em;
	}

	.caption {
		position: absolute;
		bottom: 0px;
		padding: 10px 20px 10px;
		background: #a99a71;
		line-height: 1.2;
		border-radius: 0px 0px 0px 20px;
	}
}

/*CSS MULTILEVEL ACCORDION*/
.nav-wrap {
	width: 100%;
	margin: 1em auto 0;
}

section.nav-wrap ul li {
	text-align: left;
}

@media (min-width: 992px) {
	section.nav-wrap {
		border-right: 1px solid black;
		padding-right: 20px;
	}

	.nav-wrap {
		width: 100%;
	}
}

[hidden] {
	display: none;
	visibility: hidden;
}

.acnav {
	width: 100%;
}

.acnav__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.acnav__list--level1 {
	border: 1px solid #fcfcfc;
}

.has-children>.acnav__label::before {
	content: "\f067";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-weight: 400;
	text-rendering: auto;
	margin-right: 1em;
	transition: transform 0.3s;
	color: #656464;
}

.acnav__checkbox:checked+.acnav__label::before {
	transform: rotate(405deg);
}

.acnav__link,
.acnav__label {
	display: block;
	margin: 0;
	cursor: pointer;
	color: #000000;
	transition: color 0.25s ease-in, background-color 0.25s ease-in;
	font-size: 16px;
	line-height: 1.5;
}

.acnav__link:focus,
.acnav__link:hover,
.acnav__label:focus,
.acnav__label:hover {
	color: #e0013e;
}

.acnav__link--level2,
.acnav__label--level2 {
	padding-left: 1.9em;
}

.acnav__link--level3,
.acnav__label--level3 {
	padding-left: 5em;
}

.acnav__link--level3:focus,
.acnav__link--level3:hover,
.acnav__label--level3:focus,
.acnav__label--level3:hover {}

.acnav__link--level4,
.acnav__label--level4 {
	padding-left: 7em;
}

.acnav__link--level4:focus,
.acnav__link--level4:hover,
.acnav__label--level4:focus,
.acnav__label--level4:hover {
	background: #142d56;
}

.acnav__list--level2,
.acnav__list--level3,
.acnav__list--level4 {
	height: auto;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

.acnav__checkbox:checked~.acnav__list {
	max-height: 1000px;
}

hr.divider.sin-borde {
	border: 0px;
	margin-top: 9rem !important;
}

.ul-responsive {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 100%;
	min-width: 172px;
	margin-bottom: 1em;
	margin-top: 1em;
	background: #f3f3f3;
}



.ul-responsive ul li {
	display: flex;
	align-content: center;
	flex-direction: column;
	justify-content: center;

}

ul.tr-emulando {
	display: flex;
	border: 0px solid;
	width: auto;
	margin-left: 0px;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	border: 5px solid #c3c3c3;
	background: #f3f3f3;
	margin-bottom: 0px;
}

.tr-emulando li {
	list-style: none;
	position: relative;
	padding: 5px 10px;
	border: 1px solid #dbd9d9;
}

li.td-emulando.first,
li.td-emulando.two {
	width: 15%;
	text-align: center;
	border-right: 0px;
	line-height: 1;
}

li.td-emulando.three {
	width: 55%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	border-left: 0px;
	border-right: 0px;
}

li.td-emulando.four {
	width: 15%;
	display: flex;
	flex-direction: row;
	align-items: center;
}




li.td-emulando.two img {
	width: 100%;
	height: auto;

	margin: 0px;
	padding: 1em;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	float: left;
}

span.text-inside {
	margin: 1em;
	line-height: 1.2;

}

ul.tr-emulando.primera-fila {
	background: #000000;
	color: white;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	vertical-align: middle;
}

ul.tr-emulando.primera-fila li.td-emulando.first {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15%;
	border: 2px solid #ffffff;
}

ul.tr-emulando.primera-fila li.td-emulando.three {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15%;
	border: 2px solid #ffffff;
}

ul.tr-emulando.primera-fila li.td-emulando.two {

	width: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ffffff;
}

ul.tr-emulando li {
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

p.titular {
	color: #c0043e;

	line-height: 1.3;
	font-size: 1.3em;
	font-weight: 600;
}

.destacado-rojo {
	color: #c0043e;
}

p.salto-linea {
	margin: -9px 0px 1rem;
}

div#encabezado-background {
	background: url('../images/cnic-background.jpg');
	max-width: none;
	max-height: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

div#encabezado-background {
	background: url('../images/cnic-background.jpg');
	max-width: none;
	max-height: 600px;
	display: flex;
	align-items: center;

	min-height: 500px;
	justify-content: center;
	flex-direction: row;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.row {

	margin: auto !important;
}

span.red-text {
	color: #c0043e;
}

p.con-margin-top {
	margin-top: 1rem;
}

.bloque-fondo {
	padding: 2em;
	background: #f5f0e4;
	border-radius: 50px;
	margin-top: 8vh;
	margin-bottom: 1rem;
}

h2.titulo-article.sin-margin-top {
	margin-top: 0;
}
ul.no-style {
    list-style: none;
}
li.subtitulo-uno {
    font-size: 30px;
    line-height: 1.4;
    /* margin-bottom: 3rem; */
}
ul.no-style li.subtitulo-uno:last-child {
    margin-bottom: 3rem !important;
}
p.testimonial {
    text-transform: uppercase;
    font-weight: 700 !important;
}
.row.center-contain {
    /* align-items: center; */
    /* display: flex; */
    justify-content: center;
}
p.subtitulo-uno.place.no-margin-bottom {
    margin-bottom: 0;
}
p.entry-title a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.32;
    /* margin: 0px 0px 1.8rem; */
        color: var(--color-text);
}
h3.entry-title.no-margin-bottom {
    margin-bottom: 0;
}


.left-side {
  float: left;
  width: 25%;
  padding: 1%;
}

.right-side {
  float: right;
  width: 25%;
  padding: 1%;
}

.content {
  width: 75%;
  margin: 0 auto;
}



.content img {
  max-width: 100%;
}

  .awesome {
      
     
      
      width:100%;
      
      margin: 0 auto;
      text-align: center;
      
      color:#313131;
      font-size:45px;
      font-weight: bold;
     
      -webkit-animation:colorchange 20s infinite alternate ;
     
      
    }

    @-webkit-keyframes colorchange {
      0% {
        
        color: white;
      }
      
      10% {
        
        color: #c0043e;
      }
      
      20% {
        
        color: white;
      }
      
      30% {
        
        color: #c0043e;
      }
      
      40% {
        
        color: white;
      }
      
      50% {
        
        color: #c0043e;
      }
      
      60% {
        
        color: white;
      }
      
      70% {
        
        color: #c0043e;
      }
      80% {
     
        color: #c0043e;
      }
      
      90% {
     
        color: #c0043e;
      }
      
      100% {
        
        color: white;
      }
    }

figure.snip1104 {
    position: relative;
    overflow: hidden;
    margin: 0;
    /* min-width: 220px; */
    /* max-width: 310px; */
    /* max-height: 220px; */
    width: 100%;
    background: #00000000;
    color: #ffffff;
    text-align: center;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); */
    height: 100%;
}

figure.snip1104 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.snip1104 img {
  max-width: 100%;
  position: relative;
/*  opacity: 0.4;*/
}

figure.snip1104 figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.snip1104 h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.snip1104 h2 span {
  font-weight: 800;
}

figure.snip1104:before {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    /*background: #ffffff73;*/
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(110deg) translateY(-50%);
    transform: rotate(110deg) translateY(-50%);
    z-index: 9;
}
figure.snip1104 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 9;
}

figure.snip1104.blue {
  background: #123851;
}

figure.snip1104.blue h2 {
  background: #0a212f;
}

figure.snip1104.red {
  background: #581a14;
}

figure.snip1104.white h2 {
    background: #ffffff;
    z-index: 99;
}

figure.snip1104.yellow {
  background: #7f5006;
}

figure.snip1104.yellow h2 {
  background: #583804;
}

figure.snip1104:hover img,
figure.snip1104.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip1104:hover h2,
figure.snip1104.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.snip1104:hover:before,
figure.snip1104.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}


@media only screen and (min-device-width: 200px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
h1.slide-title.encabezado-principal {
   
    font-size: 9vw;
    
}


}







@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}


section#editorial {
    margin-top: 67px;
}
.row.con-padding .col-xs-12.col-sm-12.col-md-12.col-lg-4.col-xl-4, .row.con-padding .col-xs-12.col-sm-12.col-md-12.col-lg-8.col-xl-8, .row.con-padding .col-12 {
    padding: 0;
}

.row>* {
    /* flex-shrink: 0; */
   width: auto;
   
}
.no-padding-left {
    padding-left: 0;
}
.no-padding-right {
    padding-right: 0;
}



.row {
    --bs-gutter-x: 0;
    /* --bs-gutter-y: 0; */
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}