

::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: 400;
	color: #1D1D1B;
	font-size: 20px;
}
body.page--project {
	background: #EEF3F6;
}

.wrapper {
	width: 1080px;
	height: auto;
	text-align: left;
	margin: 0px auto;
}
b,strong {
	font-weight: bold;
}
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: transparent;
	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;
}


.button1,
.button2,
.button3 {
	position: relative;
	outline: none;
	display: inline-block;
	width: auto;
	height: auto;
	margin: 4px;
	padding: 8px 42px 10px 22px;
	border-radius: 30px;
	border: 2px solid #1D9DD9;
	background-color: #1D9DD9;
	font-size: 20px !important;
	font-weight: 800 !important;
	color: #fff !important;
	text-decoration: none !important;
  	cursor: pointer;
  	-webkit-appearance:none;
	transition: all 300ms ease;
}
.button2 {
	background-color: transparent;
	color: #1D1D1B !important;
	border-color: #1D1D1B;
}
.button3 {
	border-color: #fff;
}
.button1:after,
.button2:after,
.button3:after {
	position: absolute;
	right: 20px;
	top: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 14px !important;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
	transition: all 300ms ease;
}
.button1:hover:after,
.button2:hover:after,
.button3:hover:after {
	right: 15px;
}
.button--noArrow {
	padding-right: 22px;
}
.button--noArrow:after {
	display: none;
}
.button1 i,
.button2 i,
.button3 i {
	transition: all 300ms ease;
}
.button1:hover i:not(.noHover),
.button2:hover i:not(.noHover),
.button3:hover i:not(.noHover) {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

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

.text-decoration-none {
	text-decoration: none !important;
}

.menu-button {
	position: relative;
	outline: none;
	display: inline-block;
	float: right;
	width: auto;
	height: auto;
	margin: 36px 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: #1D9DD9;
}
.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-noMargins > p {
	padding: 0 !important;
}

.print {
	display: none !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%);
}

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

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

.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: 500px !important;
}

.u-text-small {
	font-size: 16px !important;
}

.rounded {
	border-radius: 40px !important;
}

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


.site-container {
	overflow: hidden;
}


.header {
	transition: all 300ms ease;
	height: 200px;
	background-image: url('../img/header-bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
}


.header-logo {
	display: block;
	width: auto;
	height: 115px;
	margin-top: 40px;
	padding: 0;
}
.header-logo img {
	display: block;
	width: auto;
	height: 100%;
}
.header-nav {
	display: block;
	text-align: right;
	width: auto;
	height: auto;
	margin-top: 60px;
}
.header-nav-close {
	position: relative;
	outline: none;
	display: inline-block;
	float: right;
	width: 52px;
	height: 52px;
	margin: 33px 17px 0 0;
	padding: 0;
	border-radius: 100%;
	line-height: 48px;
	text-align: center;
	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;
}
.header-nav ul {
	width: auto;
	height: auto;
	margin: 20px 0;
	padding: 0;
}
.header-nav ul li {
	display: inline-block;
	width: auto;
	height: auto;
	list-style: none;
}
.header-nav ul li a {
	display: inline-block;
	width: auto;
	height: 50px;
	margin: 0 4px;
	padding: 0 18px;
	line-height: 42px;
	overflow: hidden;
	border-radius: 30px;
	border: 2px solid transparent;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: all 300ms ease;
}
.header-nav ul li.active a,
.header-nav ul li a:hover {
	border-color: #fff;
}


 

.light-container {
	background: #EEF3F6;
	position: relative;
	margin-top: calc(11.2vw + 30px);
}
.light-container:before {
	position: absolute;
	content: '';
	left: 0;
	top: -11.2vw;
	right: 0;
	height: 11.2vw;
	background-image: url('../img/bg-vector.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}
.light-container-content {
  -webkit-transform: translateY(-5vw);
  -ms-transform: translateY(-5vw);
  transform: translateY(-5vw);
}



.page-header {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 40vw;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.page-header-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.page-header-slider-item {
	width: 100%;
	height: 40vw !important;
	overflow: hidden;
	z-index: 5;
}
.page-header-slider-item-image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	filter: grayscale(100%);
}
.page-header-slider-item.slick-slide > .page-header-slider-item-image {
	transition: transform 5000ms ease;
	overflow: hidden;
}
.page-header-slider-item.slick-activeSlide > .page-header-slider-item-image {
	transform: scale(1.1);
}
.page-header-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(63,63,62,0.2);
}
.page-header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 10;
}



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


.page-image {
	height: 500px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 40px;
}



.card {
	display: block;
	border-radius: 40px;
	border: none;
	box-shadow: none;
	background: #fff;
	text-decoration: none !important;
	font-weight: 400 !important;
	color: #1D1D1B !important;
}

@media print {
	.card {
		break-inside: avoid;
	}
}

.card--transparent {
	background: transparent;
	border: 2px solid #1D1D1B;
}
.card--highlighted {
	background: #1D9DD9;
}
.card-image {
	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: 20px 30px 25px 30px;
}
.card--smallLineHeight {
	line-height: 24px;
}
.card-section--button {
	padding: 0 30px;
	width: 100%;
	position: absolute;
	bottom: -25px;
}
.card-section--button .button1 {
}


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



.footer {
	height: 200px;
	background-image: url('../img/footer-bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
.footer--lightBg {
	background-color: #EEF3F6;
}
.footer .wrapper {
	padding-top: 95px;
}

.footer-logo-link {
	text-decoration: none !important;
}
.footer-logo {
	display: inline-block;
	max-height: 50px;
	max-width: 100px !important;
	margin-left: 28px;
}



.filter {
	margin-bottom: 10px;
	border-radius: 30px;
	border: 1px solid #1D1D1B;
}
.filter-heading {
	display: block;
	position: relative;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 32px 12px 16px;
	background-color: transparent;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400 !important;
	color: #222 !important;
	text-decoration: none !important;
	outline: none;
	-webkit-appearance:none;
	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;
}
.filter.is-open .filter-heading {
	background-image: none;
	background-image: linear-gradient(225deg, transparent 50%, #1D1D1B 50%), linear-gradient(315deg, #1D1D1B 50%, transparent 50%);
	background-position: calc(100% - 15px) calc(1em + 2px), calc(100% - 20px) calc(1em + 2px);
}
.filter-heading--active {
	font-weight: 600 !important;
}
.filter-options {
	padding: 0 16px 12px 16px;
}



.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 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 a {
	color: #fff !important;
}



