/*

00 - BASE
01 - LAYOUT
02 - MODULES
03 - STATES
04 - THEME
05 - FONTS
06 - MISC

*/

/* 00 - BASE */
.jarallax {
    position: relative;
    z-index: 0;
}
body {
	color: #232323;
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	background: #ecedf2;
}
.wrapper {
	overflow: hidden;
}

/* 01 - LAYOUT */
.header-general {
	padding: 20px 10px;
	left: 0;
	position: fixed;
	transition: background .2s ease-in-out;
	width: 100%;
	z-index: 90;
}
.header-background {
	background: #fff;
}
.header-general img {
	max-height: 23px;
}
.hamburger-menu {
	position: relative;
	height: 23px;
	width: 27px;
	overflow: hidden;
	text-indent: -9999px;
	border: 0;
	background: transparent;
	padding: 0;
	outline: 0;
	cursor: pointer;
	float: right;
	right: 0px;
	z-index: 10;
}
.hamburger-menu span {
	top: 50%;
	margin-top: -2.5px;
	left: 0;
	right: 0;
	position: absolute;
	height: 3px;
	background: #000;
	display: block;
	transition: background .3s linear;
	-moz-transition: background .3s linear;
	-webkit-transition: background .3s linear;
	-webkit-backface-visibility: hidden;
}
.hamburger-menu span:before, .hamburger-menu span:after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background: #000;
	position: absolute;
}
.hamburger-menu span:before {
	transition: top .3s .3s, -webkit-transform .3s 0s;
	-moz-transition: top .3s .3s, -webkit-transform .3s 0s;
	-webkit-transition: top .3s .3s, -webkit-transform .3s 0s;
	top: -8px;
	-webkit-transform: rotate(0);
}
.hamburger-menu span:after {
	transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-moz-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	-webkit-transition: bottom .2s .3s, -webkit-transform .3s 0s;
	bottom: -8px;
	-webkit-transform: rotate(0);
}
.hamburger-menu.is-active span {
	background: transparent;
}
.hamburger-menu.is-active span:before {
	transition: top .3s 0s, transform .3s .3s;
	top: 0;
	background: #fff;
	transform: rotate(45deg);
}
.hamburger-menu.is-active span:after {
	transition: bottom .3s 0s, transform .3s .3s;
	bottom: 0;
	transform: rotate(-45deg);
	background: #fff;
}
.header-menu {
	right: -100%;
	border-radius: 0 0 0 15px;
	overflow: hidden;
	background: #42414d;
	position: fixed;
	top: 0;
	padding-top: 63px;
	z-index: -1;
	transition: all .5s ease-in-out;
}
.header-menu.is-visible {
	right: -10px;
}
.header-menu--nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-menu--nav li {
	display: block;
	margin: 0 -15px;
}
.header-menu--nav a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	border-top: 1px solid #4d4c59;
	transition: all .3s ease-in-out;
}
.header-menu--nav a:hover {
	background: #4d4c59;
	text-decoration: none;
}
.footer-nav {
	background: #4d4c59;
	padding: 15px 0;
}
.footer-nav--social {
	margin: 0;
	padding: 0;
	text-align: center;
}
.footer-nav--social li {
	display: inline-block;
	margin: 0 10px;
}
.footer-nav--social a {
	display: block;
	height: 20px;
	width: 20px;
	text-indent: -9999px;
}
.facebook {
	background: url('../img/facebook.png')no-repeat center;
	background-size: contain;
}
.twitter {
	background: url('../img/twitter.png')no-repeat center;
	background-size: contain;
}
.linkedin {
	background: url('../img/linkedin.png')no-repeat center;
	background-size: contain;
}
.instagram {
	background: url('../img/instagram.png')no-repeat center;
	background-size: contain;
}
.footer-general {
	background: #42414d;
	padding: 15px 0;
}
.footer-general img {
	max-height: 30px;
	display: inline-block;
}
.footer-general p {
	margin: 10px 0 0 0;
	color: #fff;
	font-size: 10px;
}

/* 04 - THEME */
/* banner */
/*.intro-message:before {
	background: #ecedf2;
	border-radius: 0 0 0 50px;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 15px);
	z-index: -1;
}*/
.intro-message {
	background: #fff;
	padding: 85px 10px 50px 10px;
	position: relative;
}
.intro-message h2 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0;
}
.intro-message strong {
	color: #f3123c;
}

/* video */
.video-thumbnail {
	padding: 15px 0;
}
.video-thumbnail--holder {
	position: relative;
}
.video-thumbnail--holder:before {
	background: url('../img/icon-play.svg')no-repeat center;
	background-size: contain;
	content: '';
	display: block;
	height: 25px;
	left: 50%;
	margin-left: -12.5px;
	position: absolute;
	top: 50%;
	transform: translateY(-12.5px);
	width: 25px;
}
.video-thumbnail--holder.remove-arrow:before {
	display: none;
}

.video-container {
	position: relative;
	overflow: hidden;
	padding-top: 56.25%;
	display: none;
}
.video-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.video-container.is-visible {
	display: block;
}

/* sobre */
.about-us {
	position: relative;
	padding: 40px 0 25px 0;
}
/*.about-us:before {
	background: #ecedf2;
	border-radius: 50px 0 0 0;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 15px);
	z-index: -1;
}*/
.about-us h2 {
	font-size: 50px;
	font-weight: bold;
	margin: 0;
}
.about-us strong {
	color: #f3123c;
}
.about-us--content {
	padding: 30px 20px 20px 30px;
}
.about-us--content p {
	font-size: 14px;
	line-height: 23px;
	margin: 0;
}

/* dna */
.our-dna {
	position: relative;
	padding-bottom: 30px;
}
.our-dna:before {
	background: #ecedf2;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 15px);
	z-index: -1;
}
/*.our-dna:after {
	background: #fff;
	border-radius: 0 0 50px 0;
	bottom: -50px;
	content: '';
	display: block;
	height: 50px;
	position: absolute;
	left: -35px;
	width: 50px;
	z-index: 0;
}*/
.our-dna--banner {
	margin-bottom: -15px;
}
.our-dna--title {
	margin: 0 -15px;
}
.our-dna h2 {
	font-size: 50px;
	font-weight: bold;
	margin: 0;
}
.our-dna strong {
	color: #f3123c;
}
.our-dna--content {
	overflow: hidden;
	padding: 20px 20px 0 20px;
}
.our-dna--content p {
	font-size: 14px;
	line-height: 23px;
	margin: 0;
}
.our-dna h3 {
	font-size: 88px;
	font-weight: bold;
	margin: 0;
}
.our-dna--logo-margin {
	margin-top: 58px;
	max-height: 21px;
	float: right;
}
.our-dna--logo-margin-2 {
	margin-top: 45px;
	max-height: 33px;
	float: right;
}

/* our mission */
.our-mission {
	background: #ecedf2 url('../img/background-mission.jpg')no-repeat bottom center;
	background-size: contain;
	padding: 50px 0 50% 0;
}
/*.our-mission--title {
	background: #f3123c;
	padding: 30px 30px 30px 0;
	width: calc(100% - 60px);
}*/
.our-mission--title h2 {
	color: #333;
	font-size: 40px;
	font-weight: bold;
	margin: 0;
	position: relative;
	z-index: 10;
}
.our-mission--title-arrow {
	border-radius: 0 100px 100px 0;
}
.our-mission--title-arrow:after {
	background: #f3123c url('../img/icon-arrow.svg')no-repeat center;
	background-size: 60px auto;
	content: '';
	height: 120px;
	position: absolute;
	right: 90px;
	top: 10%;
	transform: translateY(-30px);
	width: 120px;
	border-radius: 100%;
}
/*.our-mission--title-rocket {
	padding-left: 120px;
}*/
.our-mission--title-rocket:before {
	background: #f3123c url('../img/icon-rocket.svg')no-repeat center;
	background-size: 60px auto;
	content: '';
	height: 120px;
	position: absolute;
	right: 90px;
	top: 20%;
	transform: translateY(-30px);
	width: 120px;
	border-radius: 100%;
}
.our-mission--content {
	padding: 40px 10px 40px 20px;
}
.our-mission--content p {
	font-size: 13px;
	margin: 0;
}

/* values */
.our-values {
	padding: 30px 0 20px 0;
}
.our-values h2 {
	font-size: 35px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
.our-values strong {
	color: #f3123c;
}
.our-values--box {
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,.3);
	margin: 20px;
	padding: 20px;
}
.our-values--box img {
	height: 172px;
	width: auto;
}
.our-values--box p {
	font-size: 11px;
	margin: 15px 0 0 0;
}
.slick-list {
	padding:0 20% 0 20px;
}

/* brands */
.our-brands {
	padding: 0 0 30px 0;
}
.our-brands .slick-arrow {
	display: none!important;
}
.our-brands h2 {
	font-size: 35px;
	font-weight: bold;
	margin: 0 0 10px 0;
}
.our-brands strong {
	color: #f3123c;
}
.our-brands--content {
	padding: 20px;
}
.our-brands--box {
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,.3);
	margin: 20px;
	padding: 20px 40px;
}
.our-brands--box a:focus {
	outline: 0;
}
.our-brands--box img {
	max-height: 40px;
}
.divider {
	position: relative;
	text-align: center;
}
/*.divider:before {
	background: #000;
	content: '';
	display: block;
	height: 1px;
	margin-top: -.5px;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 0;
}*/
.divider-icon {
	background: #fff;
	display: none;
	padding: 10px;
	position: relative;
}

.divider-icon img {
	height: 20px;
}

/* clients */
.our-clients {
	padding: 30px 0;
	background: #fff;
}
.our-clients .slick-list {
	padding: 0;
}
.our-clients h2 {
	font-size: 35px;
	font-weight: bold;
	margin: 0 0 20px 0;
}
.our-clients strong {
	color: #f3123c;
}
.background-quotes {
	overflow: hidden;
	position: relative;
}
.background-quotes:before, .background-quotes:after {
	height: 60px;
	position: absolute;
	width: 60px;
}
.background-quotes:before {
	background: url('../img/icon-quote-1.png')no-repeat center;
	background-size: contain;
	left: 0;
	top: 0;
}
.background-quotes:after {
	background: url('../img/icon-quote-2.png')no-repeat center;
	background-size: contain;
	bottom: 0;
	right: 0;
}
.our-clients--box {
	font-size: 12px;
	padding: 50px 50px 50px 80px;
}
.our-clients--box p {
	margin: 0;
}
.our-clients--box strong {
	color: #232323;	
}
.slick-arrow {
	background-color: transparent;
	border: 0;
	height: 40px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: -20px;
	outline: 0;
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	width: 30px;
}
.slick-prev {
	background: url('../img/icon-arrow-left.png')no-repeat center;
	background-size: contain;
	left: 0;
}
.slick-next {
	background: url('../img/icon-arrow-right.png')no-repeat center;
	background-size: contain;
	right: 0;
}
.our-values .slick-arrow {
	display: none!important;
}
.our-brands--box-modal {
	padding: 20px;
}
.our-brands--box-modal p {
	margin: 0;
}
.carousel-modal {
	opacity: 0;
}
.carousel-modal img {
	margin: 0 0 20px 0;
}
.carousel-modal .slick-list {
	padding: 0;
}
.slick-dots {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
}
.slick-dotted.slick-slider
{
	margin-bottom: 30px;
}
.modal .slick-dotted.slick-slider {
	margin: 0;
}
.slick-dots
{
	position: absolute;
	bottom: -55px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.slick-dots li
{
	position: relative;

	display: inline-block;

	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;

	cursor: pointer;
}
.slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 20px;
	height: 20px;
	padding: 5px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-dots li button:before
{
	font-family: 'slick';
	font-size: 36px;
	line-height: 20px;

	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;

	content: '•';
	text-align: center;

	color: #fff;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: .75;
	color: #f3123c;
}
.modal-content {
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
@media screen and (min-width: 768px) {
	.header-menu {
		display: block;
		right: 0;
		position: relative;
		background: transparent;
		padding: 0;
		z-index: 12;
	}
	.header-menu--nav ul {
		margin: -1px 0 0 0;
		text-align: right;
	}
	.header-menu--nav li {
		display: inline-block;
		margin: 0 8px;
	}
	.header-menu--nav a {
		border: 0;
		color: #000;
		padding: 0;
		font-size: 10px;
		line-height: 9px;
	}
	.header-menu--nav a:hover {
		color: #f3123c;
		background: transparent;
	}
	
	.intro-message {
		padding: 200px 10px 230px 10px;
		margin-bottom: -70px;
	}
	.intro-message:before {
		width: calc(100% - 200px);
		border-radius: 0 0 0 150px;
	}
	.intro-message h2 {
		font-size: 52px;
	}

	.video-thumbnail img {
		position: relative;
		z-index: -10;
	}
	.row-sm {
		margin: 0 -15px;
	}

	.about-us:before {
		width: calc(100% - 200px);
		border-radius: 150px 0 0 0;
		top: -60px;
		height: calc(100% + 60px);
	}
	.about-us {
		padding: 80px 0 45px 0;
	}
	.about-us h2 {
		margin: 80px 0 120px 0;
	}
	.about-us h2, .our-dna h2, .our-values h2, .our-brands h2, .our-clients h2 {
		font-size: 65px;
	}
	.about-us--content p {
		font-size: 17px;
		line-height: 27px;
	}

	.our-dna {
		padding: 70px 0;
		background: #ecedf2 url('../img/background-dna.jpg')no-repeat center;
		background-attachment: fixed;
	}
	.our-dna--title {
		margin: 0;
	}
	.our-dna h3 {
		font-size: 120px;
	}
	.our-dna--content p {
		font-size: 16px;
	}
	.our-dna--content img {
		margin-top: 150px;
		float: none;
		width: 139px;
		max-height: none;
		margin-left: 65px;
	}
	.our-mission {
		padding-top: 120px;
		position: relative;
		background: #ecedf2;
		padding-bottom: 50px;
	}
/*	.our-mission:before {
		content: '';
		width: 200px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff;
	}*/
	.our-mission--title {
		height: 235px;
		width: 100%;
	}
	.our-mission--title-arrow {
		border-radius: 0 200px 200px 0;
	}
	.our-mission--title-arrow:after, .our-mission--title-rocket:before {
		width: 220px;
		height: 220px;
		/*transform:translateY(-50px);
		right: 70px;*/
		background-size: 120px auto;
	}

	.our-mission--content {
		padding-top: 0;
	}
	.our-mission--content h2 {
		font-weight: bold;
		font-size: 72px;
		margin-top: 0;
	}
	.our-mission--content h2 strong {
		display: block;
		color: #f3123c;
	}
	.our-mission--content p {
		font-size: 16px;
	}
	.our-mission--title-rocket {
		position: relative;
	}
	.our-mission--title-rocket {
		border-radius: 200px 0 0 200px;
	}
	/*.our-mission--title-rocket:after {
		content: '';
		width: 1200px;
		height: 100%;
		position: absolute;
		top: 0;
		right: -1200px;
		background: #f3123c;
	}*/
	.title-inverted {
		margin-top: -45px;
	}
	/*.title-inverted h2 strong {
		color: #fff;
	}*/

	.margin-top-sm {
		margin-top: 100px;
	}
	.our-values {
		background: #ecedf2;
		position: relative;
	}
/*	.our-values:before {
		content: '';
		width: 200px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff;
	}*/
	.our-values--box {
		box-shadow: none;
		outline: 0;
	}
	.our-values .slick-arrow {
		display: inline-block!important;
	}
	.our-values--box p {
		font-size: 15px;
	}
	.our-values .slick-slider {
		padding: 30px 80px 0 50px;
	}
	.our-values .slick-prev {
		background-image: url('../img/icon-arrow-left-2.png');
	}
	.our-values .slick-next {
		background-image: url('../img/icon-arrow-right-2.png');
	}

	.our-brands {
		background: #ecedf2;
		position: relative;
	}
	/*.our-brands:before {
		content: '';
		width: 200px;
		height: 35%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff;
		border-radius: 0 0 300px 0;
	}*/
	.our-brands strong {
		display: block;
	}
	.our-values--box img {
		height: 250px;
	}

	.our-brands--content p {
		font-size: 17px;
	}
	.our-brands--content img {
		max-height: 60px;
		margin: 20px 0;
	}
	.our-brands--content hr {
		border:0;
		border-top: 1px solid #000;
		margin: 40px 0 50px 0;
	}
	.divider, .our-clients {
		background: #fff;
	}
	.divider:before {
		width: 90%;
		left: 50%;
		margin-left: -45%;
	}
	.divider-icon {
		padding: 20px;
		background: #ecedf2;
	}
	.divider-icon img {
		height: 40px;
	}

	.our-clients h2 strong {
		display: block;
	}
	.background-quotes:before {
		background: url('../img/icon-quote-1-2.png')no-repeat center;
		background-size: contain;
	}
	.background-quotes:after {
		background: url('../img/icon-quote-2-2.png')no-repeat center;
		background-size: contain;
	}

	.background-quotes:before, .background-quotes:after {
		width: 100px;
		height: 100px;
	}
	.our-clients--box p {
		font-size: 17px;
	}
	.our-clients {
		padding: 60px;
	}
	.footer-nav--ul {
		background: url('../img/icone-wm@2x.png')no-repeat left center;
		padding: 0 0 0 50px;
		background-size: 35px;
		margin: 0;
	}
	.footer-nav--ul li {
		display: inline-block;
	}
	.footer-nav--ul a {
		color: #fff;
		padding: 10px 8px;
		display: block;
	}
	.footer-nav--social {
		margin-top: 10px;
		width: auto;
		float: right;
	}
	.footer-general p {
		margin-bottom: 10px;
	}
	.footer-general img {
		float: right;
	}
}

@media screen and (min-width: 992px) {
	.header-menu--nav a {
		font-size: 12px;
	}
	.header-menu--nav li {
		margin: 0 14px;
	}
	.footer-nav--ul a {
		padding: 10px 12px;
	}
	.intro-message:before, .about-us:before {
		width: calc(100% - 290px)
	}
	.our-mission:before, .our-brands:before, .our-values:before {
		width: 290px;
	}
	.our-clients {
		padding: 90px;
	}
	.header-general img {
		max-height: 45px;
		height: 45px;
	}
	.about-us .col-md-offset-1 .row {
		margin-left: 0;
	}
	.about-us--content {
		padding-left: 0;
	}
	.our-dna--title {
		margin: 0 0 0 11px;
	}
	.video-thumbnail--holder:before {
		height: 140px;
		width: 140px;
		margin-left: -70px;
		transform: translateY(-70px);
	}
	.our-clients h2 {
		margin-top: 20px;
	}
	.brands-logo {
		height: 45px;
	}
}

@media screen and (min-width: 1200px) {
	.about-us h2, .our-dna h2, .our-values h2, .our-brands h2, .our-clients h2 {
		font-size: 85px;
	}
	.our-dna--content img {
		margin-left: 95px;
	}
	.our-dna--content {
		padding-left: 100px;
	}
	.our-clients {
		padding: 120px 120px 120px 0;
	}
	.our-clients .col-sm-offset-1 .row {
		margin-left: 0;
	}
	.header-menu--nav ul {
		margin-top: 10px;
	}
	.header-menu--nav a {
		font-size: 16px;
		padding-left: 10px;
	}
}

@media screen and (min-width: 1440px) {
	.intro-message {
		padding: 230px 0 260px 0;
	}
	.our-mission:before, .our-brands:before, .our-values:before {
		width: 460px;
	}
	.intro-message:before,.about-us:before {
		width: calc(100% - 460px)
	}
	.our-values {
		padding-bottom: 100px;
	}
	.our-clients--box p {
		width: 70%;
		margin: 0 auto;
	}
	.intro-message h2 {
		font-size: 82px;
	}
	.our-dna--content {
		padding-left: 150px;
	}
	.our-dna--content img {
		margin-left: 130px;
	}
}

@media screen and (min-width: 1600px) {
	.our-clients {
		padding-right: 0;
	}
	.about-us .container-fluid, .our-brands .container-fluid, .footer-general .container-fluid, .footer-nav .container-fluid, .header-general .container-fluid, .intro-message .container-fluid, .our-mission .container-fluid, .our-values .container-fluid, .our-clients .container-fluid {
		max-width: 1600px;
	}
	.our-brands:before {
		border-radius: 0 0 300px 300px;
	}
	/*.our-mission--title-arrow:before {
		content: '';
		width: 800px;
		height: 100%;
		background: #f3123c;
		position: absolute;
		left: -800px;
		top: 0;
	}*/
	.our-values h2, .our-brands h2 {
		margin-left: 15px;
	}

	.our-dna--content img {
		margin-left: 160px;
	}
}