

::selection {
	background: #95b1e7; /* Safari */
	}
::-moz-selection {
	background: #95b1e7; /* Firefox */
}


html, body {
	height: 100%;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	font-weight: 500;
	color: #000;
	font-size: 18px;
}

.wrapper {
	width: 1180px;
	height: auto;
	text-align: left;
	margin: 0px auto;
}
.wrapper--small {
	width: 600px;
}
b,strong {
	font-weight: bold;
}
i,em {
	font-style: italic;
}

.form-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: 36px;
	margin: 8px 0;
	padding: 6px 10px;
	background-color: #fff;
	border-radius: 0;
	border: 1px solid #ccc;
	font-weight: normal;
	color: #222;
	font-size: 15px;
	outline: none;
	-webkit-appearance:none;
	transition: all 300ms ease;
}
.form-input--error {
	border: 2px solid rgba(196,57,65, 0.8);
}
textarea.form-input {
	height: auto;
	resize: none;
}


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    min-width: 50px;
    height: 24px;
}
.toggle-switch-input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-switch-input:checked + .toggle-switch-slider {
	background: #F2263F;
}
.toggle-switch-input:checked + .toggle-switch-slider:before {
	transform: translateX(26px);
}
.toggle-switch-slider {
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 18px;
    transition: 300ms;
}
.toggle-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background: #fff;
    transition: 300ms;
}


.button {
	position: relative;
	outline: none;
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0;
	padding: 9px 45px 9px 0;
	background-color: transparent;
    box-sizing: content-box;
    line-height: 1em !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #00B17C !important;
	text-decoration: none !important;
	border: none;
  	cursor: pointer;
  	-webkit-appearance:none;
	transition: all 300ms ease;
}
.button:after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #000;
	background-image: url('../img/arrow-right.svg');
	background-size: 15px 13px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 100%;
	color: #fff !important;
	transition: all 300ms ease;
}
.button:hover:after {
	margin-right: -8px;
}
.button--down:after {
	transform: rotate(90deg);
}
.button--down:hover:after {
	margin-right: 0;
}


.bg-twitter {
	background-color: #1da1f2;
}
.bg-facebook {
	background-color: #3b5998;
}
.bg-linkedin {
	background-color: #0077b5;
}
.bg-whatsapp {
	background-color: #128c7e;
}

.u-zoomOnHover {
	transition: all 300ms ease;
}
.u-zoomOnHover:hover {
	transform: scale(1.07);
}

.overflow-hidden {
	overflow: hidden !important;
}

.u-anchor {
	position: absolute;
	margin-top: -100px;
}

.u-vAlignMiddle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.u-text-semibold {
	font-weight: 500 !important;
}
.u-text-italic {
	font-style: italic !important;
}
.u-text-green {
	color: #00B17C !important;
}
.u-text-grey {
	color: #111 !important;
	opacity: 0.5;
}
.u-text-yellow {
	color: #E1E646 !important;
}

.u-text-small {
	font-size: 16px !important;
}
.u-text-large {
	font-size: 26px !important;
	line-height: 32px !important;
}

.u-lineHeight-small {
	line-height: 1.3em;
}

.u-text-truncate--2 {
	height: 40px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
}

.row--xlGutter {
	margin-left: -44px;
	margin-right: -44px;
}
.row--xlGutter > .col,
.row--xlGutter > .col-12 {
	padding-left: 44px;
	padding-right: 44px;
}

.row--lgGutter {
	margin-left: -25px;
	margin-right: -25px;
}
.row--lgGutter > .col,
.row--lgGutter > .col-12 {
	padding-left: 25px;
	padding-right: 25px;
}

.row--smGutter {
	margin-left: -9px;
	margin-right: -9px;
}
.row--smGutter > .col,
.row--smGutter > .col-12 {
	padding-left: 9px;
	padding-right: 9px;
}

@media (min-width: 992px) {
	.col-lg-55 {
	    -ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}


.site-container {
	overflow: hidden;
}

.mobile-menu {
	position: absolute;
	top: 29px;
	right: 24px;
	background: #00B17C;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	color: #fff !important;
	overflow: hidden;
}
.mobile-menu i {
	font-size: 18px;
	line-height: 32px;
}
.mobile-menu span {
	text-indent: -999px;
}


.header-wrapper {
	position: relative;
}
.header-placeholder {
	height: 90px;
}

.header {
	position: fixed;
	z-index: 1000;
	left: 0;
	right: 0;
	top: 0;
	height: 90px;
	text-align: center;
}
.header.is-absolute {
	position: absolute;
}
.header-wrapper {
	text-align: center;
	background: #E6F7F4;
	height: 100%;
}
.header-logo {
	display: inline-block;
	width: auto;
	height: 42px;
	padding: 24px 0 0 0;
	text-decoration: none !important;
	margin: 0 auto;
	box-sizing: content-box;
}
.header-logo img {
	height: 42px;
}
.header-slogan {
	color: #000;
	font-size: 16px;
}
.header-nav-close {
	display: none;
}
.header-nav-close.is-visible {
	display: block;
}
.header-nav {
	display: none;
	position: fixed;
	width: auto;
	height: auto;
	left: 0;
	right: 0;
	overflow: hidden;
	top: 90px;
	z-index: 110;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box;
}
.header.is-absolute .header-nav {
	position: absolute;
}
.header-nav.is-visible {
	display: block;
}
.header-nav-wrapper {
	background-color: #E6F7F4;
	padding: 38px 0 50px 0;
}
.header-nav-label {
	display: block;
	margin: 0 0 28px 0;
	line-height: 32px;
	color: #000;
	font-size: 24px;
	font-weight: 300;
}
.header-nav ul {
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
}
.header-nav ul li {
	display: block;
	width: auto;
	height: auto;
	list-style: none;
}
.header-nav ul li a {
	position: relative;
	display: block;
	width: auto;
	height: auto;
	margin: 0 0 28px 0;
	min-height: 32px;
	padding: 0 40px 0 0;
	line-height: 32px;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	transition: all 300ms ease;
}
.header-nav ul li a .arrow {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background-color: #00B17C;
	background-image: url('../img/arrow-right.svg');
	background-size: 15px 13px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 100%;
	color: #fff !important;
	transition: all 300ms ease;
}
.header-nav ul li a:hover .arrow {
	margin-right: -8px;
}

	



.page-header {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 393px;
	margin-top: 40px;
}
.page-header--home {
	height: 344px;
	margin-top: 0;
}
.page-header-image {
	width: auto;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.page-header-video {
	background: #00B17C;
	height: 100%;
}
.page-header-video video {
	width: 100%;
	height: 100%;
}

.page-header-overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.page-header-overlay h1 {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 !important;
	padding: 45px 60px !important;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	color: #fff;
}



.card {
	border: 0;
	border-radius: 0;
	display: block;
	background: #E6F7F4;
	position: relative;
	text-decoration: none !important;
}
.card--green {
	background: #00B17C;
	color: #fff;
}
.card--black {
	background: #000;
	color: #fff;
}
.card--white {
	background: #fff;
}
.card--withYellowArc::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 50px;
	right: 0;
	width: 325px;
	height: 290px;
	background-image: url('../img/yellow-arc.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.card-section {
	padding: 30px;
	position: relative;
	z-index: 2;
}
.card-section--large {
	padding: 60px;
}
.card-description {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 500;
}

.card-icon {
	height: 78px;
	text-align: left;
	background-position: center center;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.card-icon img {
	text-align: left;
	max-height: 78px !important;
}

.card-line {
	width: auto;
	height: 12px;
	background: #00B17C;
}



.text-container {
	background: #E6F7F4;
	padding: 60px 190px;
}

.page-icon {
	width: 120px;
}


.square-image {
	width: auto;
	min-height: 431px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}




.image-card {
	display: block;
	position: relative;
	background: #777;
	height: 222px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.image-card--large {
	height: 311px;
}
.image-card-overlay {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.image-card-content {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 !important;
	padding: 25px 20px !important;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	color: #fff;
}


.side-image-card {
	display: flex;
	align-items: center;
	position: relative;
	height: 87px;
	background: #00B17C;
	margin-bottom: 25px;
	text-decoration: none !important;
}
.side-image-card-image {
	width: 170px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	flex-shrink: 0;
}
.side-image-card-content {
	width: auto;
	flex-grow: 1;
	color: #fff;
	padding: 0 20px;
}




.image-slider {
	height: 293px;
}
.image-slider-item {
	display: block;
	height: 293px !important;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}



.partner-slider {
	max-height: 170px;
	margin-bottom: 50px;
}
.partner-slider-container {
	
}
.partner-slider-item {
	width: 170px;
	height: 170px;
	margin: 10px 0;
	border-radius: 100%;
	display: block;
	background: #fff;
	border: 3px solid #e4e4e4;
	overflow: hidden;
	text-align: center;
}
.partner-slider-item-inner {
	
}
.partner-slider-item img {
	display: block;
	position: relative;
	max-width: 100%;
	max-height: 170px !important;
	margin-left: auto;
	margin-right: auto;
}

.slick-arrow {
	position: absolute;
	bottom: -60px;
	left: 0;
	content: '';
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #00B17C;
	border: 0;
	background-size: 15px 13px;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 100%;
	color: #fff !important;
	cursor: pointer;
	transition: all 150ms ease;
}
.slick-prev {
	left: 60px;
	background-image: url('../img/arrow-left.svg');
}
.slick-prev:not(.slick-disabled):hover {
	margin-left: -5px;
}
.slick-next {
	left: 110px;
	background-image: url('../img/arrow-right.svg');
}
.slick-next:not(.slick-disabled):hover {
	margin-left: 5px;
}
.slick-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}


.awesome-icon {
	font-size: 50px;
}



.grid {
	margin-right: -50px;
}
.grid-item {
    width: calc(50% - 50px);
    float: left;
    margin-right: 50px;
    margin-bottom: 30px;
}



.footer-top {
	background: #00B17C;
	color: #fff;
	padding: 30px 0;
}
.footer-top-icon {
	display: inline-block;
	margin-right: 70px;
}
.footer-top h4 {
	display: inline-block !important;
	margin: 0 !important;
	padding: 0 !important;
	vertical-align: middle;
}


.footer {
	background: #E6F7F4;
	padding: 52px 0 46px 0;
	font-size: 16px !important;
	line-height: 1.2em !important;
}
.footer a {
	font-weight: 500 !important;
}
.footer a:hover {
	text-decoration: underline;
}





.text-box {
	font-size: 18px;
	line-height: 28px;
	text-align: justify;
}
.text-box h1,
.text-box h2,
.text-box h3,
.text-box h4,
.text-box h5,
.text-box h6 {
	font-family: 'Changa';
	font-weight: 500;
	font-size: 20px;
	color: #000;
	margin: 0px;
	padding: 6px 0;
	line-height: 1em;
}
.text-box h1,
.text-box h2 {
	font-size: 40px;
}
.text-box h3 {
	font-size: 32px;
}
.text-box h4 {
	font-size: 28px;
}
.text-box h5 {
	font-size: 24px;
}
.text-box a {
	color: #00B17C;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}
.text-box a:hover {
	text-decoration: underline;
}
.text-box p {
	margin: 0;
	padding: 8px 0;
}
.text-box ul, .text-box ol {
    padding: 0;
	margin-left: 30px;
}
.text-box ul li {
	list-style: disc;
}
.text-box ol li {
	list-style: decimal;
}
.text-box img {
	max-width: 100%;
	height: auto !important;
}
.text-box iframe {
	max-width: 100%;
}
.text-box hr {
	display: block;
	width: auto;
	height: 1px;
	border: 0;
	background-color: rgba(0,0,0,0.1);
	padding: 0;
	margin: 20px 0;
}
.text-box sup {
	vertical-align: super;
    font-size: smaller;
}
.text-box sub {
	vertical-align: sub;
    font-size: smaller;
}

.text-white-forced a {
	color: #fff !important;
}



