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

html {
	font-family: "Noto Serif SC", serif;
    font-size:62.50%;
    font-weight:500;
    color:#4d4d4d;
}

.english {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body {
	font-size:1.8rem;
}

h1, h2 {
	font-family: "Noto Sans SC", sans-serif;
	font-weight:900;
	font-size:4.8rem;
	line-height:1.3;
	margin-bottom:2rem;
}

h1 span,
h2 span {
	position:relative;
	display: inline-block;
}

h1 span.circle,
h2 span.circle {
	width:70px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
}

h2 span.circle:before {
	content: "";
	display:block;
	width:70px;
	height:70px;
	padding:1rem;
	border-radius: 100%;
	position:absolute;
	top:-8px;
	left:0;
	background-color: #ED1E79;
	z-index:-1;
}

h1 span.heading-icon,
h2 span.heading-icon {
	margin:0 0.5rem;
	width:25px;
    color: #ED1E79;
}

h1 span.heading-icon img,
h2 span.heading-icon img {
	padding-bottom:1rem;
}

h3 {
	font-size:2.6rem;
	line-height:1.3;
	color:#333333;
	margin-bottom:3rem;
}

h4 {
	font-size:2.4rem;
}

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

p a,
p a:link,
p a:focus {
	color:#0071BC;
	text-decoration:underline;
}

strong {
	font-weight:700;
}

/* FONT OPTIONS- COLOR */

.fontcolor-black {
	color:#000000;
}

.fontcolor-white {
	color:#ffffff;
}

.fontcolor-blue {
	color:#14909E;
}

.fontcolor-pink {
	color:#ED1E79;
}

.fontcolor-lblue {
	color:#0AE0D0;
}


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

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

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

	h1 span.circle,
	h2 span.circle {
		width:55px;
	}

	h2 span.circle:before {
		width:55px;
		height:55px;
	}

	h1 span.heading-icon,
	h2 span.heading-icon {
		width:15px;
	}

	h3 {
		font-size:2rem;
	}

}

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

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

	h1 span.circle,
	h2 span.circle {
		width:42px;
	}

	h2 span.circle:before {
		width:42px;
		height:42px;
	}

	h3 {
		font-size:1.8rem;
	}

}


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

body, html {
	height:100%;
}

body {
	background-color:#14909E;
}

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

.container:after,
.content:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

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

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

/* LAYOUT OPTIONS - BACKGROUND */

.bg-blue {
	background-color:#14909E;
}

.bg-grey {
	background-color:#E9E0E6;
}

/* LAYOUT OPTIONS - POSITIONING */

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

/* LAYOUT - HALF GRID */

.half-grid {
	display:grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap:1rem;
	margin-bottom:3.5rem;
}

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

/* LAYOUT - DEFAULTS FOR GRID FOUR, THREE, TWO AND AUTO */

[class^="grid-"] {
	display:grid;
	margin-bottom:3.5rem;
}

[class^="grid-"] img {
	width:100%;
	height:auto;
}

/* LAYOUT - GRID AUTO */

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

/* LAYOUT - GRID TWO */

.grid-two {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* LAYOUT - GRID THREE */

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

/* LAYOUT - GRID CARD */

.grid-three.card img {
	border-radius:1rem;
	margin-bottom:2.5rem;
}

.grid-three.card .figheader {
	display:block;
	margin-bottom:1.5rem;
	font-family: "Noto Sans SC", sans-serif;
	font-size:2.4rem;
	font-weight:700;
	color:#14909E;
}

.grid-three.card figcaption {
	font-family: "Noto Serif SC", serif;
	font-size:1.8rem;
	line-height:1.6;
	text-align:left;
}

.grid-three.card figcaption strong {
	color:#14909E;
}

/* LAYOUT - FLEX SIXTY FOURTY */

.flex-sixy-fourty {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
}

.flex-sixy-fourty > div:first-child {
	flex:0 0 60%;
	max-width:60%;
}

.flex-sixy-fourty > div:last-child {
	flex:0 0 40%;
	max-width:40%;
	padding-left:2%;
}

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

/* LAYOUT - FLEX FOURTY SIXTY */

.flex-fourty-sixty {
	display:flex;
	justify-content:space-around;
}

.flex-fourty-sixty > div:first-child {
	flex:0 0 40%;
	max-width:40%;
}

.flex-fourty-sixty > div:last-child {
	flex:0 0 60%;
	max-width:60%;
	padding-left:4%;
}

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

/* LAYOUT - FLEX CENTER */

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

.flex-center.text {
	min-height:250px;
	padding:4rem 0;
}

.flex-center.column {
	flex-direction:column;
}

/* LAYOUT - GENERAL SPACING */

header + .grid-three.card {
	margin-top:6.5rem;
}

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

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

	/* LAYOUT - FLEX CENTER */

	.flex-center.text {
		min-height:300px;
	}

	/* LAYOUT - GRID THREE */

	.grid-three {
		grid-gap:5rem 3rem;
	}

	/* LAYOUT - GENERAL SPACING */

	header + .grid-three.card {
		margin-top:4rem;
	}

}

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

	/* MAIN LAYOUT */

	.content {
	    padding:6rem 15px;
	}

	/* LAYOUT - FLEX SIXTY FOURTY */

	.flex-sixy-fourty > div:first-child {
		flex:0 0 100%;
		max-width:100%;
	}

	.flex-sixy-fourty > div:last-child {
		flex:0 0 100%;
		max-width:100%;
		padding-left:0;
	}

	/* LAYOUT - FLEX FOURTY SIXTY */

	.flex-fourty-sixty {
		flex-direction: column-reverse;
	}

	.flex-fourty-sixty > div:first-child {
		flex:0 0 100%;
		max-width:100%;
	}

	.flex-fourty-sixty > div:last-child {
		flex:0 0 100%;
		max-width:100%;
		padding-left:0;
	}

	/* LAYOUT - FLEX CENTER */

	.flex-center.text {
		min-height:inherit;
		padding:0 0 4rem;
	}

}

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

	/* MAIN LAYOUT */

	.content {
	    padding:4rem 15px;
	}

}

/* 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-family: "Noto Sans SC", sans-serif;
    font-size:4.8rem;
    font-weight:900;
    text-align:center;
    padding:0 2.8rem;
    line-height: 1.5;
    padding-bottom: 0.4rem;
    background-color:#ED1E79;
    color:#ffffff;
    cursor:pointer;
    border-radius:1rem;
	transition: all 200ms;
}

.enable-hover .link-btn:hover {
	background-color:#000000;
	color:#ffffff;
}


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

.popup-btns {
	position:fixed;
	display:inline-block;
	right:3rem;
	z-index:20;
}

/* BACK TO TOP BUTTON */

#back-top {
	bottom:100px;
	width:50px;
	height:50px;
	transform: rotate(-90deg);
	background:#C8C7CA url(../images/logo-svg/arrow-white.svg) no-repeat center center;
	background-size:22px 26px;
	border-radius:100%;
	opacity:0;
	pointer-events: none;
	transition: all 200ms;
}

#back-top img {
	width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0 14px;
    transition: opacity 200ms;
}

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

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

.enable-hover #back-top:hover img {
	opacity:0;
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list {
	margin-bottom:2rem;
}

ul.bullet-list:last-child,
ul.bullet-list:last-of-type {
	margin-bottom:0;
}

ul.bullet-list li {
	position:relative;
	font-size:1.4rem;
	font-weight:500;
	line-height:1.4;
	padding-left:18px;
	margin-bottom:1rem;
}

ul.bullet-list li:before {
    content: "\2022";
    position:absolute;
    top:0;
    left:0;
    font-size:3rem;
    line-height:0.5;
}

/* LIST STYLE - ARROW LIST */

ul.arrow-list {
	margin-bottom:4rem;
}

ul.arrow-list li {
	position:relative;
	font-size:1.8rem;
	font-weight:500;
	line-height:1.4;
	padding-left:1.8rem;
	margin-bottom:0.5rem;
}

ul.arrow-list li strong {
	font-weight:700;
}

ul.arrow-list li:before {
	content: "";
	position:absolute;
	top:0;
	left:0;
	display:inline-block;
	width:15px;
	height:24px;
	background: url(../images/logo-svg/arrow-grey.svg) no-repeat center left;
}

/* LIST STYLE - ARROW LIST - PINK */

ul.arrow-list.pink {
	color:#ED1E79;
}

ul.arrow-list.pink li {
	font-size:2.4rem;
}

ul.arrow-list.pink li:before {
	background: url(../images/logo-svg/arrow-pink.svg) no-repeat 0 11px;
}

/* LIST STYLE - ARROW LIST - OPTIONS */

ul.arrow-list.no-margin {
	margin-bottom:0.6rem;
}

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

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

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

	.popup-btns {
		right:1.5rem;
	}

}

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

	/* LINK BUTTON */

	.link-btn {
	    font-size:3.5rem;
	}

	/* LIST STYLE - ARROW LIST - PINK */

	ul.arrow-list.pink li {
		font-size:2rem;
	}

}

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

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

	#back-top {
		display:none;
	}


}

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

	/* LINK BUTTON */

	.link-btn {
	    font-size:2.5rem;
	}

}

/* 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:rgba(20,144,158,0.96);
    z-index:101;
    pointer-events: none;
    opacity:0;
    transition:opacity 200ms;
}

#header.show,
.error-page #header {
	pointer-events:all;
	opacity:1;
}

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

/* HEADER PARTS */

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

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

#header-left {
	flex: 0 0 50%;
}

#header-right {
	flex: 0 0 50%;
	flex-direction:column;
	align-items: flex-end;
	justify-content: center;
}

#header-right ul.icon-list {
	display:block;
	margin:8px 0;
}

#header-right ul.icon-list li {
	display:inline-block;
	margin:0 0 0 2rem;
}

#header-right ul.icon-list li:first-child {
	margin-left:0;
}

/* HEADER LOGO */

#header #logo {
	display:flex;
	align-items:center;
    z-index:10;
	transition: all 200ms;
}

#header #logo img {
	width:100%;
	height:auto;
	max-width:250px;
	transition: all 200ms;
}

/* HEADER NAVIGATION */

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

/* HEADER NAVIGATION LINKS */

ul#main-navigation {
	display:block;
	width:100%;
}

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

ul#main-navigation a {
	position:relative;
	white-space: nowrap;
	outline:none;
	transition: color 200ms;
}

ul#main-navigation > li > a {
	display:inline-block;
	font-family: "Noto Sans SC", sans-serif;
	font-size:1.8rem;
	font-weight:700;
	color:#ffffff;
	white-space:nowrap;
}

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:#ED1E79;
}

/* 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:#333333;
    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:#E5D225;
}

a#expand-nav.active div span,
#header.mobile-nav-active a#expand-nav div span {
	background-color:#333333;
}

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);
}

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

/* FANCYBOX OVERRIDES */

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

.fancybox-caption {
    padding: 75px 44px 15px;
    font-size:2rem;
}

/* SLICK SLIDER OVERRIDES */

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

.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;
	bottom:35px;
}

.slick-dots li {
	margin:0 5px;
	vertical-align:top;
}

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

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

/* SLICK SLIDER CUSTOM CSS */

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

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

.slide-caption span {
	font-size:2.4rem;
	font-weight:400;
	line-height:1.8;
	margin-bottom:2rem;
}

/* CONTENT PAGE SLICK SLIDER */

#single-page-slider,
#single-page-slider .slick-slide {
	max-height:550px;
}

/** 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;
	}

	/* 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 {
		padding:0 15px 5rem;
	}

	.slide-caption h1,
	.slide-caption h2 {
		font-size:2rem;
		margin-bottom:2rem;
	}

}

/* SECTIONS - SECTION 1
----------------------------------------------------------------------------------------------------*/

#section-1 .elements-container {
	position:relative;
	display:inline-block;
	margin:0 auto;
	padding-left:75px;
}

#section-1 .elements-container a {
	position:absolute;
	top:20px;
	left:75px;
	display:block;
	width:30%;
	max-width:320px;
}

#section-1 .elements-container img {
	width:100%;
	height:auto;
}

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

	#section-1 .elements-container {
		padding-left:5%;
	}

	#section-1 .elements-container a {
		left:5%;
	}

}


/* SECTIONS - SECTION 2
----------------------------------------------------------------------------------------------------*/

#section-2 .content {
	padding:0 15px;
}

#section-2 [class^="grid-"] {
	margin-bottom:0;
}

#section-2 .grid-two > img {
	margin-top:7rem;
}

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

	/* LAYOUT - GRID TWO */

	.grid-two {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
		grid-auto-flow:dense;
	}

	.grid-two > div {
		padding:6rem 0 0;
  		order:-1;
	}

	.grid-two > img {
		max-height:500px;
		object-fit:contain;
	}

	#section-2 .grid-two > img {
		margin-top:0;
	}
}

/* SECTIONS - SECTION 6
----------------------------------------------------------------------------------------------------*/

#section-6 {
	background:url(../images/home-6.jpg) no-repeat center center;
	background-size:cover;
	background-attachment: fixed;
}

#section-6 .content {
	padding: 10rem 15px;
}

#section-6 h2 {
	margin-bottom:3rem;
}

#section-6 .flex-center {
	margin:0 auto;
	max-width:820px;
}

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

	#section-6 .content {
		padding: 6rem 15px;
	}

}

/* SECTIONS - SECTION 8
----------------------------------------------------------------------------------------------------*/

#section-8 .content {
	padding:7rem 15px 12rem;
}

#section-8 h2 {
	margin-bottom:4rem;
}

ul.contact-list {
	display:inline-block;
	font-family: "Noto Sans SC", sans-serif;
	font-size:2.6rem;
	margin:0 auto;
}

ul.contact-list li,
ul.contact-list li a {
	color:#ffffff;
}

ul.contact-list .english {
	font-size:2.8rem;
	font-weight:bold;
}

ul.contact-list li {
	line-height:1.2;
	padding:2rem 5rem;
}

ul.contact-list li.border-bottom {
	border-bottom:1px solid #11a0a8;
}

ul.contact-list .icons {
	display:inline-block;
}

ul.contact-list .icons > div {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	height:100%;
}

/* GOOGLE MAPS */

#map-canvas {
	height:700px;
}

/* SECTIONS - SECTION 8 RESPONSIVE CSS
**************************************************************************************/

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

	ul.contact-list,
	ul.contact-list .english {
		font-size:2rem;
	}

	ul.contact-list .icons {
		vertical-align: text-top;
	}

	ul.contact-list .icons.location {
		vertical-align: top;
	}

}

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

	ul.contact-list,
	ul.contact-list .english {
		font-size:1.8rem;
	}

}

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

#error-page .content {
	padding:15rem 15px 7rem;
}

/* 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;
	max-width:500px;
	margin:0 auto 5rem;
}

#enquiry-form-success-message {
	display:none;
}

#enquiry-form-success-message p {
	text-align: center;
    background-color: #ED1E79;
    padding: 15px;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.8rem;
    line-height: 1.5;
}

#enquiry-form-success-message.show {
	display:block;
}

.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:10px;
	clear:both;
}

.form .field:last-child {
	display:block;
	margin-bottom:0;
	text-align:center;
}

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

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

.form #captcha {
	overflow:hidden;
	margin:0 auto 1rem;
}

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

.form #captcha.field > div {
	display:inline-block;
	margin:0 auto;
}

.form label,
.form-control,
.form .button {
	font-family: "Noto Sans SC", sans-serif;
	font-size:1.8rem;
	font-weight:500;
}

.form-control,
.form .button {
	color:#333333;
}

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

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

/* CHANGE DEFAULT CHROME AUTOCOMPLETE TEXT COLOR */

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

.form-control {
	display:block;
	border-radius:0;
	padding:0 1.2rem;
	width:100%;
	border:none;
	border-radius:5px;
	background-color: #ffffff;
	background-clip: padding-box;
	outline:none;
}

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

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

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

.form-check-input {
	margin-right:6px;
}

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

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

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

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

.form-control:focus {
	border-color: #9A1C20;
	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 div#spamtrap {
	visibility:hidden
}

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

.form #enquiry-form-server-errors > div {
	margin-bottom:2rem;
}

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

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

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

.form .error div {
	padding:0.2rem 1.2rem 0;
}

.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:none;
    font-size:1.8rem;
    font-weight:700;
    text-align:center;
    padding:0 3rem;
    background-color:#0D7C82;
    border-radius:5px;
    border:none;
    height:50px;
    width:auto;
    display:inline-block;
    color:#ffffff;
	cursor:pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: color,background-color,padding 200ms;
}

.form .button:hover {
	background:#ED1E79;
}

.form .button.processing {
	pointer-events:none;
	padding-right:50px;
	color:#999999;
	background:#cccccc url(../images/logo-svg/spinner.gif) no-repeat 75px center;
}

.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] {
	border-color:#cccccc !important;
    background:#cccccc !important;
}

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

.form input[type=submit]:disabled .icon,
.form button:disabled .icon,
.form input[type=submit][disabled=disabled] .icon,
.form button[disabled=disabled] .icon {
	filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(1926%) hue-rotate(88deg) brightness(111%) contrast(83%);
}


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

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

	.form .flex-row.mobile-fields > div:first-child {
		flex: 0 0 100%;
		margin-bottom:10px;
	}

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

}

/* 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;
}

@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:#14909E;
}

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

#footer p {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size:1.4rem;
	line-height:1.4;
	color:#ffffff;
	margin:0;
}

#footer p span {
	display:block;
}

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

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