

::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: #ecf2f6;
	font-weight: 400;
	color: #1D1D1B;
	font-size: 20px;
}

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

.form-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: auto;
	margin: 8px 0;
	padding: 10px 16px 12px 16px;
	background-color: #fff;
	border-radius: 30px;
	border: 1px solid #1D1D1B;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	color: #222;
	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;
}
select.form-input {
	background-image:
	linear-gradient(45deg, transparent 50%, #1D1D1B 50%),
	linear-gradient(135deg, #1D1D1B 50%, transparent 50%);
	background-position:
	calc(100% - 20px) calc(1em + 2px),
	calc(100% - 15px) calc(1em + 2px);
	background-size:
	5px 5px,
	5px 5px;
	background-repeat: no-repeat;
}


.button,
.button-red,
.button-blue,
.button-orange {
	position: relative;
	outline: none;
	display: inline-block;
	z-index: 1;
	align-items: center;
	width: auto;
	height: auto;
	margin: 4px;
	padding: 8px 35px 10px 16px;
	border-radius: 30px;
	border: none;
	background: linear-gradient(to right, #ff9900 0%, #e20f14 50%, #1197d7 100%);
	background-repeat: no-repeat;
	font-size: 16px !important;
	line-height: 20px !important;
	font-weight: 700 !important;
	color: #1D1D1B !important;
	text-decoration: none !important;
  	cursor: pointer;
  	-webkit-appearance:none;
	transition: all 300ms ease;
}
.button-red {
	background: linear-gradient(to right, #f0530a 0%, #e10c14 50%, #85466f 100%);
	color: #fff !important;
}
.button-blue {
	background: linear-gradient(to right, #824872 0%, #1e8dca 50%, #129ee1 100%);
	color: #fff !important;
}
.button-orange {
	background: linear-gradient(to right, #ff9900 0%, #f69400 50%, #f1560a 100%);
	color: #fff !important;
}
.button:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: 3px;
	border-radius: inherit;
	background: #fff;
}
.button--bgLight:before {
	background: #ecf2f6;
}
.button--bg:before {
	background: #D8EAF4;
}
.button:after,
.button-red:after,
.button-orange:after,
.button-blue:after {
	position: absolute;
	right: 16px;
	top: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 12px !important;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
	transition: all 300ms ease;
}

.button:hover:after,
.button-red:hover:after,
.button-orange:hover:after,
.button-blue:hover:after {
	right: 12px;
}
.button--large {
	font-size: 20px !important;
	padding: 14px 42px 16px 22px;
}
.button--large:after {
	top: 16px;
	right: 20px;
	font-size: 14px !important;
}
.button--large:hover:after {
	right: 15px;
}

.button--noArrow {
	padding-right: 22px;
}
.button--noArrow:after {
	display: none;
}



.menu-button {
	position: relative;
	outline: none;
	display: inline-block;
	float: right;
	width: auto;
	height: auto;
	margin: 14px 0 0 0;
	padding: 8px 18px 10px 18px;
	border-radius: 30px;
	border: 2px solid #fff;
	background-color: transparent;
	font-size: 20px !important;
	font-weight: 500 !important;
	color: #fff !important;
	text-decoration: none !important;
  	cursor: pointer;
  	-webkit-appearance:none;
	transition: all 300ms ease;	
}


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



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

.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-light-bg {
	background: #ecf2f6;
}

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

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

.u-mh--500 {
	min-height: 700px !important;
}

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

.font-weight-500 {
	font-weight: 500 !important;
}
.font-weight-600 {
	font-weight: 600 !important;
}




.header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 110;
	height: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
}

.header-logo {
	display: block;
	width: auto;
	height: 120px;
	margin-top: 30px;
	padding: 0;
}
.header-logo img {
	display: block;
	width: auto;
	height: 100%;
}
.header-logo img.white {
	display: none;
}
.header-nav {
	display: block;
	width: auto;
	height: auto;
	float: right;
	margin-top: 52px;
	transition: all 300ms ease;
}
.header-nav-close {
	display: block;
	position: absolute;
	z-index: 5;
	top: 20px;
	right: 20px;
	color: #fff !important;
	font-size: 20px;
}
.header-nav ul {
	width: auto;
	height: auto;
	margin: 20px 0;
	padding: 0;
}
.header-nav ul li {
	width: auto;
	height: auto;
	float: left;
	margin: 0 5px;
	list-style: none;
}
.header-nav ul li:last-child {
	margin-right: 0;
}
.header-nav ul li a {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: flex;
	width: auto;
	height: 50px;
	background-repeat: no-repeat;
	padding: 0 18px;
	line-height: 48px;
	overflow: hidden;
	border-radius: 30px;
	font-size: 20px;
	font-weight: 500;
	color: #1D1D1B;
	text-decoration: none;
}
.header-nav ul li.active a,
.header-nav ul li:hover a {
	background: linear-gradient(to right, #ff9900 0%, #e20f14 50%, #1197d7 100%);
}
.header-nav ul li.active a {
	font-weight: 700;
}
.header-nav ul li.active a,
.header-nav ul li a:hover {
}
.header-nav ul li.active a:before,
.header-nav ul li a:hover:before {
	content: '';
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	z-index: -1;
	margin: 0px;
	border-radius: inherit;
	background: #D8EAF4;
}
.header-top {
	position: absolute;
	top: 20px;
	right: 0;
	margin-left: 20px;
	transition: all 300ms ease;
}
.header-top .project-button {
	vertical-align: middle;
}
.header-search {
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}
.header-search > input {
	position: relative;
	width: 130px;
	height: auto;
	line-height: 24px;
	padding: 4px 16px 6px 16px;
	font-size: 18px;
	border-radius: 30px;
	background: transparent;
	border: 2px solid rgba(0,0,0,0.2);
	outline: none;
}
.header-search > button {
	position: absolute;
	top: 6px;
	right: 8px;
	background: transparent;
	border: none;
	outline: none;
	color: #1D1D1B;
	font-size: 18px;
}


.header--scrolling,
.header--fixed {
	height: 180px;
	background-size: 100% auto;
	background-position: center bottom;
	background-image: url('../img/header-bg.svg');
}
.header--scrolling {
	height: 120px;
	background-size: 100% auto;
	background-position: center bottom;
	background-image: url('../img/header-scrolling-bg.svg');
}

.header--scrolling .header-logo {
	height: 80px;
	margin-top: 14px;
}
.header--scrolling .header-logo img.colored {
	display: none;
}
.header--scrolling .header-logo img.white {
	display: block;
}
.header--scrolling .header-nav {
	margin-top: 10px;
}
.header--scrolling .header-nav ul li a {
	color: #fff;
}
.header--scrolling .header-nav ul li a {
	border: 3px solid transparent;
	line-height: 42px;
	padding: 0 15px;
	border-width: 2px;
}
.header--scrolling .header-nav ul li.active a,
.header--scrolling .header-nav ul li a:hover {
	background: transparent;
	border-color: #fff;
}
.header--scrolling .header-nav ul li.active a:before,
.header--scrolling .header-nav ul li a:hover:before {
	background: transparent;
}
.header--scrolling .project-button {
	display: none;
}
.header--scrolling .header-top {
	float: right;
	position: relative;
	margin-top: calc(5.6vw - 60px);
}
.header--scrolling .header-top {
	margin-top: 9px;
}
.header--scrolling .header-search > input {
	color: #fff;
	padding: 10px 20px 12px 20px;
	border-color: rgba(255,255,255,0.5);
}
.header--scrolling .header-search > input::placeholder {
	color: #fff;
}
.header--scrolling .header-search > button {
	color: #fff;
	top: 12px;
	right: 16px;
}


.header-placeholder {
	height: 180px;
}



.page-header-placeholder {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	background: #D8EAF4;
	height: 720px;
}
.page-header-placeholder:after {
	content: '';
	position: absolute;
	bottom: 0;
	height: 8.33vw;
	left: 0;
	right: 0;
	z-index: 1;
	background-image: url('../img/bg-light.svg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}


.bg-placeholder {
	height: 8.33vw;
}

.bg {
	position: relative;
	z-index: 6;
	height: 8.33vw;
	margin-top: -8.33vw;
	background-image: url('../img/bg.svg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.bg--light {
	background-image: url('../img/bg-light.svg');
}
.bg--white {
	background-image: url('../img/bg-white.svg');
}

.bg-container {
	margin-top: -40px;
	position: relative;
	z-index: 7;
}


.page-header {
	position: relative;
	width: 100%;
	height: auto;
	background: #D8EAF4;
	padding-top: 175px;
	padding-bottom: 40px;
	overflow: hidden;
}
.page-header-heading {
	font-size: 16px;
	text-transform: uppercase;
	color: #555;
	letter-spacing: 2px;
}
.page-header-image {
	position: relative;
	z-index: 6;
	height: 300px;
	border-radius: 25px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
}
.page-header-image--svg {
	height: 440px;
	margin-left: -50px;
	margin-right: -118px;
	background-size: contain;
	box-shadow: none;
	border-radius: 0;
	background-color: transparent;
}
.page-header-image-description {
	position: absolute;
	z-index: 8;
	bottom: 30px;
	left: 40px;
	color: #fff;
}





.album-image {
	display: block;
	width: auto;
	height: 150px;
	border-radius: 3px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



.card {
	display: block;
	border-radius: 40px;
	border: none;
	box-shadow: 0px 0px 25px rgba(0,0,0,0.05);
	background: #fff;
	text-decoration: none !important;
	font-weight: 400 !important;
	color: #1D1D1B !important;
}
.card--withButton {
	padding-bottom: 60px;
}
.card--transparent {
	background: transparent;
	position: relative;
	z-index: 1;
	box-shadow: none;
	background: linear-gradient(to right, #ff9900 0%, #e20f14 50%, #1197d7 100%);
	background-repeat: no-repeat;
}
.card--transparent:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	margin: 3px;
	border-radius: 38px;
	background: #ecf2f6;
}
.card--lightBg {
	background: #ecf2f6;
	box-shadow: none;
}
.card-image {
	display: block;
	height: 180px;
	border-radius: 40px 40px 0 0;
	overflow: hidden;
}
.card-image > div {
    width: auto;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 300ms ease;
}
.card:hover .card-image > div {
	transform: scale(1.1) rotate(2deg);
}
.card-section {
	padding: 25px 30px;
}
.card--lowLineHeight .card-section {
	line-height: 24px;
}
.card-section--button {
	padding: 0 30px;
	width: 100%;
	position: absolute;
	bottom: 25px;
}





.vertical-stepper {
}
.vertical-stepper-item {
    display: flex;
    padding-bottom: 20px;
    position: relative;
}
.vertical-stepper-item-divider {
    background: #d9d9d9;
    bottom: 0;
    left: 14px;
    position: absolute;
    top: 0;
    width: 2px;
}
.vertical-stepper-item--filled .vertical-stepper-item-divider {
    background: #1D9DD9;
}
.vertical-stepper-item-indicator-container {
    flex-shrink: 0;
    height: 30px;
    margin-right: 20px;
    position: relative;
    text-align: center;
    width: 30px;
    z-index: 2;
}
.vertical-stepper-item-indicator {
    background: #d9d9d9;
    border-radius: 100%;
    box-sizing: border-box;
    color: #888;
    font-size: 18px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    width: 30px;
}
.vertical-stepper-item--filled .vertical-stepper-item-indicator,
.vertical-stepper-item--current .vertical-stepper-item-indicator {
    background: #1D9DD9;
    color: #fff;
}
.vertical-stepper-item-indicator-icon {
    color: #fff;
    font-size: 15px;
}
.vertical-stepper-item-content {
    flex-grow: 1;
    min-width: 0;
    font-size: 24px;
}






.icon-container {
	width: 24px;
	text-align: center;
	font-size: 16px;
}



.slick-track {
	display: flex !important;
}
.slick-slide {
    height: inherit !important;
}


.slick-slider {
	margin: 0 -30px;
}
.slick-slider-item {
	padding: 0 30px;
}
.slick-slider-item .card {
	height: 100%;
}




.partner-slider {
	max-height: 170px;
	padding-bottom: 50px;
}
.partner-slider-container {
	
}
.partner-slider-item {
	width: auto;
	height: 100px;
	margin: 10px 0;
	display: block;
	overflow: hidden;
	text-align: center;
}
.partner-slider-item-inner {
	
}
.partner-slider-item img {
	display: block;
	position: relative;
	max-width: 250px;
	max-height: 100px !important;
	margin-left: auto;
	margin-right: auto;
}



.slick-dots {
	margin: 30px 0 0 0 !important;
	padding: 0 !important;
	text-align: center;
}
.slick-dots li {
	display: inline-block;
	margin: 0 8px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background: transparent;
	border: 2px solid #DE0B19;
	transition: all 300ms ease;
}
.slick-dots li.slick-active {
	width: 32px;
	border: none;
	background: linear-gradient(90deg, #DE0B19 0%, #DE0B19 40%, #9447e2 100%);
}
.slick-dots li button {
	display: none;
}





.footer {
	height: 200px;
	background-image: url('../img/footer-bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
.footer .wrapper {
	padding-top: 80px;
}
.footer-logo {
	display: inline-block;
	max-height: 50px;
	max-width: 100px !important;
	margin-left: 28px;
	border-radius: 0 !important;
}
.footer-logo-link {
	text-decoration: none !important;
}
.footer-socials a {
	font-size: 16px !important;
	color: #fff !important;
}
.footer-socials i.fas,
.footer-socials i.fab {
	width: 20px;
	font-weight: 400 !important;
}


.icon {
	width: 20px;
}



.text-box {
	font-size: 20px;
	line-height: 28px;
}
.text-box h1,
.text-box h2,
.text-box h3,
.text-box h4,
.text-box h5,
.text-box h6 {
	font-weight: 900;
	font-size: 24px;
	line-height: 0.8em;
	color: #1D1D1B;
	margin: 0px;
	padding: 6px 0;
}
.text-box h1,
.text-box h2 {
	font-size: 48px;
}
.text-box h3 {
	font-size: 36px;
}
.text-box h4 {
	font-size: 32px;
}
.text-box h5 {
	font-size: 28px;
}
.text-box a {
	color: #F49819;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}
.text-box a:hover {
	text-decoration: underline;
}
.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: #1D1D1B !important;
}
.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;
	border-radius: 40px;
}
.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;
}





