

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


:root {
	--color-primary: #FD7379;
	--color-darkBlue: #167497;
	--color-lightLightBlue: #F2F7FA;
	--color-lightBlue: #56c5cc;
	--color-dark: #2A4243;
}


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: normal;
	color: var(--color-dark);
	font-size: 16px;
}

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

.form-label {
	display: block;
	font-weight: bold;
	font-size: 14px;
	color: var(--color-dark);
	margin: 15px 0 0 0;
	padding: 0;
}

.form-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: 36px;
	margin: 5px 0;
	padding: 6px 10px;
	background-color: #fff;
	border-radius: 0;
	border: 1px solid #ccc;
	font-weight: normal;
	color: var(--color-dark);
	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;
}


.form-radio,
.form-checkbox {
	position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-radio-check,
.form-checkbox-check {
	display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    color: #000;
    vertical-align: text-bottom;
    background: #fff;
    border: 1px solid #D2D2D2;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 100ms ease;
}
.form-checkbox-check {
	border-radius: 3px;
}
.form-radio-check:before,
.form-checkbox-check:before {
    opacity: 0;
    margin: 0;
    text-align: center;
    line-height: 20px;
	display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900; 
    font-size: 11px;
    content: "\f00c";
}
.form-radio:checked + .form-radio-check,
.form-checkbox:checked + .form-checkbox-check {
	color: #fff;
	background: var(--color-primary);
	border-color: var(--color-primary);
}
.form-radio:checked + .form-radio-check:before,
.form-checkbox:checked + .form-checkbox-check:before {
	opacity: 1;
}


.alert h4 {
	color: #155724 !important;
}



.button {
	position: relative;
	outline: none;
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0 4px 4px 0;
	padding: 8px 30px 8px 0;
	border-radius: 3px;
	background-color: transparent;
	font-size: 16px !important;
	font-weight: bold !important;
	color: var(--color-primary) !important;
	text-decoration: none !important;
	border: none;
  	cursor: pointer;
  	-webkit-appearance:none;
	transition: all 300ms ease;
}
.button.rood {
	background-color: var(--color-primary);
	color: #fff !important;
	padding-left: 30px;
	padding-right: 50px;
}
.button.dark {
	background-color: var(--color-dark);
	color: #fff !important;
	padding-left: 30px;
	padding-right: 30px;
}
.button.no-arrow.rood {
	padding-right: 30px;
}
.button:not(.no-arrow):after {
	content: '\f30b';
	position: absolute;
    right: 4px;
    top: 9px;
    display: block;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-primary);
	transition: all 300ms ease;
}
.button.rood:after {
	color: #fff;
	right: 24px;
}
.button--menu {
	float: right;
	margin-top: 30px;
	background-color: #fff;
	padding-left: 12px;
	padding-right: 12px;
}
.button:hover:after {
	right: -2px;
}
.button.rood:hover:after {
	right: 18px;
}
.button.rood:hover {
	box-shadow: 0 0 12px rgba(0,0,0,0.2);
}


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

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

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

.u-truncate--10 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;  
}

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

@media (min-width: 992px) {
	.u-lg-vAlignMiddle {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.u-light-bg {
	background: var(--color-lightLightBlue) !important;
}
.u-bg-blue {
	background: var(--color-lightBlue) !important;
}
.u-lh-normal {
	line-height: 26px !important;
}


.page {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.page--0 {
	z-index: 2;
	overflow: inherit;
}
.page-inner {
	position: relative;
}

.page[data-inviewport="slide-in"] > .page-inner { 
	top: 100vw;
	transition: all 1000ms ease;
}
.page[data-inviewport="slide-in"]:not(.page--1).is-in-viewport > .page-inner { 
	top: 0;
}
body.is-scrolled .page--1[data-inviewport="slide-in"].is-in-viewport > .page-inner {
	top: 0;
}





.header {
	position: fixed;
	height: 200px;
	top: 0;
	left: 0;
	right: 0;
	background: #F2F7FA;
	z-index: 100;
	transition: all 500ms ease;

	background-color: var(--color-primary);
	height: 100px;
}
.header-placeholder {
	height: 100px;
}

.header-logo {
	position: absolute;
	left: 0;
	top: 30px;
	display: block;
	width: 240px;
	height: 240px;
	background: var(--color-primary);
	border-radius: 5px;
	text-align: center;
	transition: all 500ms ease;

	top: 0;
	height: 100px;
	background: transparent;
}
.header-logo:hover {
	transform: scale(1.1);
}
.header-logo img {
	display: block;
	width: 180px;
	height: auto;
	margin: 0 auto;
	transition: all 500ms ease;

	width: 240px;
}
.header-nav {
	display: block;
	float: right;
	width: auto;
	height: auto;
}
.header-nav-close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #fff;
	font-size: 20px;
}
.header-nav ul {
	width: auto;
	height: auto;
	margin: 88px 0 0 0;
	padding: 0;
	transition: all 500ms ease;

	margin-top: 30px;
}
.header-nav ul li {
	width: auto;
	height: 47px;
	float: left;
	list-style: none;
	position: relative;

	height: 87px;
}
.header-nav ul li a {
	position: relative;
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0 10px;
	padding: 0 4px;
	line-height: 40px;
	overflow: hidden;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-dark);
	text-decoration: none;
	cursor: default;
	transition: all 500ms ease;

	color: #fff !important;
	margin-bottom: 40px;
}
.header-nav ul li a[href] {
	cursor: pointer;
}
.header-nav ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--color-primary);
	border-radius: 4px;
	opacity: 0;
	transition: all 500ms ease;

	background: #fff;
}
.header-nav ul li.active > a:after,
.header-nav ul li a:hover:after {
	opacity: 1;
}
.header-nav ul li ul {
	display: none;
	position: absolute;
	top: 46px;
	left: 10px;
	background: var(--color-lightBlue);
	border-radius: 10px;
	min-width: 220px;
	margin: 0;
	padding: 10px 10px;
}
.header-nav ul li:hover ul {
	display: block;
}
.header-nav ul li ul li {
	float: none;
	height: auto !important;
	margin-bottom: -6px;
}
.header-nav ul li ul li a {
	line-height: 36px;
	color: #fff;
	padding: 0;

	margin-bottom: 0;
}
.header-nav ul li ul li a:after {
	background: #fff;
}


.header--mobile,
.header--mobile .header-logo img,
.header--mobile .header-nav ul {
	transition: none;
}


.header--scrolling {
	background-color: var(--color-primary);
	height: 100px;
}
.header--scrolling .header-logo {
	top: 0;
	height: 100px;
	background: transparent;
}
.header--scrolling .header-logo > img {
	width: 240px;
}
.header--scrolling .header-nav ul {
	margin-top: 30px;
}
.header--scrolling .header-nav ul li {
	height: 87px;
}
.header--scrolling .header-nav ul li a {
	color: #fff !important;
	margin-bottom: 40px;
}
.header--scrolling .header-nav ul li a:after {
	background: #fff;
}
.header--scrolling .header-nav ul li ul li a {
	margin-bottom: 0;
}



.site-container {
	overflow: hidden;
}

.main-container {
	min-height: 520px;
}


.page-image {
	position: relative;
	z-index: 10;
	margin-right: calc((-100vw + 1000px) / 2);
	width: auto;
	height: 100%;
	min-height: 500px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: rgba(42,66,67, 0.3);
	background-blend-mode: multiply;
}
.page-image--left {
	margin-right: auto;
	margin-left: calc((-100vw + 1000px) / 2);
}
.page-image--transparent {
	background-position: center bottom;
	background-blend-mode: initial;
}
.page-image--scaled {
	background-size: auto 90%;
}
.page-image--red {
	background-color: var(--color-primary);
}
.page-image--blue {
	background-color: var(--color-lightBlue);
}
.page-image--noMultiply {
	background-color: transparent;
	background-blend-mode: initial;
}
.page-image-image {
	display: block;
	width: 100%;
	height: auto;
}
.page-image-content {
	margin-right: calc((100vw - 1000px) / 3);
	text-align: right;
	font-weight: 400;
	font-size: 36px;
	line-height: 36px;
	color: #FFFFFF;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.page-image-content--small {
	text-align: left !important;
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}
.page-image-content a:not(.button) {
	color: #fff !important;
	font-weight: bold;
	text-decoration: underline !important;
}
.page-image-content a.button {
	text-shadow: none;
}
.page-image--left .page-image-content {
	margin-right: auto;
	margin-left: calc((100vw - 1000px) / 2);
}
.page-image-watermark {
	position: absolute;
	right: -80px;
	top: 80px;
	width: 500px;
	height: 500px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	mix-blend-mode: multiply;
}


.news-image {
	width: 200px;
	height: 140px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
	float: right;
	margin-left: 30px;
	margin-bottom: 10px;
}


.typewriter {
	height: 40px;
}




.testimonial-slider {
	margin: 0 -22.5px;
}
.testimonial-slider .slick-arrow {
	position: absolute;
	top: 50%;
	padding: 0;
	margin: -30px 0 0 0;
	background: transparent;
	border: 0;
	outline: none;
	font-size: 36px;
	color: var(--color-dark);
	cursor: pointer;
}
.testimonial-slider .slick-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.testimonial-slider .slick-prev {
	left: -50px;
}
.testimonial-slider .slick-next {
	right: -50px;
}

.testimonial-slider-item-quote {
	position: relative;
    text-align: left;
    background: #fff;
    min-height: 320px;
    border-radius: 10px;
    padding: 25px;
    margin: 22.5px;
    font-style: italic;
    font-size: 18px;
    line-height: 26px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.testimonial-slider-item-quote:after {
    content: '';
    position: absolute;
    right: 45px;
    bottom: -16px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid transparent;
    border-bottom: 18px solid #fff;
    transform: scaleX(2) rotate(-45deg);
}
.testimonial-slider-item-name {
    margin-top: -18px;
    margin-left: 20px;
    margin-right: 96px;
    text-align: right;
}


.heading-quote {
	position: relative;
	font-size: 28px;
	color: var(--color-lightBlue);
	margin-left: 6px;
	top: -16px;
}




.card {
	display: block;
	border: none;
    border-radius: 10px;
	background: #fff;
	text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.col > .card {
	height: 100%;
}
.card--highlighted {
	background-color: var(--color-primary);
	color: #fff !important;
}
.card-image {
	display: block;
	width: auto;
	height: 240px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #ddd;
	overflow: hidden;
}
.card-image > div {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: all 300ms ease;
}
.card-image > div:hover {
	transform: scale(1.1);
}
.card-content {
	width: auto;
	height: auto;
	padding: 25px 30px;
	line-height: 22px;
}
.card-subtitle {
	color: #777;
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
}
.card-buttons {
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	text-align: center;
}



.grid {
	margin-right: -2.33%;
}
.grid-item {
	width: 31%;
    float: left;
    margin-right: 2.33%;
    margin-bottom: 20px;
}




.footer {
	background: var(--color-darkBlue);
	color: #fff;
	padding: 40px 0;
}
.footer-logo {
	display: block;
	max-width: 226px;
}
.footer-label {
	display: inline-block;
	color: var(--color-lightBlue);
	font-weight: bold;
	min-width: 16px;
}
.footer-nav {
	display: block;
	margin: 0;
	padding: 0;
}
.footer-nav ul {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
}
.footer-nav ul li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
.footer-nav ul li a {
	color: #fff !important;
}




.text-box {
	font-size: 16px;
	line-height: 26px;
}
.text-box h1,
.text-box h2,
.text-box h3,
.text-box h4,
.text-box h5,
.text-box h6 {
	font-weight: 700;
	font-size: 18px;
	color: var(--color-dark);
	margin: 0px;
	padding: 6px 0;
}
.text-box h1,
.text-box h2 {
	font-size: 36px;
}
.text-box h3 {
	font-size: 30px;
}
.text-box h4 {
	font-size: 27px;
}
.text-box h5 {
	font-size: 20px;
}
.text-box h6 {
}
.text-box a {
	color: var(--color-primary);
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}
.text-box h1 a,
.text-box h2 a,
.text-box h3 a,
.text-box h4 a,
.text-box h5 a,
.text-box h6 a {
	color: var(--color-dark) !important;
}
.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;
}
.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 a,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
	color: #fff !important;
}



.modal-body {
	text-align: left;
	padding: 25px;
}



.animation-pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
  0%{
	  transform: scale(1);
  }
  20% {
	  transform: scale(1.1);
  }
  100% {
	  transform: scale(1);
  }
}


.animation-pulse-double {
	animation: pulse-double 2s infinite;
}

@keyframes pulse-double {
  0%{
	  transform: scale(1);
  }
  20% {
	  transform: scale(1.3);
  }
  100% {
	  transform: scale(1);
  }
}

