/* =================================================================== 
 *
 *  Howdy v1.0 Main Stylesheet
 *  08-13-2016
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography & general theme styles
 *  04. forms 
 *  05. buttons
 *  06. other components
 *  07. common and reusable styles
 *  08. header styles
 *  09. home
 *  10. about
 *  11. skills
 *  12. credentials
 *  13. portfolio
 *  14. stats
 *  15. contact
 *  16. footer
 *
 * =================================================================== */


/* ===================================================================
 *  01. webfonts and iconfonts - (_document-setup)
 *
 * ------------------------------------------------------------------- */
@import url("font-awesome/css/font-awesome.min.css");
@import url("windows10/windows10.css");

/* Source Sans Pro */
@font-face {
	font-family: 'Source Sans Pro', sans-serif;
}

/* libre baskerville */
@font-face {
	font-family: 'Playfair Display', serif;
}



/* ===================================================================
 *  02. base style overrides - (_document-setup)
 *
 * ------------------------------------------------------------------- */
html {
	font-size: 10px;
}
@media only screen and (max-width:1024px) {
	html {
		font-size: 9.375px;
	}
}
@media only screen and (max-width:768px) {
	html {
		font-size: 10px;
	}
}
@media only screen and (max-width:400px) {
	html {
		font-size: 9.375px;
	}
}

html,
body {
	height: 100%;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
    font-weight: 300;
	line-height: normal;
	color: #353535;
	margin: 0;
	padding: 0;
    -webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* ------------------------------------------------------------------- 
 * links - (_document-setup) 
 * ------------------------------------------------------------------- */
a,
a:visited {
	color: #bca361;
	-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;
    text-decoration: none;
	transition: all 0.3s ease-in-out;
}

a:active,
a:hover,
a:focus {
	color: #b11116;
    text-decoration: none;
}

/* ===================================================================
 *  03. typography & general theme styles - (_document-setup.scss) 
 *
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, h7, .h01, .h02, .h03, .h04, .h05, .h06, .h07 {
	color: #000;
	font-style: normal;
	text-rendering: optimizeLegibility;
}

h3, .h03, h4, .h04 {
}

h5, .h05, h6, .h06 {
}

h1, .h01 {
	font-size: 3.1rem;
	line-height: 1.35;
	letter-spacing: -.1rem;
}

@media only screen and (max-width:600px) {
	h1, .h01 {
		font-size: 2.6rem;
		letter-spacing: -.07rem;
	}
}
h2, .h02 {
	font-size: 2.4rem;
	line-height: 1.25;
}
h3, .h03 {
	font-size: 1.2em;
	line-height: 1.5;
}
h4, .h04 {
	font-family: "Playfair Display", serif;
    font-style: italic;
	font-size: 3.6rem;
	line-height: normal;
	color: #000;
}
h5, .h05 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.4rem;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .2rem;
}

h6, .h06 {
	font-size: 2.4rem;
    font-style: italic;
    font-weight: 400;
    color: #fff;
}


p img {
	margin: 0;
}

p.lead {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.2em;
	line-height: 1.8;
	color: #4f4f4f;
	margin-bottom: 3.6rem;
}

@media only screen and (max-width:768px) {
	p.lead {
		font-size: 1.8rem;
	}

}

em, i, strong, b {
	font-size: 1.6rem;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
}
em, i {
	font-family: "Playfair Display-italic", serif;
}
strong, b {
	font-family: "Playfair Display", serif;
}

small {
	font-size: 1.1rem;
	line-height: inherit;
}

blockquote {
	margin: 3rem 0;
	padding-left: 5rem;
	position: relative;
}

blockquote:before {
	content: "\201C";
	font-size: 10rem;
	line-height: 0px;
	margin: 0;
	color: rgba(0, 0, 0, 0.3);
	font-family: arial, sans-serif;
	position: absolute;
	top: 3.6rem;
	left: 0;
}

blockquote p {
	font-family: "Playfair Display-italic", georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 1.9rem;
	line-height: 1.895;
}

blockquote cite {
	font-size: 1.3rem;
	font-style: normal;
	line-height: 1.615;
}

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

blockquote cite a,
blockquote cite a:visited {
	color: #4f4f4f;
	border: none;
}

abbr {
	font-family: "Playfair Display", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .05rem;
	color: #4f4f4f;
}

var, kbd, samp, code, pre {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
	padding: 2.4rem 3rem 3rem;
	background: #F1F1F1;
}

code {
	font-size: 1.4rem;
	margin: 0 .2rem;
	padding: .3rem .6rem;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 3px;
}

pre > code {
	display: block;
	white-space: pre;
	line-height: 2;
	padding: 0;
	margin: 0;
}

pre.prettyprint > code {
	border: none;
}

del {
	text-decoration: line-through;
}

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

mark {
	background: #FFF49B;
	color: #000;
}

hr {
	border: solid #d2d2d2;
	border-width: 1px 0 0;
	clear: both;
	margin: 2.4rem 0 1.5rem;
	height: 0;
}

.nopadding {
	padding: 0px !important;
}

/* ------------------------------------------------------------------- 
 * Lists - (_document-setup.scss)  
 * ------------------------------------------------------------------- */


.slider {
        width: 80%;
        margin: 0 auto;
    padding-bottom: 60px;
    }


.sliderfabric {
        width: 80%;
        margin: 0 auto;
    
    }

    .slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
        color: black;
    }



ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
li {
	display: list-item;
}
ol, ul {
	margin-left: 1.7rem;
}
ul li {
	padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
	margin: .6rem 0 .6rem 1.7rem;
}

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: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4C2405;
	position: absolute;
	left: -17px;
	top: 11px;
	vertical-align: middle;
}

dt {
	margin: 0;
	color: #4C2405;
}

dd {
	margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * Spacing - (_document-setup)  
 * ------------------------------------------------------------------- */
button,
.button {
	margin-bottom: 1.2;
}

fieldset {
	margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------------- 
 * floated image - (_document-setup)  
 * ------------------------------------------------------------------- */
img.pull-right {
	margin: 1.5rem 0 0 3rem;
}

img.pull-left {
	margin: 1.5rem 3rem 0 0;
}

/* ------------------------------------------------------------------- 
 * block grids paddings
 * ------------------------------------------------------------------- */
.bgrid {
	padding: 0 20px;
}

@media only screen and (max-width:1024px) {
	.bgrid {
		padding: 0 18px;
	}
}

@media only screen and (max-width:768px) {
	.bgrid {
		padding: 0 15px;
	}
}

@media only screen and (max-width:600px) {
	.bgrid {
		padding: 0 10px;
	}
}

@media only screen and (max-width:400px) {
	.bgrid {
		padding: 0;
	}
}

/* ------------------------------------------------------------------- 
 * tables - (_document-setup.scss)  
 * ------------------------------------------------------------------- */
table {
	border-width: 0;
	width: 100%;
	max-width: 100%;
	font-family: "Playfair Display", sans-serif;
}

th, td {
	padding: 1.5rem 3rem;
	text-align: left;
	border-bottom: 1px solid #E8E8E8;
}
th {
	color: #151515;
	font-family: "Source Sans Pro", sans-serif;
}
td {
	line-height: 1.5;
}
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;
}

/* ------------------------------------------------------------------- 
 * pace.js styles - minimal  - (_document-setup.scss)
 * ------------------------------------------------------------------- */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #FFFFFF;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 100%;
	width: 100%;
	height: 6px;
}



/* ===================================================================
 *  04. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- */
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 {
	display: block;
	height: 6rem;
	padding: 1.5rem 0;
	border: 0;
	outline: none;
	vertical-align: middle;
	color: #fff;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	line-height: 3rem;
	max-width: 100%;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	-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-custom-select {
	position: relative;
	padding: 0;
}

.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	margin: 0;
	line-height: 3rem;
	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 {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 1.5rem;
	margin-top: -10px;
	bottom: auto;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 18px;
	text-align: center;
	pointer-events: none;
	color: #252525;
}

/* IE9 and below */
.oldie .ss-custom-select::after {
	display: none;
}

textarea {
	min-height: 25rem;
}

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: #1c0d02;
	border-bottom: 1px solid #4C2405;
}

label,
legend {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	margin-bottom: .6rem;
	color: #020202;
	display: block;
}

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

label > .label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: "Source Sans Pro", sans-serif;
	line-height: inherit;
}

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

/* -----------------------------------------------------------
 * Style Placeholder Text  
 * ----------------------------------------------------------- */
::-webkit-input-placeholder {
	color: #bca361;
	font-family: "Source Sans Pro", sans-serif;
}

:-moz-placeholder {
	color: #828282;  /* Firefox 18- */
}

::-moz-placeholder {
	color: #828282;  /* Firefox 19+ */
}

:-ms-input-placeholder {
	color: #828282;
}

.placeholder {
	color: #828282 !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 {
	border: none;
	-webkit-text-fill-color: #7c3b08;
	transition: background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 *  05.  buttons - (_button-essentials.scss)
 *
 * ------------------------------------------------------------------- */
.button,
a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
    font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .3rem;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
    text-decoration: none !important;
	margin: 0 .3rem 1.2rem 0;
    background-color: rgba(255, 255, 255, 0.6);
	color: #222222;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	border: 1px solid;
	-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;
}



.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	background: transparent;
	color: #b11116;
	outline: 0;
    text-decoration: none;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 1);
}

.button.button-primary,
a.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    background-color: rgba(0, 0, 0, 0.6);
	color: #FFFFFF;
}

.button.button-primary:hover,
a.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background: #030303;
}



.button.button-secundary,
a.button.button-secundary,
button.button-secundary,
input[type="submit"].button-secundary,
input[type="reset"].button-secundary,
input[type="button"].button-secundary {
	font-size: 1.2rem;
	padding: 0 1.6rem;
	height: 3.6rem;
    line-height: 3.6rem;
    font-weight: 400;
	background: transparent;
	color: #222222;
	outline: 0;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.6);
}

.button.button-secundary:hover,
a.button.button-secundary:hover,
button.button-secundary:hover,
input[type="submit"].button-secundary:hover,
input[type="reset"].button-secundary:hover,
input[type="button"].button-secundary:hover,
.button.button-secundary:focus,
button.button-secundary:focus,
input[type="submit"].button-secundary:focus,
input[type="reset"].button-secundary:focus,
input[type="button"].button-secundary:focus {
	background: transparent;
	color: #b11116;
	outline: 0;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1);
}



button.full-width,
.button.full-width {
	width: 100%;
	margin-right: 0;
}


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

    .button,
a.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"]  {
	letter-spacing: .03rem;
}
    
    .button.button-secundary, a.button.button-secundary{
    font-size: 1rem;
}
        
        
        
    button.full-width,
.button.full-width {
	letter-spacing: .03rem;
        padding:.06rem;
}

    }
        



button.medium,
.button.medium {
	height: 5.7rem !important;
	line-height: 5.7rem !important;
	padding: 0 1.8rem !important;
}

button.large,
.button.large {
	height: 6rem !important;
	line-height: 6rem !important;
	padding: 0rem 3rem !important;
}

button.stroke,
.button.stroke {
	background: transparent !important;
	border: 3px solid #313131;
	line-height: 4.8rem;
}

button.stroke.medium,
.button.stroke.medium {
	line-height: 5.1rem !important;
}

button.stroke.large,
.button.stroke.large {
	line-height: 5.4rem !important;
}

button.stroke:hover,
.button.stroke:hover {
	border: 3px solid #4C2405;
	color: #4C2405;
}

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


/* ===================================================================
 *  06. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- */ 

/* -------------------------------------------------------------------
 * alert box - (_alert-box.scss)
 * ------------------------------------------------------------------- */
.alert-box {
	padding: 2.1rem 4rem 2.1rem 3rem;
	position: relative;
	margin-bottom: 3rem;
	border-radius: 3px;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.5rem;
}

.alert-box .close {
	position: absolute;
	right: 1.8rem;
	top: 1.8rem;
	cursor: pointer;
}

.ss-error {
	background-color: #ffd1d2;
	color: #e65153;
}

.ss-success {
	background-color: #c8e675;
	color: #758c36;
}

.ss-info {
	background-color: #d7ecfb;
	color: #4a95cc;
}

.ss-notice {
	background-color: #fff099;
	color: #bba31b;
}

/* ------------------------------------------------------------------- 
 * additional typo styles - (_additional-typo.scss)
 * ------------------------------------------------------------------- */

/* drop cap 
 * ----------------------------------------------- */
.drop-cap:first-letter {
	float: left;
	margin: 0;
	padding: 1.5rem .6rem 0 0;
	font-size: 8.4rem;
	font-family: "Source Sans Pro", sans-serif;
	line-height: 6rem;
	text-indent: 0;
	background: transparent;
	color: #151515;
}

/* 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:
 *
 * <aside class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 *	</aside>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
	position: relative;
	padding: 2.1rem 3rem 2.1rem 0px;
}

.pull-quote:before,
.pull-quote:after {
	height: 1em;
	position: absolute;
	font-size: 10rem;
	font-family: Arial, Sans-Serif;
	color: rgba(0, 0, 0, 0.3);
}

.pull-quote:before {
	content: "\201C";
	top: 33px;
	left: 0;
}

.pull-quote:after {
	content: '\201D';
	bottom: -33px;
	right: 0;
}

.pull-quote blockquote {
	margin: 0;
}

.pull-quote blockquote:before {
	content: none;
}

/** 
 * 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: 3rem 0;
}

.stats-tabs li {
	display: inline-block;
	margin: 0 1.5rem 3rem 0;
	padding: 0 1.5rem 0 0;
	border-right: 1px solid #ccc;
}

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

.stats-tabs li a {
	display: inline-block;
	font-size: 2.5rem;
	font-family: "Source Sans Pro", sans-serif;
	border: none;
	color: #252525;
}

.stats-tabs li a:hover {
	color: #4C2405;
}

.stats-tabs li a em {
	display: block;
	margin: .6rem 0 0 0;
	font-size: 1.4rem;
	font-family: "Source Sans Pro", sans-serif;
	color: #4f4f4f;
}

/**
 * skillbars - (_skillbars.scss)
 * -------------------------------------------------------------------
 */
.skill-bars {
	list-style: none;
	margin: 6rem 0 3rem;
}

.skill-bars li {
	height: .6rem;
	background: #a1a1a1;
	width: 100%;
	margin-bottom: 6rem;
	padding: 0;
	position: relative;
}

.skill-bars li strong {
	position: absolute;
	left: 0;
	top: -3rem;
	font-family: "Source Sans Pro", sans-serif;
	color: #313131;
	text-transform: uppercase;
	letter-spacing: .2rem;
	font-size: 1.5rem;
	line-height: 2.4rem;
}

.skill-bars li .progress {
	background: #313131;
	position: relative;
	height: 100%;
}

.skill-bars li .progress span {
	position: absolute;
	right: 0;
	top: -3.6rem;
	display: block;
	font-family: "Source Sans Pro", sans-serif;
	color: white;
	font-size: 1.1rem;
	line-height: 1;
	background: #313131;
	padding: .6rem .6rem;
	border-radius: 3px;
}

.skill-bars li .progress span::after {
	position: absolute;
	left: 50%;
	bottom: -5px;
	margin-left: -5px;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 5px solid #313131;
	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%;
}

/* ===================================================================
 *  07. common and reusable styles 
 *
 * ------------------------------------------------------------------- */
.section-intro {
	text-align: center;
	position: relative;
}

.section-intro h1 {
	font-family: "Playfair Display", serif;
	font-size: 4.8rem;
	line-height: 1.375;
	color: #151515;
}

.section-intro h3 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
    font-weight: 400;
	color: #bca361;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
	margin-bottom: 1.2rem;
}

.section-intro h4 {
	
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 3.6rem;
    line-height: normal;
    color: #000;
    font-weight: 400;
}


.section-intro h5 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 300;
    text-transform: none;
    text-align: left;
    margin-top: 2.4rem;
    margin-bottom: 3.6rem;
    line-height: normal;
    letter-spacing: 0;
    font-style: normal;
    text-rendering: optimizeLegibility;


}


.section-intro h6 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
    font-weight: 400;
	color: #bca361;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
	margin-bottom: 1.2rem;
    font-style: normal;
    text-align: center;
}


.section-intro h7 {
	
    font-family: "Playfair Display", serif;
    font-style: normal;
    font-size: 1.9rem;
    line-height: normal;
    color: #000;
    font-weight: 400;
}

.section-intro.with-bottom-sep {
	position: relative;
}

.section-intro.with-bottom-sep::after {
	display: inline-block;
	height: 0px;
	width: 240px;
	background-color: #bca361;
	text-align: center;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * section-intro
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	.section-intro h1 {
		font-size: 4.2rem;
	}

	.section-intro h3 {
		font-size: 1.8rem;
	}

}

@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 3.6rem;
	}

	.section-intro h3 {
		font-size: 1.7rem;
	}

}

@media only screen and (max-width:400px) {
	.section-intro h1 {
		font-size: 3.3rem;
	}

	.section-intro h3 {
		font-size: 1.6rem;
	}

}

.wide {
	max-width: 1300px;
}

.narrow {
	max-width: 800px;
}

.js .animate-this,
.js .animate-intro {
}

.oldie .animate-this,
.oldie .animate-intro
.no-cssanimations .animate-this,
.no-cssanimations .animate-intro {
	opacity: 1;
}


/* ===================================================================
 *  08. header styles - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
header {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 700;
}

header .row {
	height: auto;
	max-width: 1300px;
	position: relative;
}

/* ------------------------------------------------------------------- 
 * header logo - (_layout.css) 
 * ------------------------------------------------------------------- */
header .header-logo {
	position: absolute;
	left: 26px;
	top: 10px;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

header .header-logo a {
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: none;
	width: 300px;
	height: 68px;
	background: url("https://www.colunex.com/en/images/logo-colunex-gold.png") no-repeat center;
	background-size: 300px 68px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/* ------------------------------------------------------------------- 
 * menu fixo - (_layout.css) 
 * ------------------------------------------------------------------- */
#logo_fixo {
	display: block;
	position: fixed;
	left: 26px;
	top: 0px;
	line-height: 38px;
    z-index: 2;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
    margin-right: 50px;
    background-color: rgba(255, 255, 255, 0);
	letter-spacing: .2rem;
	-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;
}



#menu_fixo_logo {
	display: block;
	position: fixed;
	left: 12px;
	top: -2px;
	line-height: 42px;
    z-index: 2;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
    margin-right: 50px;
    background-color: rgba(255, 255, 255, 0);
	letter-spacing: .2rem;
	-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;
}

#menu_fixo {
	display: block;
	position: fixed;
	right: 42px;
	top: 0px;
	line-height: 42px;
    z-index: 2;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
    margin-right: 50px;
    background-color: rgba(255, 255, 255, 0);
	letter-spacing: .2rem;
	-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;
}



#menu_fixo a {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 5.4rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin: 1rem;
    background-color: transparent;
    color: #ffffff;
    color: rgb(255, 255, 255);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border-bottom: 0px solid;
    -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;
    text-shadow: 1px 1px 2px #7d7d7d;
}


#menu_fixo a:hover,
#menu_fixo a:hover,
#menu_fixo a:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
#menu_fixo a:focus,
#menu_fixo a:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    background-color: transparent;
	outline: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}


#menu_fixo a:active {
    background-color: transparent;
}


/*#menu_fixo .destaque {
    font-weight:700;
    border-bottom: 7px solid;
}*/




/* ------------------------------------------------------------------- 
 * menu trigger - (_layout.css) 
 * ------------------------------------------------------------------- */
#header-menu-trigger {
	display: block;
	position: fixed;
	top: 0px;
    width: 100%;
	height: 42px;
	line-height: 42px;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	color: rgba(255, 255, 255, 0.6);
	-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;
    background-position: 12px 50%; 
}


#header-menu-trigger.opaque .header-menu-text {
	background-color: #bca361;
    opacity: 1;
}

#header-menu-trigger:hover,
#header-menu-trigger:focus {
	color: #FFFFFF;
}

#header-menu-trigger .header-menu-text {
	display: block;
	position: absolute;
	top: 0;
	left: -75px;
	width: 75px;
	text-align: center;
	background-color: transparent;
	-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;
}

#header-menu-trigger .header-menu-icon {
	display: block;
	height: 2px;
	width: 24px;
	background-color: rgb(255, 255, 255);
	position: absolute;
	top: 50%;
	right: 9px;
    opacity: 1;
	margin-top: -2px;
}


#header-menu-trigger .header-menu-icon:hover {
    opacity: 1;
}

#header-menu-trigger .header-menu-icon::before,
#header-menu-trigger .header-menu-icon::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: inherit;
	position: absolute;
	left: 0;
}

#header-menu-trigger .header-menu-icon::before {
	top: -9px;
}

#header-menu-trigger .header-menu-icon::after {
	bottom: -9px;
}



#header-menu-trigger .header-menu-but {
	position: absolute;
    color: #000;
    text-align: right;
    right: 40px;
}

#header-menu-trigger .header-menu-but a {
    color: #000;
    float: left;
    padding: 0px 10px;
}

#header-menu-trigger .header-menu-but::before,
#header-menu-trigger .header-menu-but::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: inherit;
	position: absolute;
	left: 0;
}

#header-menu-trigger .header-menu-but::before {
	top: -9px;
}

#header-menu-trigger .header-menu-but::after {
	bottom: -9px;
}



/* ------------------------------------------------------------------- 
 * off-canvas menu - (_layout.scss) 
 * ------------------------------------------------------------------- */
#menu-nav-wrap {
	background: #111111;
	color: rgba(255, 255, 255, 0.25);
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.5rem;
	line-height: 1.6;
	padding: 3.6rem 0.5rem 2.8rem 2.8rem;
	height: 100%;
	width: 240px;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 800;
	overflow-y: auto;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#menu-nav-wrap a,
#menu-nav-wrap a:visited {
	color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

#menu-nav-wrap a:hover,
#menu-nav-wrap a:focus,
#menu-nav-wrap a:active {
	color: white;
}

#menu-nav-wrap h3 {
	color: white;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

#menu-nav-wrap .nav-list {
	margin: 3.6rem 0 1.5rem 0;
	padding: 0 0 1.8rem 0;
	list-style: none;
	line-height: 3.6rem;
}

#menu-nav-wrap .nav-list li {
	padding-left: 0;
	line-height: 4rem;
    display: block;
    font-weight: 400;
    color: #bca361;
    font-size: 1em;
}

#menu-nav-wrap .nav-list li:first-child {
	border-top: 1px dotted rgba(255, 255, 255, 0.03);
}

#menu-nav-wrap .nav-list li a {
	color: rgba(255, 255, 255, 0.4);
	display: block;
}

#menu-nav-wrap .nav-list li a:hover,
#menu-nav-wrap .nav-list li a:focus {
	color: white;
}

#menu-nav-wrap .header-social-list {
	list-style: none;
	display: inline-block;
	margin: 0;
	font-size: 2.1rem;
}

#menu-nav-wrap .header-social-list li {
	margin-right: 12px;
	padding-left: 0;
	display: inline-block;
}

#menu-nav-wrap .header-social-list li a {
	color: rgba(255, 255, 255, 0.15);
}

#menu-nav-wrap .header-social-list li a:hover,
#menu-nav-wrap .header-social-list li a:focus {
	color: white;
}

#menu-nav-wrap .header-social-list li:last-child {
	margin: 0;
}

#menu-nav-wrap .close-button {
	display: block;
	height: 30px;
	width: 30px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 36px;
	right: 30px;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

#menu-nav-wrap .close-button span::before,
#menu-nav-wrap .close-button span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 9px;
	margin-top: -1px;
}

#menu-nav-wrap .close-button span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#menu-nav-wrap .close-button span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* menu is open */
.menu-is-open #menu-nav-wrap {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}



    
#header-menu-trigger.logo {
	background-color: #000;
    opacity: 0.6;
    width: 100%;
    top: 0;
    
    
}






/* ------------------------------------------------------------------- 
 * responsive:
 * header section 
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
	header .header-logo {
		top: 27px;
	}

	header .header-logo a {
		width: 200px;
		height: 94px;
		background-size: 200px 94px !important;
	}
    

}

@media only screen and (max-width:1000px) {
	header .header-logo {
		top: 27px;
        visibility: hidden;
	}
    #menu_fixo {
        visibility: hidden;
	}
    

	header .header-logo a {
		width: 200px;
		height: 94px;
		background-size: 200px 94px;
	}
    

}


@media only screen and (min-width:1000px) {
    #logo_fixo {
        visibility: hidden;
	}
    
    

#header-menu-trigger.opaque {
	background-color: #000;
    opacity: 0.6;
    width: 100%;
    top: 0;
    background-image: url(https://www.colunex.com/en/images/logo_menu.png);
    background-repeat: no-repeat;
    background-position: 12px 50%; 
    
    
}
    
    
   
    

    
}

@media only screen and (max-width:1000px) {
    #logo_fixo {
        visibility: inherit;
	}
    
    

#header-menu-trigger.opaque {
	background-color: #000;
    opacity: 0.6;
    width: 100%;
	background-image: none;
    background-repeat: no-repeat;
    background-position: 12px 50%; 
    
    
}
    
    
    
    
    

    
}


@media only screen and (max-width:400px) {
	#header-menu-trigger .header-menu-text {
		display: none;
	}

}

/* ===================================================================
 *  09. home - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#home {
	background: #151515;
	width: 100%;
	height: 75%;
	background-image: url(https://www.colunex.com/en/images/intro2017-bg_06_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}

#home_company {
	background: #151515;
	width: 100%;
	height: 50%;
	background-image: url(https://www.colunex.com/en/images/intro_company-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}

#home_hotel {
	background: #151515;
	width: 100%;
	height: 50%;
	background-image: url(https://www.colunex.com/en/images/intro_hotel-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}



#home_projects {
	background: #151515;
	width: 100%;
	height: 50%;
	background-image: url(https://www.colunex.com/en/images/intro_projects-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}

#pressarea {
	background: #151515;
	width: 100%;
	background-image: url(https://www.colunex.com/en/images/press_area-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 260px;
	position: relative;
}


@media only screen and (min-width:1370px) {
	
    #home {
	background-image: url(https://www.colunex.com/en/images/intro2017-bg_06.jpg);
}

#home_company {
	background-image: url(https://www.colunex.com/en/images/intro_company-bg.jpg);
}

#home_hotel {
	background-image: url(https://www.colunex.com/en/images/intro_hotel-bg.jpg);
}
    
#home_projects {
	background-image: url(https://www.colunex.com/en/images/intro_projects-bg.jpg);
}

#pressarea {
	background-image: url(https://www.colunex.com/en/images/press_area-bg.jpg);
}

}



@media only screen and (max-width:650px) {
	
    #home {
	background-image: url(https://www.colunex.com/en/images/intro2017-bg_06_small.jpg);
}

#home_company {
	background-image: url(https://www.colunex.com/en/images/intro_company-bg_small.jpg);
}

#home_hotel {
	background-image: url(https://www.colunex.com/en/images/intro_hotel-bg_small.jpg);
}
    
#home_projects {
	background-image: url(https://www.colunex.com/en/images/intro_projects-bg_small.jpg);
}

#pressarea {
	background-image: url(https://www.colunex.com/en/images/press_area-bg_small.jpg);
}


}



#home .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .2;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#home .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .6;
	background-color: #000000;
}

.home-content-table {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
}

.home-content-tablecell {
	display: table-cell;
	vertical-align: bottom;
	z-index: 500;
}

.home-content-tablecell .row {
	position: relative;
	padding-top: 4.2rem;
	padding-bottom: 60px;
	padding-left: 60px;
}

.home-content-tablecell h3 {
	font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
	color: #bca361;
	text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 0.5rem;
	margin: 0 0 0 .3rem;
}

.home-content-tablecell h1 {
	font-family: "Playfair Display", serif;
	font-size: 6rem;
    font-weight: 400;
	color: #FFFFFF;
}

.home-content-tablecell .home-section-links {
	display: inline-block;
	list-style: none;
	margin: 2.4rem 0 0 0;
}

.home-content-tablecell .home-section-links li {
	display: inline-block;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
    letter-spacing: 0.5rem;
	color: #bca361;
	margin-right: 6rem;
	margin-bottom: .6rem;
}

.home-content-tablecell .home-section-links li:last-child {
	margin-right: 0;
}

.home-content-tablecell .home-section-links a {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	text-transform: none;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.6);
	margin-left: .3rem;
    text-decoration: none;
}

.home-content-tablecell .home-section-links a:hover,
.home-content-tablecell .home-section-links a:focus {
	color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

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

.home-content-tablecell h1 {
	font-size: 4rem;
}
    }


.bricks-wrapper .item-wrap .details-link i {
	font-size: 2rem;
	line-height: 4.6rem;
}

.bricks-wrapper .item-wrap .details-link:hover,
.bricks-wrapper .item-wrap .details-link:focus {
    
    }
    
.scroll-icon {
    text-decoration: none;
	position: absolute;
	width: 60px;
	height: 48px;
	font-size: 3.3rem;
	bottom: 30px;
	right: 20px;
	color: #FFFFFF !important;
	-webkit-animation: vertical 3s ease infinite;
	animation: vertical 3s ease infinite;
}
    

/* vertical animation */
@-webkit-keyframes vertical {
	0%,
	60%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}

	20% {
		-webkit-transform: translateY(-5px);
	}

	40% {
		-webkit-transform: translateY(20px);
	}

}

@keyframes vertical {
	0%,
	60%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}

	20% {
		-webkit-transform: translateY(-5px);
	}

	40% {
		-webkit-transform: translateY(20px);
	}

}

/* ------------------------------------------------------------------- 
 * responsive:
 * home section 
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
	.home-content-tablecell h3 {
		font-size: 2.1rem;
	}

	.home-content-tablecell h1 {
		font-size: 5rem;
	}

}

@media only screen and (max-width:1024px) {
	.home-content-tablecell h3 {
		font-size: 2rem;
	}

	.home-content-tablecell h1 {
		font-size: 4.8rem;
	}

}

@media only screen and (max-width:768px) {
	.home-content-tablecell .row {
		padding-bottom: 11.4rem;
	}

	.home-content-tablecell .home-bottom-text {
		padding-right: 15%;
	}

	.home-content-tablecell h3 {
		font-size: 1.8rem;
	}

	.home-content-tablecell h1 {
		font-size: 4rem;
	}

	.home-content-tablecell h1 br {
		display: none;
	}

	.home-content-tablecell .home-section-links {
		margin: 4.2rem 0 0 0;
	}

	.home-content-tablecell .home-section-links li {
		font-size: 1.3rem;
	}

	.home-content-tablecell .home-section-links a {
		font-size: 1.6rem;
	}

	.scroll-icon {
		right: 15px;
	}

}

@media only screen and (max-width:600px) {
	#home {
		min-height: 702px;
	}

	.home-content-tablecell {
		vertical-align: middle;
	}

	.home-content-tablecell .row {
		padding-top: 9rem;
		padding-bottom: 3rem;
	}

	.home-content-tablecell .home-bottom-text {
		padding-right: 10%;
	}

	.home-content-tablecell h3 {
		font-size: 1.7rem;
	}

	.home-content-tablecell h1 {
		font-size: 3.8rem;
	}

	.scroll-icon {
		right: 10px;
	}

}

@media only screen and (max-width:500px) {
	.home-content-tablecell .home-bottom-text {
		padding-right: 5%;
	}

	.home-content-tablecell h3 {
		font-size: 1.5rem;
	}

	.home-content-tablecell h1 {
		font-size: 3.4rem;
	}

}

@media only screen and (max-width:400px) {
	#home {
		min-height: 654px;
	}

	.home-content-tablecell .home-bottom-text {
		padding-right: 0;
	}

	.home-content-tablecell h3 {
		font-size: 1.4rem;
	}

	.home-content-tablecell h1 {
		font-size: 3.2rem;
	}

	.home-content-tablecell .home-section-links {
		margin: 1.5rem 0 0 0;
	}

} 
    

    
#about {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #FFFFFF;
	min-height: 700px;
}

#catalogue {
	position: relative;
	padding: 6% 12%;
	background-color: #FFFFFF;
}

#revista {
	position: relative;
	padding: 6% 12%;
	background-color: #FFFFFF;
}

#news {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #EBEBEB;
	min-height: 700px;
}


#beds {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #EBEBEB;
	min-height: 700px;
}

#beds h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 




.beds-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 2600px;
	background-image: url(https://www.colunex.com/en/images/beds-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}



@media only screen and (min-width:1370px) {
	
    .beds-bg {
	background-image: url(https://www.colunex.com/en/images/beds-bg.jpg);
}

}



@media only screen and (max-width:650px) {
	
    .beds-bg {
	background-image: url(https://www.colunex.com/en/images/beds-bg_small.jpg);
}



}

#share {
    margin-left: 10%;
	width: 75%;
    margin-bottom: 42px;
}


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




#share {
    margin-top: 14px;
	width: 75%;
}
    }
      


#share h4 {
    margin-bottom: 7px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0rem;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
    text-transform: none;
    line-height: normal;
    font-style: normal;
} 

#products {
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
    margin-top: 112px;
    min-height: inherit;
}


#products #fh5co-hero {
	min-height: 800px;
    margin-left: 0%;
}

#products #fh5co-hero .total {
	float: left;
    margin: 0 auto;
    min-height: 800px;
    margin-left: 0%;
    
}

#products #fh5co-hero .flexslider .slides li {
    min-height: 800px;
    
}

#products #fh5co-hero .flexslider .slides_produto li {
    min-height: 800px;
    
}

#products h1 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 3.6rem;
    line-height: normal;
    color: #000;
} 

#products h2 {
    
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
    text-transform: uppercase;
} 

#products h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0rem;
    font-weight: 400;
    line-height: normal;
} 



#products h3 a,
#products h3 a:visited{
    font-weight: 600; 
    color: #fff;
    letter-spacing: 0.1rem;
    text-decoration: none;
	-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;
}


#products h3 a:active,
#products h3 a:hover,
#products h3 a:focus {
    font-weight: 700; 
    color: #fff;
    text-decoration: none;
}



#products h4 {
    margin: 0 auto;
    float: left;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0rem;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
    text-transform: none;
    line-height: normal;
    font-style: normal;
} 

#products h5 {
    margin: 0 auto;
    float: left;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0.05rem;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
} 

#products h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
} 


#products h7 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 3.6rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
} 



#products .desc {
    background-image:none; 
    background-color:#ffffffe0;  
    text-align:center;
    padding: 2em;
    float: right;
    right: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
} 

#products .container {
    position: fixed;
    z-index:1; 
    text-align:center;
    width: 40%;
    top: 20%;
    right: 28px;
    left: 65%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 8%;
} 

#products .row {
    text-align:left; 
    width: 40%;
    margin-left: 10%;
    padding-top: 28px;
    padding-bottom: 28px;
} 





#products #contact_product .row {
    text-align:left; 
    width: 100%;
    margin-left: 0%;
    padding-top: 28px;
    padding-bottom: 28px;
} 









#products #info_product .row {
    text-align:left; 
    width: 80%;
    margin-left: 10%;
    padding-top: 28px;
    padding-bottom: 28px;
} 





#products #newsletter_product .row {
    text-align:left; 
    width: 80%;
    margin-left: 10%;
    padding-top: 28px;
    padding-bottom: 28px;
} 







#products_b {
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
    margin-top: 112px;
    min-height: inherit;
}


#products_b #fh5co-hero {
	min-height: 800px;
    margin-left: 0%;
}

#products_b #fh5co-hero .total {
	float: left;
    margin: 0 auto;
    min-height: 800px;
    margin-left: 0%;
    
}

#products_b #fh5co-hero .flexslider .slides li {
    min-height: 800px;
    
}
#products_b #fh5co-hero .flexslider .slides_produto li {
    min-height: 800px;
    
}

#products_b h1 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 3.6rem;
    line-height: normal;
    color: #000;
} 

#products_b h2 {
    
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
    text-transform: uppercase;
} 

#products_b h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0rem;
    font-weight: 400;
    line-height: normal;
} 


#products_b h4 {
    margin: 0 auto;
    float: left;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0rem;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
    text-transform: none;
    line-height: normal;
    font-style: normal;
} 

#products_b h5 {
    margin: 0 auto;
    float: left;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    letter-spacing: 0.05rem;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
} 

#products_b h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
} 

#products_b .desc {
    background-image:none; 
    background-color:#fff;  
  filter: alpha(opacity=90);
  /* IE */
  -moz-opacity: 0.9;
  /* Mozilla */
  opacity: 0.9;
  /* CSS3 */
    text-align:center;
    padding: 4em;
    float: right;
    right: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
} 

#products_b .container {
    position: absolute;
    z-index:1; 
    text-align:center;
    width: 100%;
    top: 20%;
    right: 28px;
    left: 0;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 8%;
} 

#products_b .row {
    text-align:left; 
    width: 80%;
    padding-top: 28px;
    padding-bottom: 28px;
} 





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


#products {
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
    margin-top: 485px;
    min-height: inherit;
}

    
    
    
#products #fh5co-hero {
	min-height: 290px;
}

    
#products #fh5co-hero .flexslider .slides li {
	max-height: 300px;
	min-height: 290px;
}
    
#products #fh5co-hero .flexslider .slides_produto li {
	max-height: 300px;
	min-height: 290px;
}

#products .desc {
    background-image:none; 
    background-color:#fff;  
    text-align:center;
    padding: 1em;
    width: 100%;
    float: left;
    right: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
} 
    
#products .container {
    position: absolute;
    z-index:1; 
    text-align:center; 
    top: 0%;
    right: 0px;
    width: 100%;
    float: left;
    left: 0;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
} 

#products .row {
    width: 80%;
    padding-top: 28px;
    padding-bottom: 28px;
    text-align: left;
} 
    

#product_detail {
	min-height: 290px;
}

    

#product_detail #fh5co-hero {
	min-height: 290px;
}

    
#product_detail #fh5co-hero .flexslider .slides li {
	max-height: 300px;
	min-height: 290px;
}
    
    
    
    
#product_detail #fh5co-hero .flexslider .slides_produto li {
	max-height: 300px;
	min-height: 290px;
}
    
    
    
    
    
#products_b {
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
    margin-top: 320px;
    min-height: inherit;
}

    
#products_b #fh5co-hero {
	min-height: 290px;
}

    
#products_b #fh5co-hero .flexslider .slides li {
	max-height: 300px;
	min-height: 290px;
}

#products_b #fh5co-hero .flexslider .slides_produto li {
	max-height: 300px;
	min-height: 290px;
}
#products_b .desc {
    background-image:none; 
    background-color:#fff;  
    text-align:center;
    padding: 1em;
    width: 100%;
    float: left;
    right: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
} 
    
#products_b .container {
    position: absolute;
    z-index:1; 
    text-align:center; 
    top: 0%;
    right: 0px;
    width: 100%;
    float: left;
    left: 0;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
} 

#products_b .row {
    width: 80%;
    padding-top: 28px;
    padding-bottom: 28px;
    text-align: left;
} 
    

    
    }
        


#cosmopolitan {
	position: relative;
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
	min-height: 700px;
}

#cosmopolitan h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 

#cosmopolitan h9 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size:1em;
    font-style: normal;
    text-transform: none;
    line-height: normal;
    letter-spacing: .1rem;
} 


#plaza {
	position: relative;
	padding: 7rem 0 10rem;
	background-color: #EBEBEB;
	min-height: 700px;
}



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

#plaza {
	padding: 0 !important;
}
    }

#plaza h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 

#plaza h9 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size:1em;
    font-style: normal;
    text-transform: none;
    line-height: normal;
    letter-spacing: .1rem;
} 
#mattresses {
	position: relative;
	padding: 10rem 0 0rem;
    
	background-color: #FFFFFF;
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r7_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
}

#mattresses_02 {
	position: relative;
	padding: 10rem 0 10rem 0;
    
	background-color: #FFFFFF;
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r9_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
}




@media only screen and (min-width:1370px) {
	
   #mattresses {
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r7.jpg);
}
	
   #mattresses_02 {
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r9.jpg);
}

}



@media only screen and (max-width:650px) {
	
   #mattresses {
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r7_small.jpg);
	padding: 0 !important;;
}
	
   #mattresses_02 {
	background-image: url(https://www.colunex.com/en/images/colchao-bg_r9_small.jpg);
	padding: 0 !important;;
}



}




#mattresses h8 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 





#mattresses_02 h1 {
	font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: italic;
    font-size: 3.6rem;
    color: #000;
    text-rendering: optimizeLegibility;    
    margin: 0;
    padding: 0;
}




#mattresses_02 h8 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 


#sleep_complements h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
} 



#hotel {
	position: relative;
    padding: 0rem 10rem 10rem 10rem;
	background-color: #FFFFFF;
	min-height: 700px;
}


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

#hotel {
	padding: 0 !important;
    width: 100%;
}
    }
        


@media only screen and (max-width:768px) {
    
       #hotel {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    }
        

#tradeshows {
	position: relative;
	padding: 6rem 0 0rem;
	background-color: #EBEBEB;
}



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

#tradeshows {
	padding: 2rem 0 2rem !important;
}
    }
        


#tradeshows_02 {
	position: relative;
	padding: 6rem 0 6rem;
	background-color: #EBEBEB;
	min-height: 700px;
}

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


#tradeshows_02 {
	min-height: 1250px;
}
    }
      

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


#tradeshows_02 {
	min-height: 1050px;
}
    }
      

        

#made {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #EBEBEB;
	min-height: 700px;
    padding-left: 2%;
    padding-right: 2%;
    
}

#product_detail {
	position: relative;
	background-color: #EBEBEB;
	min-height: 290px;
    z-index:0;
    padding-bottom: 1.5em;
    
}





#product_detail .fluid-video-wrapper  {
padding-top: 2em; 
    width:60%;
}
    
    


#product_detail #fh5co-hero .flexslider .slides {
	width: 62%;
}


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


#product_detail .fluid-video-wrapper  {
	visibility: hidden;
    height: 0px;
    width:0px;
}
    
    
#product_detail .post-entry  {
	visibility: hidden;
    height: 0px;
    position: absolute;
}
    
#product_detail .post-entry .col-md-13 .post-image  {
	visibility: hidden;
    height: 0px;
}
    
    

#product_detail #fh5co-hero .flexslider .slides {
	width: 100%;
}
    
    
    }








#press {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #EBEBEB;
}


#press h3 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 400;
   color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
	line-height: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
}

#press h5 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 300;
    text-transform:none;
    margin-top: 2.4rem;
    margin-bottom: 3.6rem;
	line-height: normal;
    letter-spacing: 0;
	font-style: normal;
	text-rendering: optimizeLegibility;
}





#produto {
	position: relative;
	padding: 0;
	background-color: #fff;
    width: 80%
}



#campanha {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
}


#campanha h3 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 400;
   color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
	line-height: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
}

#campanha h5 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 300;
    text-transform:none;
    margin-top: 2.4rem;
    margin-bottom: 3.6rem;
	line-height: normal;
    letter-spacing: 0;
	font-style: normal;
	text-rendering: optimizeLegibility;
}




#fabric {
	position: relative;
	padding: 4rem 0 4rem;
    color: #fff;
}

#feet {
	position: relative;
	padding: 0rem 0 4rem;
    background-color: #fff;
}


#leather {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
    color: #fff;
}



.leather-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/leather-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




#elegance_butterfly {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
    color: #fff;
    min-height: 500px;
    
}



.elegance_butterfly-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/elegance_butterfly-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




@media only screen and (max-width:650px) {
	
   .leather-bg {
	background-image: url(https://www.colunex.com/en/images/leather-bg_small.jpg);
}
	
   .elegance_butterfly-bg {
	background-image: url(https://www.colunex.com/en/images/elegance_butterfly-bg_small.jpg);
}



}





#elegance_butterfly h9 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size:0.8em;
    font-style: normal;
    text-transform: none;
    line-height: normal;
    letter-spacing: .1rem;
} 


#elegance_butterfly h4 {
    font-style: normal;
} 






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

.elegance_butterfly-bg {
	width: 100%;
}

    
.leather-bg {
	width: 100%;
}
    
    
    
#elegance_butterfly h4 {
    color: #fff;
    
}
    

#elegance_butterfly .intro img {
    visibility: hidden;
    height: 0px!important;
    color: #fff;
    
}

    
    
    
}



#sleeper {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
    color: #fff;
    min-height: 500px;
    
}



.sleeper-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.sleeper-bg_02 {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 100%;
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_02_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




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

   .sleeper-bg_02 {
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_02.jpg);
}

}



@media only screen and (max-width:650px) {
	
   .sleeper-bg {
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_small.jpg);
}
	
   .sleeper-bg_02 {
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_02_small.jpg);
}



}





#sleeper h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;


}


#sleeper h2 {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}


#sleeper h3 {
    margin-bottom: 5px;


}



#sleeper h4 {    
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: italic;
    font-size: 3.6rem;
    color: #bca361;
    text-rendering: optimizeLegibility;
}



#sleeper h5 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
    
    

}





#concept {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
    color: #fff;
    min-height: 500px;
    
}



.concept-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/sofabed_concept-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.concept-bg_02 {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 100%;
	background-image: url(https://www.colunex.com/en/images/sofabed_concept-bg_02_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


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

.concept-bg_02 {
	background-image: url(https://www.colunex.com/en/images/sofabed_concept-bg_02.jpg);
}

}



@media only screen and (max-width:650px) {
	
	
.concept-bg_02 {
	background-image: url(https://www.colunex.com/en/images/sofabed_concept-bg_02_small.jpg);
}



}


#concept h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;


}


#concept h2 {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}


#concept h3 {
    margin-bottom: 5px;


}



#concept h5 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
    
    

}



@media screen and (max-width: 992px) {
    
    
.lamps {
    width: 100%!important;
}



#produto {
    width: 100%
}
    
}

@media screen and (max-width: 768px) {
    
    
.sleeper-bg {
    visibility: hidden;
}
}
    
    
#xenuloc {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #fff;
    color: #000;
}





#xenuloc h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}


#xenuloc h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2em;
    font-weight: 400;
    line-height: normal;
}


#xenuloc h4 {
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}


#xenuloc h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#xenuloc h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}


.xenuloc-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/celebration-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}






@media only screen and (max-width:650px) {
	
	
.xenuloc-bg {
	background-image: url(https://www.colunex.com/en/images/celebration-bg_small.jpg);
}



}






#memory {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #fff;
    color: #000;
}





#memory h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}


#memory h4 {
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}

#memory h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#memory h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.memory-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 100%;
	background-image: url(https://www.colunex.com/en/images/next-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}



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

.memory-bg {
	background-image: url(https://www.colunex.com/en/images/next-bg.jpg);
}

}



@media only screen and (max-width:650px) {
	
	
.memory-bg {
	background-image: url(https://www.colunex.com/en/images/next-bg_small.jpg);
}



}




#lamps {
	position: relative;
	padding: 0rem 0 0rem;
	background-color: #EBEBEB;
    color: #000;
}


#lamps .fh5co-staff {
	text-align: center;
}


#lamps h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}







#sono {
	position: relative;
	padding: 0;
	background-color: #EBEBEB;
    color: #000;
}


#sono a,
#sono a:visited{
	color: #000;
    font-weight: 600;
    text-decoration: underline;
	-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;
}


#sono a:active,
#sono a:hover,
#sono a:focus {
	color: #b11116;
}





#sono italic  {
    font-style: italic;
}

#sono bold  {
    font-weight: bold;
}

#sono h1 {
    font-family: "Playfair Display", Arial, serif;
    font-size: 3.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2em;
    font-style: normal;
    line-height: normal;
    text-rendering: optimizeLegibility;
    text-align:center;
}



#sono h2 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-top: 5em;
    margin-bottom: 1em;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    text-align:center;
}



#sono h2 a {
    color: #bca361 !important;
    text-decoration: none;
    font-weight: 400;
}


#sono h3 {
    font-family: "Playfair Display", Arial, serif;
    font-size: 3.1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 1em;
    font-style: italic;
    line-height: normal;
    text-rendering: optimizeLegibility;
}



#sono h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    
}



#sono h5 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.8em;
    font-weight: normal;
    color: #000;
    letter-spacing: normal;
    text-transform: none;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#sono h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: normal;
    color: #000;
    letter-spacing: normal;
    text-transform: none;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}


#sono h7 {
    font-family: "Playfair Display", Arial, serif;
    font-size: 1em;
    font-weight: 400;
    color: #000;
    margin-bottom: 1em;
    font-style: normal;
    line-height: normal;
    text-rendering: optimizeLegibility;
}


#sono h8 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    text-align:center;
}



#sono_complete {
	position: relative;
    padding: 3rem 0 3rem 0;
	background-color: #fff;
    color: #000;
}





#sono_complete h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#sono_complete p {
    font-size: 0.8em;
}

#sono_complete h4 {
    font-size: 3.1rem;
}

#sono_complete h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#sono_complete h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}



#sono_complete h3 {
    font-family: "Playfair Display", Arial, serif;
    font-size: 1em;
    font-weight: 400;
    color: #000;
    margin-bottom: 1em;
    font-style: normal;
    line-height: normal;
    text-rendering: optimizeLegibility;
}







#topper {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #EBEBEB;
    color: #000;
}





#topper h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

#topper h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#topper h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.topper-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/white_gradient.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


#topper h9 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    text-transform: none;
    letter-spacing: normal;
}





#bed_bases {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #EBEBEB;
    color: #000;
}





#bed_bases h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#bed_bases p {
    font-size: 0.8em;
}

#bed_bases h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#bed_bases h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.bed_bases-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/white_gradient.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}








#bed_bases_product {
	position: relative;
	padding: 7rem 0 0rem;
	background-color: #EBEBEB;
    color: #000;
}





#bed_bases_product h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#bed_bases_product p {
    font-size: 0.8em;
}

#bed_bases_product h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#bed_bases_product h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.bed_bases_product-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/white_gradient.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




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


#bed_bases_product {
	visibility: hidden;
    height: 0px;
}
}




#sofabeds {
	position: relative;
    padding: 3rem 0 3rem 0;
	background-color: #fff;
    color: #000;
}





#sofabeds h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#sofabeds p {
    font-size: 0.8em;
}

#sofabeds h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#sofabeds h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}


.sofabeds-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}



@media only screen and (max-width:650px) {
	
	
.sofabeds-bg {
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_small.jpg);
}



}



#beds_pt {
	position: relative;
    padding: 0rem 0 0rem 0;
	background-color: #fff;
    color: #000;
}





#beds_pt h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#beds_pt p {
    font-size: 0.8em;
}

#beds_pt h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#beds_pt h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}


.beds_pt-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}







@media only screen and (max-width:650px) {
	
	
.beds_pt-bg {
	background-image: url(https://www.colunex.com/en/images/sofabed_sleeper-bg_small.jpg);
}



}




#headboard {
	position: relative;
	padding: 7rem 0 4rem;
	background-color: #EBEBEB;
    color: #000;
}





#headboard h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

#headboard h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#headboard h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.headboard-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 180px;
    max-height: 750px;
	background: #EBEBEB;
	width: 2500px;
	background-image: url(https://www.colunex.com/en/images/white_gradient.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




#springs {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #fff;
    color: #000;
}





#springs h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

#springs h4 {
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}


#springs h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2em;
    font-weight: 400;
    line-height: normal;
}

#springs h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#springs h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}


.springs-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/charm_extra-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}



#springs_campanha {
	position: relative;
	padding: 10rem 0 0rem;
	background-color: #fff;
    color: #000;
}





#springs_campanha h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

#springs_campanha h4 {
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}


#springs_campanha h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2em;
    font-weight: 400;
    line-height: normal;
}

#springs_campanha h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#springs_campanha h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
    letter-spacing: .1rem;
}


.springs_campanha-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/charm_extra-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}








@media only screen and (max-width:650px) {
	
	
.springs-bg {
	background-image: url(https://www.colunex.com/en/images/charm_extra-bg_small.jpg);
}



}





#latex {
	position: relative;
    color: #000;
}





#latex h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

#latex h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#latex h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.latex-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/charm_extra-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




@media only screen and (max-width:650px) {
	
	
.latex-bg {
	background-image: url(https://www.colunex.com/en/images/charm_extra-bg_small.jpg);
}



}





#action {
	position: relative;
    color: #000;
    margin-bottom: 7rem;
}





#action h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}



#action h4 {
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}

#action h5 {
	font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    color: #bca361;
}



#action h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    display: block;
    color: #000;
    font-size: 0.8em;
    font-style: normal;
}


.action-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
    max-height: 750px;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/colunex_mattress_action.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}




@media only screen and (max-width:650px) {
	
	
.latex-bg {
	background-image: url(https://www.colunex.com/en/images/colunex_mattress_action_small.jpg);
}



}






#about_products {
	position: relative;
	padding: 10rem 0 10rem;
	background-color: #fff;
}



@media only screen and (max-width:650px) {
	
#about_products {
	padding: 4rem 0 4rem;
}
	


}




#about_products h3 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 400;
   color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
	line-height: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
}

#about_products h5 {
	font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 300;
    text-transform:none;
    margin-top: 2.4rem;
    margin-bottom: 3.6rem;
	line-height: normal;
    letter-spacing: 0;
	font-style: normal;
	text-rendering: optimizeLegibility;
}




#video {
	position: relative;
	padding: 0;
	background-color: #FFFFFF;
}

#about h3 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	color: #4C2405;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}

#about h1 {
	font-family: "Playfair Display", serif;
	font-size: 3.6rem;
	line-height: 1.455;
    font-style: italic;
}

#catalogue h3 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	color: #4C2405;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}

#catalogue h1 {
	font-family: "Playfair Display", serif;
	font-size: 3.6rem;
    margin-bottom: 20px;
}

#catalogue a {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    text-align: center;
}

#revista h3 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	color: #4C2405;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}

#revista h1 {
	font-family: "Playfair Display", serif;
	font-size: 3.6rem;
    margin-bottom: 20px;
}

#revista a {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    text-align: center;
}

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

#catalogue a {
    letter-spacing: 0.3rem;
}
#revista a {
    letter-spacing: 0.3rem;
}
}

.about-profile-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/profile-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	opacity: .35;
}


.about-press-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/press-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.ao-campanha-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/gold_ao.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
    
.ao-campanha-bg {
	width: 100%;
}
}


.about-campanha-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/campanha_pt.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.about-catalogo-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/catalogo_2018.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

@media only screen and (max-width: 768px) {
    
.about-campanha-bg {
	width: 100%;
}
.about-catalogo-bg {
	width: 100%;
}
}


.fabrics-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/fabrics-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.savoir-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/savoir-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.tech-bg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background: #EBEBEB;
	width: 50%;
	background-image: url(https://www.colunex.com/en/images/tech-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.about-catalogue-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #EBEBEB;
	background-image: url(https://www.colunex.com/en/images/catalogue-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.about-revista-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #EBEBEB;
	background-image: url(https://www.colunex.com/en/images/revista-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}


.about-hotelcatalogue-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #EBEBEB;
	background-image: url(https://www.colunex.com/en/images/hotel_catalogue-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}





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

.about-profile-bg {
	background-image: url(https://www.colunex.com/en/images/profile-bg.jpg);
}
    
.about-catalogue-bg {
	background-image: url(https://www.colunex.com/en/images/catalogue-bg.jpg);
}

.about-revista-bg {
	background-image: url(https://www.colunex.com/en/images/revista-bg.jpg);
}

	
.about-hotelcatalogue-bg {
	background-image: url(https://www.colunex.com/en/images/hotel_catalogue-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
.about-profile-bg {
	background-image: url(https://www.colunex.com/en/images/profile-bg_small.jpg);
}
	
.about-press-bg {
	background-image: url(https://www.colunex.com/en/images/press-bg_small.jpg);
}

	
.ao-campanha-bg {
	background-image: url(https://www.colunex.com/en/images/gold_ao_small.jpg);
}

	
.about-campanha-bg {
	background-image: url(https://www.colunex.com/en/images/campanha_pt_small.jpg);
}

	
.about-catalogo-bg {
	background-image: url(https://www.colunex.com/en/images/catalogo_2018_small.jpg);
}

	
.fabrics-bg {
	background-image: url(https://www.colunex.com/en/images/fabrics-bg_small.jpg);
}

	
.savoir-bg {
	background-image: url(https://www.colunex.com/en/images/savoir-bg_small.jpg);
}

	
.tech-bg {
	background-image: url(https://www.colunex.com/en/images/tech-bg_small.jpg);
}

	
.about-catalogue-bg {
	background-image: url(https://www.colunex.com/en/images/catalogue-bg_small.jpg);
}

	
.about-revista-bg {
	background-image: url(https://www.colunex.com/en/images/revista-bg_small.jpg);
}

	
.about-hotelcatalogue-bg {
	background-image: url(https://www.colunex.com/en/images/hotel_catalogue-bg_small.jpg);
}



}






.about-wrap {
	width: 94%;
	margin: 0 auto;
}

.about-wrap:before,
.about-wrap:after {
	content: "";
	display: table;
}

.about-wrap:after {
	clear: both;
}

.about-hidden,
.about-press,
.about-sono,
.about-campanha,
.about-catalogo,
.about-catalogue,
.about-revista,
.about-hotelcatalogue,
.about-profile,
.about-services {
	float: left;
	width: 50%;
	padding-left: 30px;
	padding-right: 30px;
}



.about-produto {
	float: left;
	width: 50%;
    padding: 1%;
}


.about-produto_grande {
	float: left;
	width: 100%;
    padding: 1%;
}


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


.about-sono {
	float: left;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
    margin-top: 5%;
}


    }

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


.about-hotelcatalogue,
.about-revista,
.about-catalogue {
	float: left;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}


    }

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


    #press {
    padding: 3rem 0 3rem;
}
    
      #campanha {
    padding: 3rem 0 3rem;
}
    
    
.tech-bg,    
.savoir-bg,
.about-press-bg{
	background-image: none;
    background:#FFF;
    width: 100%;
}
    
.about-press{
	width: 100%;
}
    
.about-campanha{
	width: 100%;
}
    
    
.about-catalogo{
	width: 100%;
}
    
    .springs-bg,
    .xenuloc-bg {
	width: 100%;
}
        
    
        
    
    
.about-hidden{
	width: 100%;
    visibility: hidden;
    height: 0;
}
    
    

    }
        



.about-hotelcatalogue,
.about-revista,
.about-catalogue {
    padding: 10%;
    position: relative;
	z-index: 0;
    text-align: center;
    
}

.about-catalogue p.lead {
	color: #636363;
}

.about-catalogue .about-catalogue-bg {
	display: none;
}



.about-revista p.lead {
	color: #636363;
}

.about-revista .about-revista-bg {
	display: none;
}


.about-hotelcatalogue p.lead {
	color: #636363;
}

.about-hotelcatalogue .about-hotelcatalogue-bg {
	display: none;
}

.about-profile {
	padding-right: 9rem;
	position: relative;
	z-index: 2;
}

.about-profile p.lead {
	color: #636363;
}

.about-profile .about-profile-bg {
	display: none;
}


.about-press {
	position: relative;
	z-index: 1;
}

.about-press p.lead {
	color: #636363;
}

.about-press .about-press-bg {
	display: none;
}




.about-campanha {
	position: relative;
	z-index: 1;
    min-height: 300px;
}

.about-campanha p.lead {
	color: #636363;
}

.about-campanha .about-campanha-bg {
	display: none;
}




.about-catalogo {
	position: relative;
	z-index: 1;
    min-height: 300px;
}

.about-catalogo p.lead {
	color: #636363;
}

.about-catalogo .about-catalogo-bg {
	display: none;
}



.about-hidden {
	position: relative;
	z-index: 1;
}

.about-hidden p.lead {
	color: #636363;
}

.about-hidden .about-hidden-bg {
	display: none;
}




.about-services {
	padding-left: 9rem;
	position: relative;
}

.about-services p.lead {
	color: #757575;
}

.about-services ul.services {
	list-style: none;
	margin-left: 0;
}

.about-services ul.services li {
	padding-left: 0;
	margin-bottom: .6rem;
	position: relative;
}

.about-services ul.services li h4 {
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .15rem;
	line-height: 1.313;
	margin-bottom: .6rem;
}

.about-services ul.services li p {
	margin-bottom: 1.5rem;
	color: #4f4f4f;
}

.about-services ul.services .icon-wrap {
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(46, 22, 3, 0.4);
	color: #4C2405;
}

.about-services ul.services .icon-wrap i {
	font-size: 5rem;
}

.about-services ul.services .item-photography .icon-wrap {
	top: -.3rem;
}

.about-services ul.services .item-webdesign .icon-wrap {
	top: -.7rem;
}

.about-services ul.services .item-uiux .icon-wrap {
	top: -.1rem;
}

.about-services ul.services .service-item {
	padding-left: 8rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about 
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1024px) {
	.about-profile {
		padding-right: 5rem;
	}

	.about-services {
		padding-left: 5rem;
	}

}

@media only screen and (max-width:900px) {
	.about-profile {
		padding-right: 4rem;
	}

	.about-services {
		padding-left: 4rem;
	}

}

@media only screen and (max-width:768px) {
	#about {
		padding-top: 0;
	}

	.about-wrap {
		padding: 0;
		width: 100%;
	}

	.about-profile-bg {
		display: none;
	}

	.about-profile,
	.about-services {
		float: none;
		width: 100%;
		padding-top: 10.8rem;
		padding-left: 45px;
		padding-right: 45px;
	}

	.about-profile .intro,
	.about-services .intro {
		text-align: center;
	}

	.about-profile {
		padding-bottom: 9rem;
	}

	.about-profile .about-profile-bg {
		display: block;
		width: 100%;
	}

}

@media only screen and (max-width:600px) {
	.about-profile,
	.about-services {
		padding-left: 35px;
		padding-right: 35px;
	}

}

@media only screen and (max-width:400px) {
	.about-profile,
	.about-services {
		padding-left: 25px;
		padding-right: 25px;
	}

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

	.about-services ul.services .icon-wrap {
		position: static;
		margin-bottom: .6rem;
	}

	.about-services ul.services .icon-wrap i {
		font-size: 6rem;
	}

	.about-services ul.services .service-item {
		padding-left: 0;
		margin-bottom: 3rem;
	}

	.about-services ul.services .service-item h4 {
		margin-bottom: 1.5rem;
	}

}

/* ===================================================================
 *  11. skills - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#skills {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/brand-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
	color: rgba(255, 255, 255, 0.3);
}


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

#skills {
	background-image: url(https://www.colunex.com/en/images/brand-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#skills {
	background-image: url(https://www.colunex.com/en/images/brand-bg_small.jpg);
}
	


}



#skills .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#skills .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#skills .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 560px;
}

#skills [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}

#skills .section-intro {
	text-align: left;
}

#skills .section-intro h3 {
}

#skills .section-intro h1 {
	color: #FFFFFF;
}

#skills .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#skills .skill-bars {
	margin-top: 8.4rem;
}

#skills .skill-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#skills .skill-bars li strong {
	color: #FFFFFF;
}

#skills .skill-bars li .progress {
	background: #FFFFFF;
}









/* ===================================================================
 *  11. skills - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#lojas {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/lojas-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 15rem 0 12rem;
	color: rgba(255, 255, 255, 0.3);
}


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

#lojas {
	background-image: url(https://www.colunex.com/en/images/lojas-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#lojas {
	background-image: url(https://www.colunex.com/en/images/lojas-bg_small.jpg);
}
	


}


#lojas .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#lojas .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#lojas .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 600px;
}

#lojas [class="col-lojas"] {
	width: 50%;
	padding-right: 0;
}

#lojas .section-intro {
	text-align: left;
}

#lojas .section-intro h3 {
}

#lojas .section-intro h1 {
	color: #FFFFFF;
}

#lojas .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#lojas .lojas-bars {
	margin-top: 8.4rem;
}

#lojas .lojas-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#lojas .lojas-bars li strong {
	color: #FFFFFF;
}

#lojas .lojas-bars li .progress {
	background: #FFFFFF;
}








#technology_xenuloc {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/xenuloc-bg.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_xenuloc {
	background-image: url(https://www.colunex.com/en/images/background_technology/xenuloc-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_xenuloc {
	background-image: url(https://www.colunex.com/en/images/background_technology/xenuloc-bg_small.jpg);
}
	


}



#technology_xenuloc .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_xenuloc [class="col-technology_xenuloc"] {
	width: 50%;
	padding-right: 0;
}

#technology_xenuloc .section-intro {
	text-align: left;
}

#technology_xenuloc h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_xenuloc h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_xenuloc h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_xenuloc .technology_xenuloc-bars {
	margin-top: 8.4rem;
}

#technology_xenuloc .technology_xenuloc-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_xenuloc .skill-bars li strong {
	color: #FFFFFF;
}

#technology_xenuloc .skill-bars li .progress {
	background: #FFFFFF;
}




#technology_hybrid {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/hybrid-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_hybrid {
	background-image: url(https://www.colunex.com/en/images/background_technology/hybrid-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_hybrid {
	background-image: url(https://www.colunex.com/en/images/background_technology/hybrid-bg_small.jpg);
}
	


}



#technology_hybrid .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_hybrid [class="col-technology_hybrid"] {
	width: 50%;
	padding-right: 0;
}

#technology_hybrid .section-intro {
	text-align: left;
}

#technology_hybrid h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_hybrid h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_hybrid h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_hybrid .technology_hybrid-bars {
	margin-top: 8.4rem;
}

#technology_hybrid .technology_hybrid-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_hybrid .skill-bars li strong {
	color: #FFFFFF;
}

#technology_hybrid .skill-bars li .progress {
	background: #FFFFFF;
}


#natural_materials {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/natural-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	color: rgba(255, 255, 255, 0.3);
}



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

#natural_materials {
	background-image: url(https://www.colunex.com/en/images/background_technology/natural-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#natural_materials {
	background-image: url(https://www.colunex.com/en/images/background_technology/natural-bg_small.jpg);
}
	


}


#natural_materials .row {
	position: relative;
    margin-left: 0%;
    max-width: 350px;
}

#natural_materials [class="col-technology_springs"] {
	width: 50%;
	padding-right: 0;
}

#natural_materials .section-intro {
	text-align: left;
}

#natural_materials h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#natural_materials h4 {
    font-family: "adobe-caslon-pro", serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#natural_materials h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#natural_materials .natural_materials-bars {
	margin-top: 8.4rem;
}

#natural_materials .natural_materials-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#natural_materials .skill-bars li strong {
	color: #FFFFFF;
}

#natural_materials .skill-bars li .progress {
	background: #FFFFFF;
}



#technology_tubes {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/tubes-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}




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

#technology_tubes {
	background-image: url(https://www.colunex.com/en/images/background_technology/tubes-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_tubes {
	background-image: url(https://www.colunex.com/en/images/background_technology/tubes-bg_small.jpg);
}
	


}

#technology_tubes .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_tubes [class="col-technology_tubes"] {
	width: 50%;
	padding-right: 0;
}

#technology_tubes .section-intro {
	text-align: left;
}

#technology_tubes h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_tubes h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_tubes h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_tubes .technology_tubes-bars {
	margin-top: 8.4rem;
}

#technology_tubes .technology_tubes-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_tubes .skill-bars li strong {
	color: #FFFFFF;
}

#technology_tubes .skill-bars li .progress {
	background: #FFFFFF;
}







#technology_fibres {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/neutro-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_fibres {
	background-image: url(https://www.colunex.com/en/images/background_technology/neutro-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_fibres {
	background-image: url(https://www.colunex.com/en/images/background_technology/neutro-bg_small.jpg);
}
	


}




#technology_fibres .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_fibres [class="col-technology_fibres"] {
	width: 50%;
	padding-right: 0;
}

#technology_fibres .section-intro {
	text-align: left;
}

#technology_fibres h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_fibres h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_fibres h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_fibres .technology_fibres-bars {
	margin-top: 8.4rem;
}

#technology_fibres .technology_fibres-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_fibres .skill-bars li strong {
	color: #FFFFFF;
}

#technology_fibres .skill-bars li .progress {
	background: #FFFFFF;
}






#technology_hygiencell {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/hygiencell-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}


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

#technology_hygiencell {
	background-image: url(https://www.colunex.com/en/images/background_technology/hygiencell-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_hygiencell {
	background-image: url(https://www.colunex.com/en/images/background_technology/hygiencell-bg_small.jpg);
}
	


}



#technology_hygiencell .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_hygiencell [class="col-technology_hygiencell"] {
	width: 50%;
	padding-right: 0;
}

#technology_hygiencell .section-intro {
	text-align: left;
}

#technology_hygiencell h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_hygiencell h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_hygiencell h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_hygiencell .technology_hygiencell-bars {
	margin-top: 8.4rem;
}

#technology_hygiencell .technology_hygiencell-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_hygiencell .skill-bars li strong {
	color: #FFFFFF;
}

#technology_hygiencell .skill-bars li .progress {
	background: #FFFFFF;
}









#technology_mix {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/mix-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_mix {
	background-image: url(https://www.colunex.com/en/images/background_technology/mix-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_mix {
	background-image: url(https://www.colunex.com/en/images/background_technology/mix-bg_small.jpg);
}
	


}




#technology_mix .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_mix [class="col-technology_mix"] {
	width: 50%;
	padding-right: 0;
}

#technology_mix .section-intro {
	text-align: left;
}

#technology_mix h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_mix h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_mix h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_mix .technology_mix-bars {
	margin-top: 8.4rem;
}

#technology_mix .technology_mix-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_mix .skill-bars li strong {
	color: #FFFFFF;
}

#technology_mix .skill-bars li .progress {
	background: #FFFFFF;
}






#technology_fresh {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/fresh-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_fresh {
	background-image: url(https://www.colunex.com/en/images/background_technology/fresh-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_fresh {
	background-image: url(https://www.colunex.com/en/images/background_technology/fresh-bg_small.jpg);
}
	


}



#technology_fresh .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_fresh [class="col-technology_fresh"] {
	width: 50%;
	padding-right: 0;
}

#technology_fresh .section-intro {
	text-align: left;
}

#technology_fresh h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_fresh h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_fresh h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_fresh .technology_fresh-bars {
	margin-top: 8.4rem;
}

#technology_fresh .technology_fresh-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_fresh .skill-bars li strong {
	color: #FFFFFF;
}

#technology_fresh .skill-bars li .progress {
	background: #FFFFFF;
}






#technology_memory_pillow {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/memory_pillow-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}


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

#technology_memory_pillow {
	background-image: url(https://www.colunex.com/en/images/background_technology/memory_pillow-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_memory_pillow {
	background-image: url(https://www.colunex.com/en/images/background_technology/memory_pillow-bg_small.jpg);
}
	


}


#technology_memory_pillow .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_memory_pillow [class="col-technology_memory_pillow"] {
	width: 50%;
	padding-right: 0;
}

#technology_memory_pillow .section-intro {
	text-align: left;
}

#technology_memory_pillow h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_memory_pillow h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_memory_pillow h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_memory_pillow .technology_fresh-bars {
	margin-top: 8.4rem;
}

#technology_memory_pillow .technology_fresh-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_memory_pillow .skill-bars li strong {
	color: #FFFFFF;
}

#technology_memory_pillow .skill-bars li .progress {
	background: #FFFFFF;
}













#technology_latex {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/latex-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}


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

#technology_latex {
	background-image: url(https://www.colunex.com/en/images/background_technology/latex-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_latex {
	background-image: url(https://www.colunex.com/en/images/background_technology/latex-bg_small.jpg);
}
	


}



#technology_latex .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_latex [class="col-technology_latex"] {
	width: 50%;
	padding-right: 0;
}

#technology_latex .section-intro {
	text-align: left;
}

#technology_latex h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_latex h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_latex h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_latex .technology_latex-bars {
	margin-top: 8.4rem;
}

#technology_latex .technology_latex-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_latex .skill-bars li strong {
	color: #FFFFFF;
}

#technology_latex .skill-bars li .progress {
	background: #FFFFFF;
}







#technology_memory {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/memory-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}


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

#technology_memory {
	background-image: url(https://www.colunex.com/en/images/background_technology/memory-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_memory {
	background-image: url(https://www.colunex.com/en/images/background_technology/memory-bg_small.jpg);
}
	


}


#technology_memory .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_memory [class="col-technology_memory"] {
	width: 50%;
	padding-right: 0;
}

#technology_memory .section-intro {
	text-align: left;
}

#technology_memory h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_memory h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_memory h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_memory .technology_memory-bars {
	margin-top: 8.4rem;
}

#technology_memory .technology_memory-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_memory .skill-bars li strong {
	color: #FFFFFF;
}

#technology_memory .skill-bars li .progress {
	background: #FFFFFF;
}











#technology_reflex {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/reflex-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}


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

#technology_reflex {
	background-image: url(https://www.colunex.com/en/images/background_technology/reflex-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_reflex {
	background-image: url(https://www.colunex.com/en/images/background_technology/reflex-bg_small.jpg);
}
	


}



#technology_reflex .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_reflex [class="col-technology_reflex"] {
	width: 50%;
	padding-right: 0;
}

#technology_reflex .section-intro {
	text-align: left;
}

#technology_reflex h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_reflex h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_reflex h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_reflex .technology_reflex-bars {
	margin-top: 8.4rem;
}

#technology_reflex .technology_reflex-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_reflex .skill-bars li strong {
	color: #FFFFFF;
}

#technology_reflex .skill-bars li .progress {
	background: #FFFFFF;
}










#technology_springs {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/background_technology/springs-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding-top: 112px;
	padding-bottom: 112px;
	padding-left: 5%;
	color: rgba(255, 255, 255, 0.3);
}



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

#technology_springs {
	background-image: url(https://www.colunex.com/en/images/background_technology/springs-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#technology_springs {
	background-image: url(https://www.colunex.com/en/images/background_technology/springs-bg_small.jpg);
}
	


}


#technology_springs .row {
	position: relative;
    margin-left: 0%;
    max-width: 560px;
}

#technology_springs [class="col-technology_springs"] {
	width: 50%;
	padding-right: 0;
}

#technology_springs .section-intro {
	text-align: left;
}

#technology_springs h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    line-height: normal;
    text-rendering: optimizeLegibility;
}

#technology_springs h4 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
}

#technology_springs h5 {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.8em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}


#technology_springs .technology_springs-bars {
	margin-top: 8.4rem;
}

#technology_springs .technology_springs-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#technology_springs .skill-bars li strong {
	color: #FFFFFF;
}

#technology_springs .skill-bars li .progress {
	background: #FFFFFF;
}










#mattresses_collection {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/colchao-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
	color: rgba(255, 255, 255, 0.3);
    max-height: 873px;
}



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

#mattresses_collection {
	background-image: url(https://www.colunex.com/en/images/colchao-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#mattresses_collection {
	background-image: url(https://www.colunex.com/en/images/colchao-bg_small.jpg);
}
	


}



#mattresses_collection .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#mattresses_collection .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#mattresses_collection .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 560px;
}

#mattresses_collection [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}

#mattresses_collection .section-intro {
	text-align: left;
}

#mattresses_collection .section-intro h3 {
}

#mattresses_collection .section-intro h1 {
	color: #FFFFFF;
}

#mattresses_collection .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#mattresses_collection .skill-bars {
	margin-top: 8.4rem;
}

#mattresses_collection .skill-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#mattresses_collection .skill-bars li strong {
	color: #FFFFFF;
}

#mattresses_collection .skill-bars li .progress {
	background: #FFFFFF;
}



#collection {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/collection-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
	color: rgba(255, 255, 255, 0.3);
}



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

#collection {
	background-image: url(https://www.colunex.com/en/images/collection-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#collection {
	background-image: url(https://www.colunex.com/en/images/collection-bg_small.jpg);
}
	


}



#collection .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#collection .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#collection .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 560px;
}

#collection [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}

#collection .section-intro {
	text-align: left;
}

#collection .section-intro h3 {
}

#collection .section-intro h1 {
	color: #FFFFFF;
}

#collection .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#collection .skill-bars {
	margin-top: 8.4rem;
}

#collection .skill-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#collection .skill-bars li strong {
	color: #FFFFFF;
}

#collection .skill-bars li .progress {
	background: #FFFFFF;
}





#bed {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/bed-bg_medium.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
	color: rgba(255, 255, 255, 0.3);
    margin-top: 7rem;
}


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

#bed {
	background-image: url(https://www.colunex.com/en/images/bed-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#bed {
	background-image: url(https://www.colunex.com/en/images/bed-bg_small.jpg);
}
	


}



#bed .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#bed .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#bed .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 560px;
}

#bed [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}

#bed .section-intro {
	text-align: left;
}

#bed .section-intro h3 {
}

#bed .section-intro h1 {
	color: #FFFFFF;
}

#bed .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#bed .skill-bars {
	margin-top: 8.4rem;
}

#bed .skill-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#bed .skill-bars li strong {
	color: #FFFFFF;
}

#bed .skill-bars li .progress {
	background: #FFFFFF;
}



#options {
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 4rem 0 0rem;
}

#options h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
}




#options_cozy {
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 4rem 0 0rem;
}

#options_cozy h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
}



#feet h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
}



#options_bed {
	background-color: #fff;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 4rem 0 0rem;
}

#options_bed h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
}




#sleep {


}



#sleep #fh5co-about h4 {
    font-size: 1.2em;
    margin-bottom: 5px;


}



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

#sleep .col-md-6 {
    visibility: hidden;
    height: 0;


}
    
    
#sleep .col-md-3 {
    visibility: hidden;
    height: 0;


}

}



#sleep_complements {
	background-color: #fff;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 7rem 0 0rem;
    border-bottom: 4px solid #EBEBEB;
}

#sleep_complements .fh5co-staff {
	text-align: center;
}



#product_complements {
	background-color: #FFF;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 7rem 0 0rem;
    z-index: 1;
    border-top: solid 2px #EBEBEB;
}

#product_complements #fh5co-about {
	background-color: #FFF;
    margin-top: 28px
}
 

#product_complements h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
}




#complements {
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 7rem 0 0rem;
}

#complements .fh5co-staff {
	text-align: center;
}



#complements h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: #bca361;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 1.2rem;
    font-style: normal;
}




#bespoke {
	background-color: #1f0e01;
	background-image: url(https://www.colunex.com/en/images/bespoke-bg_medium.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
	padding: 12rem 0 9.6rem;
	color: rgba(255, 255, 255, 0.3);
}



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

#bespoke {
	background-image: url(https://www.colunex.com/en/images/bespoke-bg.jpg);
}
	

}



@media only screen and (max-width:650px) {
	
	
#bespoke {
	background-image: url(https://www.colunex.com/en/images/bespoke-bg_small.jpg);
}
	


}



#bespoke .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #fff;
}

#bespoke .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .6;
	background: -moz-linear-gradient(left, white 0%, white 30%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, white 0%, white 30%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, white 0%, white 30%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#bespoke .row {
	position: relative;
	position: relative;
    margin-left: 5%;
    max-width: 560px;
}

#bespoke [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}

#bespoke .section-intro {
	text-align: left;
}

#bespoke .section-intro h3 {
}

#bespoke .section-intro h1 {
	color: #FFFFFF;
}

#bespoke .section-intro h2 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-size: 1.2em;
    text-rendering: optimizeLegibility;
	color: #000000;
}

#bespoke .section-intro h5 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1em;
	font-weight: 400;
    line-height: normal;
    text-transform:none;
}

#bespoke .skill-bars {
	margin-top: 8.4rem;
}

#bespoke .skill-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#bespoke .skill-bars li strong {
	color: #FFFFFF;
}

#bespoke .skill-bars li .progress {
	background: #FFFFFF;
}




#intro {
	position: relative;
    padding: 6rem 0 6rem 0;
    background: #EBEBEB;
    text-align: center;
}



#intro a {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 30px;
}

#intro .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
	background-color: #000000;
}

#intro .gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .2;
	background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, black 0%, black 20%, transparent 100%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);  /* IE6-9 */
}

#intro [class="col-skills"] {
	width: 50%;
	padding-right: 0;
}


#intro .section-intro h3 {
}

#intro .section-intro h1 {
	color: #FFFFFF;
}

#intro .intro-bars {
	margin-top: 8.4rem;
}

#intro .intro-bars li {
	background: #7c3b08;
	margin-bottom: 7.2rem;
}

#intro .intro-bars li strong {
	color: #FFFFFF;
}

#intro .intro-bars li .progress {
	background: #FFFFFF;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * skills
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1024px) {
	#skills [class="col-skills"] {
		width: 75%;
	}

}

@media only screen and (max-width:768px) {
	#skills .section-intro {
		text-align: center;
	}

	#skills [class="col-skills"] {
		width: 100%;
		padding-right: 15px;
	}

}

@media only screen and (max-width:600px) {
	#skills [class="col-skills"] {
		padding-right: 10px;
	}

}

@media only screen and (max-width:400px) {
	#skills [class="col-skills"] {
		padding-right: 0;
	}

}

/* ===================================================================
 *  12. credentials - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#credentials {
	background: #FFFFFF;
	position: relative;
	padding: 12rem 0 9rem;
}

#credentials .credentials-content h2 {
	margin-bottom: 4.8rem;
	color: #4C2405;
	padding-left: 8rem;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .15rem;
	position: relative;
}

#credentials .credentials-content h2::before {
	display: block;
	content: "";
	height: 3px;
	width: 4rem;
	background-color: #aeaeae;
	position: absolute;
	top: 50%;
	left: 2rem;
	margin-top: -3px;
}

#credentials .left {
	padding-right: 40px;
}

#credentials .right {
	padding-left: 40px;
}

#credentials .timeline-wrap {
	position: relative;
	text-align: left;
}

#credentials .timeline-wrap::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	left: 2rem;
	top: 0;
}

#credentials .timeline-block {
	position: relative;
	padding-left: 8rem;
	margin-bottom: 4.2rem;
}

#credentials .timeline-ico {
	height: 4.8rem;
	width: 4.8rem;
	line-height: 4.8rem;
	background: #4C2405;
	border-radius: 50%;
	text-align: center;
	color: #FFFFFF;
	position: absolute;
	left: 2rem;
	top: 0;
	margin-left: -2.4rem;
}

#credentials .timeline-header .timeframe {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	color: #757575;
	margin-bottom: 0;
}

#credentials .timeline-header h3 {
	font-size: 2.4rem;
	line-height: 1.25;
	margin-bottom: 0;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * credentials
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1024px) {
	#credentials .left {
		padding-right: 20px;
	}

	#credentials .right {
		padding-left: 20px;
	}

}

@media only screen and (max-width:768px) {
	#credentials .credentials-content h2 {
		padding: 0;
		text-align: center;
	}

	#credentials .credentials-content h2::before {
		display: none;
	}

	#credentials .left {
		padding-right: 10px;
	}

	#credentials .right {
		padding-left: 10px;
	}

}

@media only screen and (max-width:600px) {
	#credentials .timeline-block {
		padding-left: 7rem;
	}

}

@media only screen and (max-width:400px) {
	#credentials .timeline-header .timeframe {
		font-size: 1.5rem;
	}

	#credentials .timeline-header h3 {
		font-size: 2.2rem;
	}

	#credentials .timeline-block {
		padding-left: 6rem;
	}

}

/* ===================================================================
 *  13. portfolio - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#portfolio {
        background: #EBEBEB;
	min-height: 800px;
	position: relative;
	padding: 6rem 0 0rem;
}

#portfolio .bricks-wrapper:before,
#portfolio .bricks-wrapper:after {
	content: "";
	display: table;
}

#portfolio .bricks-wrapper:after {
	clear: both;
}
#portfolio .bricks-wrapper .brick {
	float: left;
	width: 31%;
	padding: 0;
	margin: 0 1% 2% 1%;
}


#portfolio .item-text {
    background: #fff;
    padding: 14px;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

#portfolio .item-text-text {
    width: 60%;
    margin: 0 auto;
    float: left;
}
#portfolio .item-text-button {
    width: 40%;
    text-align: right;
    margin: 0 auto;
    float: left;
}



#portfolio .item-image {
    background: #fff;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 70%;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}


#portfolio .item-image_text {
    background: #fff;
    padding: 14px;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 30%;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}


#portfolio .item-image_text h3 {
    line-height: 1;
    font-size: 1em;
}

#portfolio .item-text h3 {
    line-height: 1;
    font-size: 1em;
}


#portfolio .item-text h7 {
    
}

#portfolio .bricks-wrapper .brick:nth-child(2n+1) {
	clear: both;
}



/* ===================================================================
 *  13. portfolio - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#inspiration_portfolio {
        background: #EBEBEB;
	min-height: 800px;
	position: relative;
	padding: 6rem 0 0rem;
}

#inspiration_portfolio .bricks-wrapper:before,
#inspiration_portfolio .bricks-wrapper:after {
	content: "";
	display: table;
}

#inspiration_portfolio .bricks-wrapper:after {
	clear: both;
}
#inspiration_portfolio .bricks-wrapper .brick {
	float: left;
	width: 48%;
	padding: 0;
	margin: 0 0% 2% 0%;
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}



#inspiration_portfolio .bricks-wrapper .bricksmall {
	float: left;
	width: 23%;
	padding: 0;
	margin: 0 1% 2% 1%;
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}


#inspiration_portfolio .item-text {
    padding: 14px;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

#inspiration_portfolio .item-text-text {
    width: 60%;
    margin: 0 auto;
    float: left;
}
#inspiration_portfolio .item-text-button {
    width: 40%;
    text-align: right;
    margin: 0 auto;
    float: left;
}



#inspiration_portfolio .item-image {
    background: #fff;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 70%;
    text-align: left;
}


#inspiration_portfolio .item-image_text {
    background: #fff;
    padding: 14px;
    color: #000;
    line-height: 0;
    float: left;
    margin: 0 auto;
    width: 30%;
    text-align: left;
}


#inspiration_portfolio .item-image_text h3 {
    line-height: 1;
    font-size: 1em;
}

#inspiration_portfolio .item-text h3 {
    line-height: 1;
    font-size: 1em;
}


#inspiration_portfolio .item-text h7 {
    
}


#inspiration_portfolio .bricks-wrapper .brick:nth-child(2n+1) {
	clear: both;
}




@media only screen and (max-width:1200px) {
    #portfolio .bricks-wrapper .brick {
		width: 48%;
	}


}

@media only screen and (max-width:800px) {
    #portfolio .bricks-wrapper .brick {
		float: none;
		width: 100%;
	}


}









#hotel_portfolio {
        background: #ffffff;
	min-height: 800px;
	position: relative;
	padding: 2rem 0 0 0;
}

#hotel_portfolio .bricks-wrapper:before,
#hotel_portfolio .bricks-wrapper:after {
	content: "";
	display: table;
}

#hotel_portfolio .bricks-wrapper:after {
	clear: both;
}

#hotel_portfolio .bricks-wrapper .brick {
	float: left;
	width: 32%;
	padding: 0;
	margin: 0 0 1% 1%;
}

#hotel_portfolio .bricks-wrapper .brick:nth-child(2n+1) {
	clear: both;
}




/* ------------------------------------------------------------------- 
 * masonry entries - (_layout.css) 
 * ------------------------------------------------------------------- */
.bricks-wrapper .item-wrap {
	position: relative;
	overflow: hidden;
}

.bricks-wrapper .item-wrap .overlay {
	cursor: zoom-in;
}

.bricks-wrapper .item-wrap .overlay img {
	vertical-align: bottom;
	-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;
}

.bricks-wrapper .item-wrap .overlay::before {
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.bricks-wrapper .item-wrap .overlay::after {
	content: "+";
	font-family: sans-serif;
	font-size: 2.4rem;
	z-index: 1;
	display: block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	margin-left: -15px;
	margin-top: -15px;
	position: absolute;
	left: 50%;
	top: 50%;
	text-align: center;
	color: #FFFFFF;
	opacity: 0;
	visibility: hidden;
	-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;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

.bricks-wrapper .item-wrap .item-text {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3rem 0 0 3rem;
	margin-right: 5rem;
	z-index: 3;
}

.bricks-wrapper .item-wrap .item-text .folio-title {
	color: #FFFFFF;
	font-size: 2.4rem;
	line-height: normal;
}

.bricks-wrapper .item-wrap .item-text .folio-types {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.2rem;
	text-transform: uppercase;
    letter-spacing: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
}

.bricks-wrapper .item-wrap .details-link {
	display: block;
	background-color: #FFFFFF;
	height: 4.6rem;
	width: 4.6rem;
	line-height: 4.6rem;
	color: #000000;
	text-align: center;
	z-index: 2;
	position: absolute;
	top: 3.6rem;
	right: 0;
}

.bricks-wrapper .item-wrap .details-link i {
	font-size: 2rem;
	line-height: 4.6rem;
}

.bricks-wrapper .item-wrap .details-link:hover,
.bricks-wrapper .item-wrap .details-link:focus {
	background-color: #000000;
	color: #FFFFFF;
}

.bricks-wrapper .item-wrap .item-text,
.bricks-wrapper .item-wrap .details-link {
	opacity: 0;
    text-decoration: none;
	visibility: hidden;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-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;
}

.bricks-wrapper .item-wrap:hover .overlay::before {
	opacity: 1;
	visibility: visible;
}

.bricks-wrapper .item-wrap:hover .overlay::after {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.bricks-wrapper .item-wrap:hover .overlay img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.bricks-wrapper .item-wrap:hover .item-text,
.bricks-wrapper .item-wrap:hover .details-link {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

/* ------------------------------------------------------------------- 
 * Light Gallery Overrides - (_layout.css) 
 * ------------------------------------------------------------------- */
.lg-sub-html {
	padding: 12px 20% 15px;
}

.lg-sub-html a:hover,
.lg-sub-html a:focus {
	color: #FFFFFF;
}

@media only screen and (max-width:1024px) {
	.lg-sub-html {
		padding: 12px 15% 15px;
	}

}

@media only screen and (max-width:768px) {
	.lg-sub-html {
		padding: 12px 40px 15px;
	}

}

.lg-sub-html h4 {
	color: #FFFFFF;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	line-height: 1.333;
    font-style: normal;
    font-weight: 600;
}




.lg-sub-html p {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.8rem;
	line-height: normal;
	color: rgba(255, 255, 255, 0.6);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #7c3b08;
}

.lg-progress-bar .lg-progress {
	background-color: #FFFFFF;
}

#lg-counter {
	font-family: "Source Sans Pro", sans-serif;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- */
@media only screen and (max-width:600px) {
	#portfolio .bricks-wrapper .brick {
		float: none;
		width: 100%;
	}
    #hotel_portfolio .bricks-wrapper .brick {
		float: none;
		width: 100%;
	}
    

}


/* ===================================================================
 *  14. stats - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#stats {
	background-color: #111111;
	position: relative;
	padding: 6rem 0 6rem;
}

#stats .stat {
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.04);
}

#stats .stat:last-child {
	border: none;
}

#stats .stat .icon-part {
	color: #333;
}

#stats .stat .icon-part i {
	font-size: 6rem;
}

#stats .stat h5 {
	color: #FFFFFF;
	margin-top: 1.5rem;
	font-size: 1.4rem;
}

#stats .stat h3 {
	color: #7c3b08;
	font-size: 4.8rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	margin: 1.5rem 0 0 0;
	padding-top: 1.5rem;
	line-height: 1;
	font-family: "Source Sans Pro", sans-serif;
	position: relative;
	text-align: center;
}

#stats .stat h3::before {
	content: "";
	display: inline-block;
	width: 80px;
	height: 3px;
	background-color: rgba(5, 100, 139, 0.1);
	background-color: rgba(255, 255, 255, 0.1);
	text-align: center;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -40px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * stats
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	#stats .stat:nth-child(n) {
		border: none;
		padding-bottom: 2.4rem;
	}

}


/* ===================================================================
 *  15. contact - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#contact {
	background-color: #444444;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 10.2rem;
	position: relative;
    width: 100%;
}







#contact .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
}

#contact .section-intro h1 {
	color: white;
}

#contact .section-intro h4 {
    color: #fff;
}

#contact .section-intro lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.2em;
}


#contact .section-intro p.lead {
    color: #fff;
}


#contact_sono{
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 4em;
	margin-bottom: 2em;
	position: relative;
    width: 100%;
}



.sono-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #EBEBEB;
    width: 50%;
    background-image: url(https://www.colunex.com/en/images/sono_saude/colunex_dormir_melhor.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}



.produtos-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #EBEBEB;
    width: 50%;
    background-image: url(https://www.colunex.com/en/images/sono_saude/produtos_dormir.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}


.sonoleft-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #EBEBEB;
    width: 50%;
    background-image: url(https://www.colunex.com/en/images/sono_saude/colunex_dormir_melhor.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.sonoright-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #EBEBEB;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

    


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

#sono #fh5co-featured {
	padding: 0 !important;
}
    
#sono #fh5co-featured .row {
	padding: 0;
}

}

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

.sonoleft-bg {
    height: 0;
}

.sonoright-bg {
    height: 0;
}
}

#contact_sono form {
	margin-top: 0;
	margin-bottom: 3rem;
}

#contact_sono form .form-field {
	position: relative;
}

#contact_sono form .form-field input {
	width: 45%;
    display: initial;
    margin: 1em 0 0 2%;
    
}

#contact_sono form .form-field button {
	width: 45%;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 2.4rem;
    text-decoration: none;
    letter-spacing: 1.2rem;
    float: right;
    display: initial;
    height: 5.4rem;
    padding: 0 3rem;
    margin: 1em 2% 0 0;
}


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

#contact_sono form .form-field button {
    letter-spacing: 0.6rem;
    font-size: 2rem;
    padding: 0 1rem;
}

}

    
    
    
#contact_sono form .form-field:before,
#contact_sono form .form-field:after {
	content: "";
	display: table;
}

#contact_sono form .form-field:after {
	clear: both;
}

#contact_sono form .form-field label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #FFFFFF;
	background: #b11116;
}

#contact_sono form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #4C2405;
	content: "";
}






#contact_product {
	background-color: #fff;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
    width: 100%;
}



#contact_product .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	background-color: #fff;
}

#contact_product .section-intro h1 {
	color: white;
}

#contact_product .section-intro h4 {
    color: #fff;
}

#contact_product .section-intro lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.2em;
}


#contact_product .section-intro p.lead {
    color: #fff;
}


#info_product {
	background-color: #fff;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 6rem;
    z-index: 10;
	position: relative;
    width: 100%;
}



#info_product .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	background-color: #000000;
}

#info_product .section-intro h1 {
	color: white;
}

#info_product .section-intro h4 {
    color: #fff;
}

#info_product .section-intro lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.2em;
}


#info_product .section-intro p.lead {
    color: #fff;
}







#newsletter_product {
	background-color: #f5f1f1;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 4rem;
    padding-left: 6rem;
    padding-right: 6rem;
    z-index: 10;
	position: relative;
    width: 100%;
}



#newsletter_product .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	background-color: #000000;
}

#newsletter_product .section-intro h1 {
	color: white;
}

#newsletter_product .section-intro h4 {
    color: #fff;
}

#newsletter_product .section-intro lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.2em;
}


#newsletter_product .section-intro p.lead {
    color: #fff;
}





/* contact form */
.contact-form {
	max-width: 740px;
	margin-top: 4.2rem;
	position: relative;
}

.contact-form::-webkit-input-placeholder {
	color: #bca361; 
    opacity: 1;
}


.contact-form::-moz-placeholder {
	color: #bca361; 
    opacity: 1;
}


.contact-form:-moz-placeholder {
	color: #bca361; 
    opacity: 1;
}

.contact-form::-ms-input-placeholder {
	color: #bca361; 
    opacity: 1;
}


.contact-form[type="text"]{
	color: #bca361; 
    opacity: 1;
}



.contact-form .placeholder {
	color: #bca361; 
    opacity: 1;
}


input#formcolor::-webkit-input-placeholder {
	color: #bca361; 
    opacity: 1;
}
input#formcolor::-moz-placeholder { 
	color: #bca361; 
    opacity: 1;
}
input#formcolor:-moz-placeholder { 
	color: #bca361; 
    opacity: 1;
}
input#formcolor::-ms-input-placeholder { 
	color: #bca361; 
    opacity: 1;
}	/* IE10+ */

input[type="text"]{
	color: #bca361; 
    opacity: 1;
			}




textarea#formcolor::-webkit-input-placeholder {
	color: #bca361; 
    opacity: 1;
}
textarea#formcolor::-moz-placeholder { 
	color: #bca361; 
    opacity: 1;
}
textarea#formcolor:-moz-placeholder { 
	color: #bca361; 
    opacity: 1;
}
textarea#formcolor::-ms-input-placeholder { 
	color: #bca361; 
    opacity: 1;
}	/* IE10+ */

textarea[type="text"]{
	color: #bca361; 
    opacity: 1;
			}




#contact form {
	margin-top: 0;
	margin-bottom: 3rem;
}

#contact form .form-field {
	position: relative;
}

#contact form .form-field:before,
#contact form .form-field:after {
	content: "";
	display: table;
}

#contact form .form-field:after {
	clear: both;
}

#contact form .form-field label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #FFFFFF;
	background: #b11116;
}

#contact form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #4C2405;
	content: "";
}


#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"],
#contact textarea {
	width: 100%;
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid rgba(188, 163, 97, 0.6);
    color: #fff;
}

#contact input[type="text"],
#contact input[type="password"],
#contact input[type="email"] {
	height: 6.6rem;
	padding: 1.8rem 2rem;
}

#contact input[type="text"]:focus,
#contact input[type="password"]:focus,
#contact input[type="email"]:focus {
	border-color: #bca361;
	color: #FFFFFF;
}

#contact textarea {
	min-height: 20rem;
	padding: 1.8rem 2rem;
	font-size: 1em;
}

#contact textarea:focus {
	border-color: #4C2405;
	color: #FFFFFF;
}


#contact button.submitform {
    font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
	display: block;
	letter-spacing: 1.2rem;
    text-transform: uppercase;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
	margin: 3rem 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	color: #000;
    border: 1px solid;
}

#contact button.submitform:hover,
#contact button.submitform:focus {
	background-color: rgba(255, 255, 255, 1);
	color: #B61116;
}



#contact button.submitformlanding {
    font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 400;
    text-decoration: none;
	display: block;
	letter-spacing: 1.2rem;
    text-transform: uppercase;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
	margin: 3rem 0;
	width: 100%;
	background-color: #005274;
	color: #fff;
    border: 1px solid;
}

#contact button.submitformlanding:hover,
#contact button.submitformlanding:focus {
	background-color: rgba(255, 255, 255, 1);
	color: #B61116;
}








#contact_product form {
	margin-top: 0;
	margin-bottom: 3rem;
}

#contact_product form .form-field {
	position: relative;
}

#contact_product form .form-field:before,
#contact_product form .form-field:after {
	content: "";
	display: table;
}

#contact_product form .form-field:after {
	clear: both;
}

#contact_product form .form-field label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #FFFFFF;
	background: #b11116;
}

#contact_product form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #4C2405;
	content: "";
}


#contact_product input[type="text"],
#contact_product input[type="password"],
#contact_product input[type="email"],
#contact_product textarea {
	width: 100%;
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid rgba(188, 163, 97, 0.6);
    color: #fff;
}

#contact_product input[type="text"],
#contact_product input[type="password"],
#contact_product input[type="email"] {
	height: 6.6rem;
	padding: 1.8rem 2rem;
}

#contact_product input[type="text"]:focus,
#contact_product input[type="password"]:focus,
#contact_product input[type="email"]:focus {
	border-color: #bca361;
	color: #FFFFFF;
}

#contact_product textarea {
	min-height: 20rem;
	padding: 1.8rem 2rem;
	font-size: 1em;
}

#contact_product textarea:focus {
	border-color: #4C2405;
	color: #FFFFFF;
}


#contact_product button.submitform {
    font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
	display: block;
	letter-spacing: 1.2rem;
    text-transform: uppercase;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
	margin: 3rem 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	color: #000;
    border: 1px solid;
}

#contact_product button.submitform:hover,
#contact_product button.submitform:focus {
	background-color: rgba(255, 255, 255, 1);
	color: #B61116;
}








#info_product form {
	margin-top: 0;
	margin-bottom: 3rem;
}

#info_product form .form-field {
	position: relative;
}

#info_product form .form-field:before,
#info_product form .form-field:after {
	content: "";
	display: table;
}

#info_product form .form-field:after {
	clear: both;
}

#info_product form .form-field label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #FFFFFF;
	background: #b11116;
}

#info_product form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #4C2405;
	content: "";
}


#info_product input[type="text"],
#info_product input[type="password"],
#info_product input[type="email"],
#info_product textarea {
	width: 100%;
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid rgba(188, 163, 97, 0.6);
    color: #fff;
}

#info_product input[type="text"],
#info_product input[type="password"],
#info_product input[type="email"] {
	height: 6.6rem;
	padding: 1.8rem 2rem;
}

#info_product input[type="text"]:focus,
#info_product input[type="password"]:focus,
#info_product input[type="email"]:focus {
	border-color: #bca361;
	color: #FFFFFF;
}

#info_product textarea {
	min-height: 20rem;
	padding: 1.8rem 2rem;
	font-size: 1em;
}

#info_product textarea:focus {
	border-color: #4C2405;
	color: #FFFFFF;
}


#info_product button.submitform {
    font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
	display: block;
	letter-spacing: 1.2rem;
    text-transform: uppercase;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
	margin: 3rem 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	color: #000;
    border: 1px solid;
}

#info_product button.submitform:hover,
#info_product button.submitform:focus {
	background-color: rgba(255, 255, 255, 1);
	color: #B61116;
}










#newsletter_product form {
	margin-top: 0;
	margin-bottom: 3rem;
}

#newsletter_product form .form-field {
	position: relative;
}

#newsletter_product form .form-field:before,
#newsletter_product form .form-field:after {
	content: "";
	display: table;
}

#newsletter_product form .form-field:after {
	clear: both;
}

#newsletter_product form .form-field label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.1rem;
	line-height: 2.4rem;
	position: absolute;
	bottom: -1.2rem;
	right: .6rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding: 0 2rem;
	margin: 0;
	color: #FFFFFF;
	background: #b11116;
}

#newsletter_product form .form-field label::after {
	position: absolute;
	left: -5px;
	top: 50%;
	margin-top: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #4C2405;
	content: "";
}


#newsletter_product input[type="text"],
#newsletter_product input[type="password"],
#newsletter_product input[type="email"],
#newsletter_product textarea {
	width: 100%;
	margin-bottom: 0;
	border: none;
	border-bottom: 1px solid rgba(188, 163, 97, 0.6);
    color: #fff;
}

#newsletter_product input[type="text"],
#newsletter_product input[type="password"],
#newsletter_product input[type="email"] {
	height: 6.6rem;
	padding: 1.8rem 2rem;
}

#newsletter_product input[type="text"]:focus,
#newsletter_product input[type="password"]:focus,
#newsletter_product input[type="email"]:focus {
	border-color: #bca361;
	color: #FFFFFF;
}

#newsletter_product textarea {
	min-height: 20rem;
	padding: 1.8rem 2rem;
	font-size: 1em;
}

#newsletter_product textarea:focus {
	border-color: #4C2405;
	color: #FFFFFF;
}


#newsletter_product button.submitform {
    font-family: "Source Sans Pro", sans-serif;
	font-size: 2.4rem;
    font-weight: 300;
    text-decoration: none;
	display: block;
	letter-spacing: 1.2rem;
    text-transform: uppercase;
	height: 5.4rem;
	line-height: 5.4rem;
	padding: 0 3rem;
	margin: 3rem 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
    border: 1px solid;
}

#newsletter_product button.submitform:hover,
#newsletter_product button.submitform:focus {
	background-color: rgba(0, 0, 0, 1);
	color: #fff;
}





#message-warning,
#message-success {
	display: none;
	background: black;
	padding: 3rem;
	margin-bottom: 3.6rem;
	width: 100%;
}

#message-warning {
	color: #D32B2E;
}

#message-success {
	color: #7c3b08;
}

#message-warning i,
#message-success i {
	margin-right: 10px;
}

/* form loader */
#submit-loader {
	display: none;
	position: relative;
	left: 0;
	top: 1.8rem;
	width: 100%;
	text-align: center;
	margin-bottom: 4.2rem;
}

#submit-loader .text-loader {
	display: none;
	font-family: "Source Sans Pro", sans-serif;
	color: #FFFFFF;
	letter-spacing: .2rem;
	text-transform: uppercase;
}

.oldie #submit-loader .s-loader {
	display: none;
}

.oldie #submit-loader .text-loader {
	display: block;
}

.contact-info {
	margin: 4.8rem auto 0;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	text-align: center;
	position: relative;
}

.contact-info p {
	color: #555;
}

.contact-info .collapse {
	padding: 0;
}

.contact-info .icon {
	margin-bottom: 2.1rem;
}

.contact-info .icon i {
	font-size: 4.2rem;
	color: #FFFFFF;
}

.contact-info h5 {
	color: #FFFFFF;
}

/* --------------------------------------------------------------- 
 * loader animation - (_layout.scss)
 * --------------------------------------------------------------- */
.s-loader {
	margin: 1.2rem auto 3rem;
	width: 70px;
	text-align: center;
	-webkit-transform: translateX(0.45rem);
	-ms-transform: translateX(0.45rem);
	transform: translateX(0.45rem);
}

.s-loader > div {
	width: .6rem;
	height: .6rem;
	background-color: #FFFFFF;
	border-radius: 100%;
	display: inline-block;
	margin-right: .9rem;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.s-loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.s-loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

}

/* ===================================================================
 *  16. footer - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
footer {
	padding-bottom: 0rem;
	text-align: center;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.6rem;
	position: relative;
    background-color: #FFF;
}


footer h3 {
    font-family: "Playfair Display", Arial, serif;
    font-weight: 400;
    line-height: normal;
    font-size: 1.2em;
    color: #000;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    text-transform: none;
}
 

footer p {
    color: #000;
}


footer .container {
    max-width: none;
}

footer .footer-social {
	list-style: none;
	display: inline-block;
	margin-left: 0;
	margin-bottom: 9rem;
}

footer .footer-social li {
	display: inline-block;
	padding-left: 0;
	margin: 0 8px 1.5rem 8px;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.8rem;
}

footer .footer-social li a,
footer .footer-social li a:visited {
	color: rgba(255, 255, 255, 0.5);
}

footer .footer-social li a:hover,
footer .footer-social li a:focus {
	color: #FFFFFF;
}

footer .footer-social li:last-child {
	margin-right: 0;
}

#go-top {
	position: fixed;
	bottom: 42px;
	right: 30px;
	z-index: 700;
	display: none;
}

#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 63px;
	width: 60px;
	line-height: 63px;
	text-align: center;
	background-color: rgb(255, 255, 255);
	color: #000;
    opacity: 0.6;
	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;
}

#go-top a i {
	font-size: 21px;
	line-height: inherit;
}

#go-top a:visited {
	background: #fff;
	color: #000;
}

#go-top a:hover,
#go-top a:focus {
	background: #fff;
	color: #b11116;
    opacity: 1;
}

.conselhos-utilizacao h1 {
    width: 30px;
    height: 30px;
    text-align: center !important;
    font-size: 1.1em !important;
    margin-bottom: 10px !important;
    font-family: "adobe-caslon-pro", serif !important;
    float: none !important;
    display: inline-block;
    background-color: #bca361;
    color: white;
    border-radius: 30px;
    padding-top: 2px;
}
.conselhos-utilizacao h8 {
    margin-bottom: 50px !important;
}
.line-title-grey {
    background-color: #b2b3b3;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.line-dark-grey {
    background-color: #cccccc;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    float: left;
}
.line-clear-grey {
    background-color: #dcdcdc;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    float: left;
}
.line-content-left {
    width: 50%;
    float: left;
}
.line-content-right {
    width: 50%;
    float: left;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	#go-top {
		bottom: 0;
		right: 0;
	}

}



@media screen and (max-width: 768px) {
    
    #banner_pt_home {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #xenuloc   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #sleep {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #springs   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #action   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #topper   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #reflex   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    #memory   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    
    #latex   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
    
    
    #outros   {
		visibility: hidden;
		height: 0;
        padding: 0;
        margin: 0;
    position: absolute;
	}
	.new-product-category h4 {
	    font-size: 4rem !important;
    	line-height: 4rem !important;
    	margin-top: 30% !important;
	}
	.new-product-category h5 {
	    font-size: 1.5rem !important;
	    color: white !important;
	}
	.new-product-category p {
	    font-size: 1.2rem !important;
	    color: white !important;
	    letter-spacing: 0.8pt;
	}
	.new-product-category .button.button-secundary, a.button.button-secundary {
	    font-size: 1rem;
	}
	#header-menu-trigger .header-menu-icon {
		background-color: white;
	}
    
}
