/* FONTS
----------------------------------------------------------------------------------------------------*/

html {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:62.50%;
    font-weight:500;
    color:#1a1a1a;
}

body {
	font-size:1.4rem;
}

h1, h2, h3 {
	font-weight:800;
	line-height:1.2;
	color:#000000;
}

h1, h2 {
	font-size:4rem;
	margin-bottom:1.8rem;
}

h3 {
	font-size:2.3rem;
	margin-bottom:1.2rem;
}

h3 span {
	font-size:1.4rem;
	font-weight:500;
	vertical-align: middle;
}

h4 {
	font-size:1.8rem;
	font-weight:700;
	line-height:1.2;
	color:#000000;
	margin-bottom:1.2rem;
}

p {
	font-size:1.4rem;
	line-height:1.5;
	margin-bottom:2.5rem;
}

p:last-child {
	margin-bottom:0;
}

p a,
p a:link,
p a:focus,
li a {
	color:#01AE96;
	text-decoration:underline;
}

strong {
	font-weight:700;
}

/* FONT OPTIONS */

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

/** FONTS RESPONSIVE CSS
*****************************************************************************************************/

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

	h1, h2 {
		font-size:3rem;
	}

}

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

	h1, h2 {
		font-size:2.5rem;
	}

	h3 {
		font-size:1.8rem;
	}

}

/* MAIN LAYOUT
----------------------------------------------------------------------------------------------------*/

body, html {
	height:100%;
}

body {
	background-color:#1a1a1a;
	margin-top:120px;
}

.container,
.content,
section {
	position:relative;
	display:block;
	width:100%;
}

.container,
section {
	background-color:#ffffff;
	z-index:10;
}

.content {
    margin:0 auto;
    max-width:1140px;
    padding:9rem 15px 11rem;
}

/* PAGE HEADER */

#page-header {
	position:relative;
	display:flex;
	justify-content:center;
	overflow:hidden;
	height:100%;
	max-height:350px;
}

#page-header img {
	width:auto;
	height:100%;
	object-fit:contain;
}

#page-header-title {
	position:absolute;
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items:center;
	width:100%;
	height:100%;
	padding:0 15px;
	top:0;
	left:0;
}

#page-header-title h1 {
	color:#ffffff;
	margin:0;
	text-align:center;
}

/* CONTENT - BIG PADDING */

.content.big-padding {
	padding-left:110px;
	padding-right:110px;
}

/* BACKGROUND OPTIONS */

/** MAIN LAYOUT RESPONSIVE CSS
*****************************************************************************************************/

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

	/* PAGE HEADER */

	#page-header {
		max-height:300px;
	}

}

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

	/* MAIN LAYOUT */

	body {
		margin-top:80px;
	}

	.content {
	    padding:6rem 15px;
	}

	/* CONTENT - BIG PADDING */

	.content.big-padding {
		padding-left:15px;
		padding-right:15px;
	}

	/* PAGE HEADER */

	#page-header {
		max-height:250px;
	}

}

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

	/* MAIN LAYOUT */

	.content {
	    padding:4rem 15px 6rem;
	}

	/* PAGE HEADER */

	#page-header {
		max-height:200px;
	}

}

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

	/* MAIN LAYOUT */

	body {
		margin-top:60px;
	}

}

/* GENERAL PURPOSE CLASSES
----------------------------------------------------------------------------------------------------*/

/* GENERAL CLASS */

a {
	display:inline-block;
}

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

.full-image {
	width:100%;
	height:auto;
}

.clear {
	display:block;
	width:100%;
	clear:both;
	float:none;
}

/* LINKS AND BUTTONS */

/* LINK BUTTON */

.link-btn {
	display:inline-block;
    font-size:1.6rem;
    font-weight:600;
    line-height:1.2;
    color:#01AE96;
    cursor:pointer;
	transition: all 200ms;
}

.enable-hover .link-btn:hover {
	color:#D50717;
}


/* LINK BUTTON + HOVER ICON */

.hover-icon img {
	display:inline-block;
	transition: all 200ms;
}

.hover-icon {
	display:inline-block;
	position:relative;
	width:15px;
	height:12px;
	margin-left:0.4rem;
}

.hover-icon img {
	position:absolute;
	top:0;
	left:0;
	display:block;
	transition: all 200ms;
}

.hover-icon img:first-child {
	opacity:1;
}

.hover-icon img:last-child {
	opacity:0;
}

.enable-hover a:hover .hover-icon img:first-child {
	opacity:0;
}

.enable-hover a:hover .hover-icon img:last-child {
	opacity:1;
}

/* POPUP BUTTONS (BACK TOP) */

.popup-btns {
	position:fixed;
	display:inline-block;
	right:calc((100vw - 1140px) / 2);
	z-index:20;
}

/* BACK TO TOP BUTTON */

#back-top {
	bottom:100px;
	width:40px;
	opacity:0;
	pointer-events: none;
	text-align:center;
	color:#000000;
	transition: all 200ms;
}

#back-top .hover-icon {
	width:40px;
	height:40px;
	background-color:#F2F2F2;
	margin:0 0 7px;
}

#back-top .hover-icon img {
	top: 14px;
    left: 14px;
}

#back-top.show {
	opacity:1;
	pointer-events: all;
}

.enable-hover #back-top:hover .hover-icon {
	background-color:#D50717;
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list {
	margin:0 0 5rem 0;
}

ul.bullet-list li {
	position:relative;
	font-size:1.4rem;
	line-height:1.8;
	padding-left:1.2rem;
}

ul.bullet-list li:before {
	position:absolute;
	left:0;
	top:10px;
	content: "\2022";
    display: inline-block;
    font-size: 2rem;
    line-height: 0;
    margin-right:0.3rem;
}

ul.bullet-list li.list-heading {
	font-weight:700;
	padding-left:0;
}

ul.bullet-list li.list-heading:before {
	display:none;
}

/* LIST STYLE - BULLET LIST - LARGE */

ul.bullet-list.large li {
	font-weight:700;
	padding-left:1.5rem;
}

ul.bullet-list.large li:before  {
	font-size: 3rem;
	vertical-align: sub;
}

/* FLEXBOX PRESETS */

/* FULL FLEXBOX WITH ELEMENTS ALIGNING EDGE TO EDGE */

.flexbox-full {
	width:1140px;
	margin-left:-15px;
}

/* LAYOUT - HALF FLEX */

.half-flex {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom:3rem;
}

.half-flex > div {
	flex:0 0 48.5%;
	max-width:48.5%;
	overflow:hidden;
}

.half-flex .image img {
	height:100%;
	width:auto;
	object-fit:contain;
}

/* LAYOUT - CENTER FLEX */

.center-flex {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	width:100%;
}

/* LAYOUT - CENTER FLEX - THREE COLUMNS */

.center-flex.three-columns {
	grid-gap:2.5%;
}

.center-flex.three-columns > a,
.center-flex.three-columns > div {
	flex: 0 0 31.6%;
    color: #000000;
    text-align: center;
    margin: 0 0 5rem;
    padding:0 3rem;
}

.center-flex.three-columns img {
	width:100%;
	height:auto;
	max-width:230px;
}

.center-flex.three-columns figcaption {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	height:9rem;
	font-size:1.8rem;
	font-weight:700;
}

/* LAYOUT - CENTER FLEX - FOUR COLUMNS */

.center-flex.four-columns {
	grid-gap:2.5%;
}

.center-flex.four-columns > a,
.center-flex.four-columns > div {
	flex: 0 0 23.1%;
    color: #000000;
    text-align: center;
    margin: 0 0 3rem;
}

.center-flex.four-columns img {
	width:100%;
	height:auto;
}

.center-flex.four-columns figcaption {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	height:9rem;
	font-size:1.8rem;
	font-weight:700;
}

/* LAYOUT - CENTER FLEX - FIVE COLUMNS */

.center-flex.five-columns {
	grid-gap:1%;
}

.center-flex.five-columns > a,
.center-flex.five-columns > div {
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items:center;
	border:1px solid #f2f2f2;
	flex: 0 0 19%;
    margin: 0 0 2rem;
    padding:4rem 1rem;
}

.center-flex.five-columns img {
	width:100%;
	height:auto;
}

/* GRID PRESETS */

/* GRID THREE */

.grid-three {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	grid-gap:3rem;
}

.grid-three > div,
.grid-three > a {
	position:relative;
	border:1px solid #E6E6E6;
	transition: all 200ms;
}

.grid-three img {
	width:100%;
	height:auto;
}

.grid-three figcaption {
	color:#000000;
	padding:2rem 3rem 7rem;
	line-height:1.4;
}

.grid-three .link-btn {
	position:absolute;
	right:2rem;
	bottom:2.5rem;
}

.enable-hover .grid-three > a:hover {
	border:1px solid #D50717;
} 

.enable-hover .grid-three > a:hover .link-btn {
	color:#D50717;
} 

/* GRID THREE - PLAIN VERSION */

.grid-three.plain > div,
.grid-three.plain > a {
	border:none;
}

.grid-three.plain img {
	margin-bottom:1.5rem;
}

.grid-three.plain figcaption {
	font-weight:700;
	text-align:center;
	padding:0 1rem;
}

/* GRID FOUR */

.grid-four {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap:1.5rem;
}

.grid-four img {
	width:100%;
	height:auto;
}

.grid-four figcaption {
	text-align:center;
	line-height:1.4;
	padding: 1rem 1.5rem 2rem;
}

h4 + .grid-four {
	margin-top:3rem;
}

/* GRID SIX */

.grid-six {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	grid-gap:1rem;
	padding-bottom:5.5rem;
	margin-bottom:5rem;
	border-bottom:1px solid #CCCCCC;
}

.grid-six img {
	width:100%;
	height:auto;
}

.grid-six:last-child {
	padding-bottom:0;
	margin-bottom:0;
	border:none;
}

.grid-six > img {
	margin-bottom:1rem;
}

/* SINGLE COLUMN GALLERY */

.single-column-gallery div {
	text-align:center;
}

.single-column-gallery img {
	border:2px solid #F2F2F2;
	margin-bottom:1.5rem;
	max-width:700px;
}

.single-column-gallery figcaption {
	line-height:1.4;
}

/** GENERAL PURPOSE CLASSES RESPONSIVE CSS
*****************************************************************************************************/

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

	/* FLEXBOX PRESETS */

	/* FULL FLEXBOX WITH ELEMENTS ALIGNING EDGE TO EDGE */

	.flexbox-full {
		width: 102.6%;
    	margin-left: -1.3%;
	}

	/* POPUP BUTTONS (BACK TOP / WHATSAPP) */

	.popup-btns {
		right:1.5rem;
	}

}

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

	/* LAYOUT - CENTER FLEX - FIVE COLUMNS */

	.center-flex.five-columns {
		grid-gap:2%;
	}

	.center-flex.five-columns > a,
	.center-flex.five-columns > div {
		flex: 0 0 24%;
	}

}

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

	/* POPUP BUTTONS (BACK TOP / WHATSAPP) */

	#back-top {
		display:none;
	}

	/* LAYOUT - HALF FLEX */

	.half-flex > div {
		flex:0 0 100%;
		max-width:100%;
	}

	.half-flex > div:first-child {
		margin-bottom:4rem;
	}

	/* LAYOUT - CENTER FLEX */

	.center-flex > a,
	.center-flex > div {
		flex: 0 0 48.7%;
		padding:0 10%;
	}

	/* LAYOUT - CENTER FLEX - THREE COLUMNS */

	.center-flex.three-columns > a,
	.center-flex.three-columns > div {
		flex: 0 0 48.7%;
	}

	/* LAYOUT - CENTER FLEX - FIVE COLUMNS */

	.center-flex.five-columns {
		grid-gap:2%;
	}

	.center-flex.five-columns > a,
	.center-flex.five-columns > div {
		flex: 0 0 32%;
	}


	/* SINGLE COLUMN GALLERY */

	.single-column-gallery img {
		width:100%;
		height:auto;
		max-width:inherit;
	}

}

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

	/* FLEXBOX PRESETS */

	/* LAYOUT - CENTER FLEX */

	.center-flex {
		grid-gap:0;
	}

	.center-flex > a,
	.center-flex > div {
		flex: 0 0 100%;
	}

	/* LAYOUT - CENTER FLEX - THREE COLUMNS */

	.center-flex.three-columns > a,
	.center-flex.three-columns > div {
		flex: 0 0 100%;
		padding:0 3rem;
	}

	/* LAYOUT - CENTER FLEX - FIVE COLUMNS */

	.center-flex.five-columns > a,
	.center-flex.five-columns > div {
		flex: 0 0 49%;
		margin-bottom:1rem;
	}

	/* FULL FLEXBOX WITH ELEMENTS ALIGNING EDGE TO EDGE */

	.flexbox-full {
		width:100%;
		margin-left:0;
	}

}


/* NICESCROLL DISABLE CUSTOM SCROLLBAR (UNLESS YOU WANT IT)(CURRENTLY DISABLED) */
/*
.nicescroll-rails {
	display:none !important;
}
*/

/* HEADER
----------------------------------------------------------------------------------------------------*/

#header {
    position:fixed;
    max-width:100vw;
    top:0;
    left:0;
    background-color:#ffffff;
    border-bottom:2px solid #D50717;
    z-index:101;
    transition:background-color, opacity 200ms;
}

#header .content {
    padding:0 15px;
}

/* HEADER PARTS */

#header-main,
#header-left,
#header-right {
	display: flex;
}

#header-left,
#header-right {
	flex-direction:column;
	justify-content: center;
}

#header-main {
	width:100%;
	height:120px;
	margin:0 auto;
	max-width:1140px;
	justify-content: space-between;
  	transition: all 200ms;
}

/* HEADER LOGO */

#header #logo {
	display:flex;
	flex-direction:column;
	max-width:250px;
	margin-right:3rem;
	align-items: flex-start;
	overflow:hidden;
	height:auto;
	transition: height 200ms;
    z-index:10;
}

#header #logo img:first-child {
	width:100%;
	height:auto;
	margin-bottom:5.5px;
}

#header #logo img:last-child {
	align-self: end;
}
    
/* HEADER NAVIGATION */

#header-navigation {
	display: flex;
  	flex-direction: column;
  	justify-content: center;
	transition: all 200ms;
}

/* HEADER TOP LINKS */

#header-top-links {
	display: flex;
	justify-content:flex-end;
	margin-bottom:1rem;
}

#header-top-links a,
#header-top-links .icon,
#header-top-links a:hover img {
	transition: all 200ms;
}

#header-top-links a {
	font-size:1.4rem;
	font-weight:500;
	background-color:#F2F2F2;
	color:#01AE96;
	padding:0.5rem 1rem;
	border-radius: 2rem;
	margin-right:0.8rem;
}

#header-top-links a:last-child {
	margin:0;
}

#header-top-links .icon {
	display:inline-block;
	width:22px;
	height:22px;
	border-radius:100%;
	border:2px solid #01AE96;
	text-align:center;
	line-height: 1.2;
}

.enable-hover #header-top-links a:hover {
	background-color:#D50717;
	color:#ffffff;
}

.enable-hover #header-top-links a:hover .icon {
	border-color:#ffffff;
}

.enable-hover #header-top-links a:hover img {
	filter: hue-rotate(77deg) brightness(200%) contrast(101%);
}

/* HEADER NAVIGATION LINKS */

ul#main-navigation {
	display:flex;
	flex-wrap:wrap;
	justify-content: flex-end;
	width:100%;
}

ul#main-navigation > li {
	display:inline-block;
	position:relative;
	transition: all 200ms;
	margin:0.3rem 0 0.3rem 2rem;
}

ul#main-navigation > li:first-child {
	margin-left:0;
}

ul#main-navigation a {
	position:relative;
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	outline:none;
	transition: all 200ms;
}

ul#main-navigation > li.dropdown > a:after {
	content:"";
	display:inline-block;
	width:4.5px;
	height:4.5px;
	margin:0 0 4px 5px;
	border-right:1px solid #000000;
	border-bottom:1px solid #000000;
	transform: rotate(45deg);
	transition: all 200ms;
}

ul#main-navigation > li > a {
	display:inline-block;
	font-size:1.4rem;
	font-weight:700;
	color:#000000;
}

ul#main-navigation > li.active,
ul#main-navigation > li > a.current,
ul#main-navigation > li > a.active,
.enable-hover ul#main-navigation > li > a:hover {
    color:#D50717;
}

.enable-hover ul#main-navigation > li.dropdown > a:hover:after,
ul#main-navigation > li.dropdown > a.current:after, 
ul#main-navigation > li.dropdown > a.active:after {
	border-color:#D50717;
}


/* HEADER SUBNAVIGATION */

ul.header-subnavigation {
	position:absolute;
	display:table;
	top:30px;
	left:-25px;
	background-color:#F2F2F2;
	z-index:10;
	transform: scaleY(0);
	transform-origin: top;
	transition: all 200ms;
}

ul.header-subnavigation > li {
	border-bottom:1px solid #E6E6E6;
}

ul.header-subnavigation > li:last-child {
	border:none;
}

ul.header-subnavigation > li > a {
	display:block;
	padding:1.2rem 2.5rem;
	font-size:1.4rem;
	color:#000000;
	font-weight:500;
	white-space:nowrap;
	transition: all 200ms;
}

ul.header-subnavigation.expand {
	transform: scaleY(1);
}

ul.header-subnavigation li a.current,
.enable-hover ul.header-subnavigation li a:hover {
	color:#D50717;
	background-color:#ffffff;
}

ul.header-subnavigation.hide {
	max-height:inherit !important;
}

/* HEADER EXPAND BUTTON FOR MOBILE */

a#expand-nav {
	position:absolute;
	top:20px;
	right:15px;
	display:none;
	width:40px;
	height:40px;
	padding:13px 11px;
	cursor:pointer;
	background:#000000;
    border-radius: 4px;
	z-index:100;
	transition: all 200ms;
}

a#expand-nav div {
	display: flex;
	flex-direction: column;
  	justify-content: space-between;
	width:18px;
	height:14px;
}

a#expand-nav div span {
	display:block;
	width:18px;
	height:2px;
	background:#ffffff;
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header.mobile-nav-active a#expand-nav {
	background-color:#D50717;
}

a#expand-nav.active div span:first-child,
#header.mobile-nav-active a#expand-nav div span:first-child {
	transform: translateX(-2px) rotate(-45deg) scaleX(1.1);
	right:10px;
}

a#expand-nav.active div span:nth-child(2),
#header.mobile-nav-active a#expand-nav div span:nth-child(2) {
	opacity:0;
}

a#expand-nav.active div span:last-child,
#header.mobile-nav-active a#expand-nav div span:last-child {
	transform: translateX(-2px) translateY(2px) rotate(45deg) scaleX(1.1);
}


/* HEADER COMPACT (ON ONSCROLL) */

#header.compact:not(.mobile-nav-active) #header-main {
    height: 80px;
}

/* HEADER COMPACT LOGO */

#header.compact:not(.mobile-nav-active) a#logo img:first-child {
	margin:0;
}

#header.compact:not(.mobile-nav-active) a#logo img:last-child {
	display:none;
}

/* HEADER COMPACT TOP LINKS */

#header.compact #header-top-links {
	display:none;
}


/* HEADER / HEADER NAVIGATION / HEADER SUB NAVIGATION RESPONSIVE CSS
**************************************************************************************/

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

	/* HEADER TOP LINKS */

	#header-top-links {
		margin-bottom:0.5rem;
	}

	/* HEADER NAVIGATION LINKS */

	ul#main-navigation > li {
		margin: 0.3rem 0 0.3rem 1.5rem;
	}

}

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


	/* HEADER NAVIGATION LINKS */

	ul#main-navigation > li > a {
		padding:0 0.5rem;
	}

}

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

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		display:block;
	}

	/* HEADER TOP LINKS */

	#header-top-links {
		display:none;
	}

	/* HEADER PARTS */

	#header-main {
		height:80px;
	}

	/* HEADER LOGO */

	#header #logo img:first-child {
		margin:0;
	}

	#header #logo img:last-child {
		display:none;
	}

	/* HEADER NAVIGATION */

	#header-navigation {
		position:fixed;
		top:0;
		left:0;
		height:100vh;
		width:100vw;
		background:#222222;
		padding:0;
		margin:0;
		pointer-events: none;
		opacity:0;
		overflow:scroll;
		z-index:10;
	}

	ul#main-navigation {
	    flex-direction: column;
	}

	ul#main-navigation > li {
		display:block;
		margin:0;
		text-align:center;
		overflow:hidden;
		padding:0;
	}

	ul#main-navigation a {
		white-space:normal;
		border:none;
	}

	ul#main-navigation > li > a {
		display:inline-block;
		font-size:2rem;
		font-weight:600;
		line-height:40px;
		color:#ffffff;
		padding:0 1.5rem
	}

	ul#main-navigation > li:first-child > a {
		padding-left:1.5rem
	}

	ul#main-navigation > li:last-child > a {
		padding-right:1.5rem
	}

	ul#main-navigation > li > a:before {
		display:none;
	}

	ul#main-navigation > li.dropdown > a:after {
	    display:none;
	}

	ul#main-navigation > li.active,
	ul#main-navigation > li > a.current,
	ul#main-navigation > li > a.active,
	.enable-hover ul#main-navigation > li > a:hover {
		color:#E2C700;
	}

	ul#main-navigation li.limit-height {
		max-height:40px !important;
	}

	/* HEADER NAVIGATION - MOBILE NAV ACTIVE */

	#header.mobile-nav-active #header-navigation {
		opacity:1;
		pointer-events: inherit;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation {
		position:relative;
		display:block;
		border:none;
		top:0;
		left:0;
		width:100%;
		background:none;
		padding:0;
		overflow:hidden;
		transform: none;
	}

	ul.header-subnavigation li {
		border:none;
	}

	ul.header-subnavigation > li > a {
	    padding: 0 1.5rem;
	}

	ul.header-subnavigation li:first-child {
		padding-top:1rem;
	}

	ul.header-subnavigation li:last-child {
		padding-bottom:1.5rem;
	}

	ul.header-subnavigation li a {
		position:relative;
		display:inline-block;
		border:none;
		font-size:1.6rem;
		font-weight:500;
		line-height:3rem;
		color:#ffffff;
	}

	ul.header-subnavigation li:first-child a {
		border-top:none;
	}

	ul.header-subnavigation li:last-child a {
		border-bottom:none;
	}

	ul.header-subnavigation > li > a.current,
	ul.header-subnavigation > li > a.active,
	.enable-hover ul.header-subnavigation > li > a:hover {
	    color:#E2C700;
	    background-color:transparent;
	}

}

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

	/* HEADER PARTS */

	#header-main {
		height:60px;
	}

	/* HEADER LOGO */

	#header #logo {
		max-width:180px;
	}

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		top:10px;
	}

	/* HEADER COMPACT (ON ONSCROLL) */

	#header.compact:not(.mobile-nav-active) #header-main {
	    height: 60px;
	}

}

/* PLUGIN / EXTENSIONS CSS OVERRIDES
----------------------------------------------------------------------------------------------------*/

/* FANCYBOX OVERRIDES */

.fancybox-slide--image {
	padding: 30px 0 50px;
}

.fancybox-caption {
    padding: 75px 44px 15px;
}

/* SLICK SLIDER OVERRIDES */

.slick-slide img {
	width:auto;
	height:100%;
	object-fit: contain;
	opacity:0;
}

.slick-initialized .slick-slide img {
	opacity:1;
}

.slick-next,
.slick-prev {
	top:52%;
	width:50px;
	height:50px;
	overflow:hidden;
	border-radius:100%;
	border:1px solid #999999;
	transition:all 200ms
}

.enable-hover .slick-next:hover,
.enable-hover .slick-prev:hover {
	background-color:#000000;
	border-color:#000000;
}

.slick-next:before,
.slick-prev:before {
	display:block;
	content: "";
	opacity:1;
	width:15px;
	height:15px;
	border-top:1px solid #999999;
	transition: border-color 200ms;
}

.slick-next:before {
	border-right:1px solid #999999;
	transform: rotate(45deg);
	margin-left:12px;
}

.slick-prev:before {
	border-left:1px solid #999999;
	transform: rotate(-45deg);
	margin-left:20px;
}

.enable-hover .slick-next:hover:before,
.enable-hover .slick-prev:hover:before {
	border-color:#ffffff;
}

.slick-next {
	right:-80px;
}

.slick-prev {
	left:-80px;
}

.slick-dots {
	height:10px;
}

.slick-dots li {
	margin:0 0.4rem;
	vertical-align:top;
}

.slick-dots li button {
	background-color:#ffffff;
	border: none;
}

.slick-dots li.slick-active button {
	background-color: #D50717;
}

/* SLICK SLIDER CUSTOM CSS */

.slide-caption {
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	max-width:1140px;
	padding:0 15px;
	margin:0 auto;
	text-align:center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}

.slide-caption h1,
.slide-caption h2 {
	display:block;
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:4rem;
	font-weight:800;
	text-align:center;
	line-height:1.2;
	color:#ffffff;
	margin:0 auto;
}

/** PLUGIN / EXTENSIONS CSS OVERRIDES
*****************************************************************************************************/

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

	/* SLICK SLIDER OVERRIDES */

	.slick-next {
		right:-50px;
	}

	.slick-prev {
		left:-50px;
	}

}

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

	/* SLICK SLIDER OVERRIDES */

	.slick-next,
	.slick-prev {
		width:45px;
		height:45px;
		border-radius:unset;
		border:none;
		background-color:#000000;
	}

	.slick-next {
		right:9px;
	}

	.slick-prev {
		left:9px;
	}

	.slick-next:before,
	.slick-prev:before {
		width:15px;
		height:15px;
		border-top: 3px solid #ffffff;
	}

	.slick-next:before {
	    margin-left: 10px;
	    border-right: 3px solid #ffffff;
	}

	.slick-prev:before {
	    margin-left: 20px;
	    border-left: 3px solid #ffffff;
	}

}

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

/* SLICK SLIDER CUSTOM CSS */

	.slide-caption h1,
	.slide-caption h2 {
		font-size:3.5rem;
	}

}

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

/* SLICK SLIDER CUSTOM CSS */

	.slide-caption h1,
	.slide-caption h2 {
		font-size:3rem;
	}

}

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

	/* SLICK SLIDER CUSTOM CSS */

	.slide-caption h1,
	.slide-caption h2 {
		font-size:2.5rem;
	}

}

/* SECTIONS - HOME
----------------------------------------------------------------------------------------------------*/

/* HOME SLIDER */

#home-slider .slick-slide {
	position:relative;
}

#home-slider .slick-slide img {
	width:calc(600px * 3.2);
	min-height:600px;
}

#home-slider .slick-dots {
	bottom:4rem;
}

/* HOME ABOUT US */

#home-about-us p:last-of-type {
	margin-bottom:3.5rem;
}

/* HOME ABOUT US - FLEX */

#home-about-us-flex {
	display:flex;
	flex-wrap: wrap;
	margin-bottom:3rem;
}

#home-about-us-flex > div:first-child {
	flex: 0 0 65%;
	padding-right:4%;
	border-right:1px solid #E6E6E6;
}

#home-about-us-flex > div:last-child {
	flex: 0 0 35%;
	padding-left:5%;
}

#home-about-us-flex > div:last-child > figure {
	display:block;
	max-width:270px;
	text-align:center;
}

#home-about-us-flex > div:last-child > figure > figcaption {
	line-height:1.4;
}

#home-about-us-flex > div:last-child > figure > img {
	margin-bottom:3.5rem;
}

/* SECTIONS - HOME RESPONSIVE CSS
**************************************************************************************/

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

	/* HOME SLIDER */

	#home-slider .slick-slide img {
		width:calc(500px * 3.2);
		min-height:500px;
		max-height:500px;
	}

}

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

	/* HOME SLIDER */

	#home-slider .slick-slide img {
		width:calc(400px * 3.2);
		min-height:400px;
		max-height:400px;
	}

	/* HOME ABOUT US */

	#home-about-us .content {
		padding-left:15px;
		padding-right:15px;
	}

	/* HOME ABOUT US - FLEX */

	#home-about-us-flex > div:last-child {
		padding-left:2%;
	}

}

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

	/* HOME SLIDER */

	#home-slider .slick-slide img {
		width:calc(300px * 3.2);
		min-height:300px;
		max-height:300px;
	}

	/* HOME ABOUT US - FLEX */

	#home-about-us-flex > div:first-child {
		flex: 0 0 100%;
		padding:0 0 3rem;
		border-right:none;
		margin-bottom:3rem;
		text-align:center;
		border-bottom:1px solid #E6E6E6;
	}

	#home-about-us-flex > div:last-child {
		flex: 0 0 100%;
		padding-left:0;
	}

	#home-about-us-flex > div:last-child > figure {
		max-width:inherit;
	}

}

/* SECTIONS - ABOUT US - COMPANY OVERVIEW
----------------------------------------------------------------------------------------------------*/

#company-overview  {
	text-align:center;
}

#company-overview .content {
	padding-bottom:14rem;
}

/* SECTIONS - PRODUCT + PARTNERS PAGES
----------------------------------------------------------------------------------------------------*/

#single-content .half-flex h4 {
	margin-bottom:0.5rem;
}

#single-content .partner-logo {
	margin-bottom:2rem;
}

#single-content ul.bullet-list:last-of-type {
	margin-bottom:0;
}

/* SLIDER */

#single-content .product-slider,
#single-content .partners-slider {
	padding-bottom:2.5rem;
}

#single-content .slick-dots {
	bottom:0;
}

#single-content .slick-dots li button {
	background-color:#f2f2f2;
}

#single-content .slick-dots li.slick-active button {
	background-color: #D50717;
}

/* SECTIONS - PRODUCT PAGES RESPONSIVE CSS
----------------------------------------------------------------------------------------------------*/

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



}

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

	#company-overview .content {
		padding-bottom:9rem;
	}

}

/* CONTENT - ERROR PAGE
----------------------------------------------------------------------------------------------------*/

#error-content {
	text-align:center;
}

/* SECTIONS - CONTACT US
----------------------------------------------------------------------------------------------------*/

/* GOOGLE MAPS */

#map-canvas {
	height:600px;
}

/* CONTENT - FORMS
----------------------------------------------------------------------------------------------------*/

.form-container,
.form-success-message.hide {
	display:none;
}

#newsletter-form-success-message p,
#enquiry-form-success-message p {
	text-align: center;
    background-color: #49c58c;
    padding: 15px;
    color: #ffffff;
    border-radius: 4px;
}

#enquiry-container {
	display:block;
}

#enquiry-form-success-message p {
	text-align: center;
    background-color: #49c58c;
    padding: 15px;
    color: #ffffff;
    border-radius: 4px;
}

.form {
	position:relative;
	display:block;
	padding:0;
}

.form.hide {
	display:none;
}

.form-row {
	margin-bottom:25px;
	justify-content: flex-start;
}

.form .field,
.form .field > div {
	display:flex;
	flex-wrap:wrap;
}

.form .field {
	position:relative;
	text-align:left;
	background:none;
	margin-bottom:1rem;
	clear:both;
}

.form .field:last-child {
	margin-bottom:0;
}

.form.contact-form .field {
	margin-bottom:10px;
}

.form #message.field {
	margin-bottom:17px;
}

.form #captcha {
	overflow:hidden;
	margin:2.5rem 0 2rem;
}

.form.contact-form #captcha {
	margin:20px 0 15px;
}

.form label,
.form-control,
.form .button {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:1.4rem;
	font-weight:500;
}

.form-control,
.form .button {
	height:40px;
	line-height:40px;
}

.form label {
	font-weight:700;
	color:#666666;
	line-height:2;
	margin-right:1rem;
}

.form-control {
	display:block;
	border-radius:0;
	padding:0 1.2rem;
	width:100%;
	border:none;
	border-bottom: 1px solid #000000;
	background-color: transparent;
	background-clip: padding-box;
	outline:none;
	color:#000000;
}

.form .flex-row {
	justify-content: space-between;
	width:100%;
}

.form .flex-row.mobile-fields > div:first-child {
	flex: 0 0 30%;
}

.form .flex-row.mobile-fields > div:last-child {
	flex: 0 0 66%;
}

.form div#spamtrap {
	visibility:hidden
}

textarea.form-control {
	padding:1rem 1.2rem;
	line-height:1.2;
	height:180px;
} 

select.form-control {
	padding: 0 0.9rem;
	height:40px;
}

.single-column select.form-control {
	width:100%;
}

/* CHANGE DEFAULT CHROME AUTOCOMPLETE TEXT COLOR */

input:-webkit-autofill {
    -webkit-text-fill-color: #333333;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	border-color: #504039;
	outline: 0;
}

.form-control::-webkit-input-placeholder {
	color: #333333;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #333333;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #333333;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #333333;
	opacity: 1;
}

.form-control::placeholder {
	color: #333333;
	opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:focus::-ms-value {
	color: #333333;
	background-color: #fff;
}

/* FORM ERROR */

.form #enquiry-form-server-errors {
	position:relative;
	color:#f00;
	visibility:visible;
}

.form #ajax-form-server-errors.error div {
	padding:0 0 20px;
}

.form .error,
.form .error div,
.form .error span {
	position:relative;
	display:block;
	width:100%;
	clear:both;
	font-size:1rem;
	line-height:1.4;
	padding:0.5rem 3px 0;
	margin:0;
    color:#f00;
    clear:both;
}

.form #ajax-form-server-errors span:last-of-type {
	margin-bottom:20px;
}

.form .error:before {
	position:absolute;
	top:0;
	left:0;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right:10px solid blue; 
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .button {
	position:relative;
    background:#f2f2f2 url(../images/svg/arrow.svg) no-repeat 75px center;
    font-size:1.6rem;
    font-weight:700;
    text-align:center;
    padding:0 5rem 0 2rem;
    border:none;
    border-radius:5px;
    height:50px;
    width:auto;
    display:inline-block;
    color:#01AE96;
	cursor:pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: all 200ms;
}

.form .button:hover {
	background:#f2f2f2 url(../images/svg/arrow-red.svg) no-repeat 75px center;
	color:#D50717;
}

.g-recaptcha {
	position:relative;
	width: 290px;
	overflow:hidden;
	margin:0;
}

.g-recaptcha:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	border: 1px solid #d3d3d3;
	pointer-events: none;
	height:76px;
	width:290px;
	border-radius:2px;
	z-index:10;
}

.g-recaptcha > div {
	margin-left:-5px;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled],
.form input[type=text]:disabled,
.form input[type=text][disabled=disabled],
.form text:disabled,
.form text[disabled=disabled] {
	background:#cccccc url(../images/svg/cross.svg) no-repeat 75px center !important;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled] {
	color:#999999 !important;
}

/* CHANGE DEFAULT PLACEHOLDER TEXT COLOR FOR ENQUIRY FORM */

.form .form-control::-webkit-input-placeholder {
	color: #504039;
	opacity: 1;
}

.form .form-control::-moz-placeholder {
	color: #504039;
	opacity: 1;
}

.form .form-control:-ms-input-placeholder {
	color: #504039;
	opacity: 1;
}

.form .form-control::-ms-input-placeholder {
	color: #504039;
	opacity: 1;
}

.form .form-control::placeholder {
	color: #504039;
	opacity: 1;
}


/* FORM IN FANCYBOX (CLASS NAME IS SET TO .popup-form) */

.popup-form .fancybox-slide--html {
	padding:0;
}

.popup-form .form-container {
	background:none;
}

.popup-form .form-wrapper {
    padding:6rem 7rem 5rem;
    background:#F0EDE0;
	border-radius:5px;
	min-width:600px;
	max-width:600px;
}

.popup-form h3,
.popup-form p {
	text-align:center;
}

.popup-form h3:after {
	content:"";
	display:block;
	width:50px;
	height:2px;
	background-color:#F15A24;
	margin:1rem auto;
}

.popup-form .fancybox-slide--html .fancybox-close-small {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:1.8rem;
	font-weight:700;
	color:#ffffff;
	padding:0 15px 0;
	width:auto;
	height:auto;
	opacity:1;
	outline:none;
}

.popup-form .fancybox-slide--html .fancybox-close-small span {
	display:inline-block;
	width:26px;
	height:26px;
	background-color: #F15A24;
	border-radius:4px;
	color:#000000;
	margin-right:8px;
	line-height:1.6;
	transition:all 200ms;
}

.popup-form .fancybox-slide--html .fancybox-close-small span:before {
	display: block;
    content: "\2716";
    font-size: 1.8rem;
    text-align: center;
    width: 26px;
    height: 26px;
    line-height:26px;
}

.enable-hover .popup-form .fancybox-slide--html .fancybox-close-small:hover {
	color:#FFC603;
}

.enable-hover .popup-form .fancybox-slide--html .fancybox-close-small:hover span {
	background-color:#FFC603;
}

.popup-form .fancybox-content {
	padding:40px 0 0;
}

#custom-popup-buttons {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
	display:block;
	width:100%;
	max-width:600px;
	height:50px;
	background:#f00;
	margin:auto;
}

/* NEWSLETTER FORM */

#newsletter-form {
	margin:0 auto;
	max-width:370px;
}

#newsletter-form .field,
#newsletter-form .field > div  {
	justify-content: center;
}

#newsletter-form input,
#newsletter-form .checkbox,
#newsletter-form .error,
#newsletter-form .error div,
#newsletter-form .error span {
	text-align:center;
}

#newsletter-form .button,
#newsletter-form #ajax-form-recaptcha {
	margin:0 auto;
}

/* HOME NEWSLETTER FORM */

#newsletter .field {
	display:flex;
	justify-content: center;
	margin:0 0 3rem;
}

#newsletter .field div {
	display:inline-block;
	position:relative;
	width:100%;
	max-width:320px;
}

#newsletter input {
	width:100%;
}

#newsletter .form-control {
	height:30px;
	color:#F0EDE0;
	font-size:1.4rem;
	text-align: center;
	padding:0 1rem;
	border-bottom: 1px solid #F0EDE0;
}

#newsletter input[type=submit] {
	position:absolute;
	top:0;
	right:0;
	padding:0;
	width:8px;
	height:30px;
	border:none;
	background: url(../images/generic/arrow-white.png) no-repeat center center;
	color: transparent;
}

/* CHANGE DEFAULT PLACEHOLDER TEXT COLOR FOR NEWSLETTER FORM */

#newsletter .form-control::-webkit-input-placeholder {
	color: #cccccc;
	opacity: 1;
}

#newsletter .form-control::-moz-placeholder {
	color: #cccccc;
	opacity: 1;
}

#newsletter .form-control:-ms-input-placeholder {
	color: #cccccc;
	opacity: 1;
}

#newsletter .form-control::-ms-input-placeholder {
	color: #cccccc;
	opacity: 1;
}

#newsletter .form-control::placeholder {
	color: #cccccc;
	opacity: 1;
}

/* CHANGE DEFAULT CHROME AUTOCOMPLETE BACKGROUND OR DISABLE IT BY USING autocomplete="off" */

#newsletter input:-webkit-autofill,
#newsletter input:-webkit-autofill:hover, 
#newsletter input:-webkit-autofill:focus, 
#newsletter input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #f2f2f2 inset;
}

/* CHANGE DEFAULT CHROME AUTOCOMPLETE TEXT COLOR */

#newsletter input:-webkit-autofill {
    -webkit-text-fill-color: #504039;
}

/* SECTIONS - FORM RESPONSIVE CSS
**************************************************************************************/

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

	textarea.form-control {
		height:120px;
	} 

	.form .flex-row.mobile-fields > div:first-child,
	.form .flex-row.mobile-fields > div:last-child {
		flex: 0 0 100%;
	}

	.form .flex-row.mobile-fields > div:first-child {
		margin-bottom:1.5rem;
	}

}

/* CONTENT - ANIMATION STYLES - SELECTED FROM ANIMATE.CSS (ZOOMIN,FADEINUP,FADEINLEFT)
----------------------------------------------------------------------------------------------------*/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.reverse {
	animation-direction: reverse;
}

@keyframes pulse {
	0%, 100% {
		opacity:0.3;
	}
	50% {
		opacity:1;
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

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

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

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

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

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

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

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

/* CUSTOM ANIMATE CSS ADDITION */

.animated.delay-02s {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
}

.animated.delay-04s {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.animated.delay-06s {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.animated.delay-08s {
	-webkit-animation-delay: .8s;
	animation-delay: .8s;
}

/* CONTENT - FOOTER
----------------------------------------------------------------------------------------------------*/

#footer {
	text-align:center;
	background-color:#1a1a1a;
	overflow:hidden;
}

#footer .content {
    padding: 4.5rem 15px;
}

/* FOOTER COPYRIGHT */

#footer p {
	font-size:1.4rem;
	line-height:2.1;
	color:#ffffff;
	margin:0;
}

#footer p span {
	display:block;
}

#footer p span,
#footer p span a {
	font-size:1.4rem;
	color:#1a1a1a;
}

#footer p span a {
	text-decoration:none;
}

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

	/* FOOTER COPYRIGHT */

	#footer p,
	#footer p span,
	#footer p span a {
		font-size:1.2rem;
	}

}

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

	#footer .content {
	    padding: 3rem 15px;
	}

	/* FOOTER COPYRIGHT */

	#footer p {
		line-height:1.8;
	}

}