/**************************
	RESET 
***************************/
	
	@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400;700&display=swap');

	body {
		font-family: 'Heebo', sans-serif;
		background: #ffffff;
		font-size: 28px;
		line-height: 1.1;
		color: #000000;
	}

	*::selection {
		background-color: rgba(0, 0, 0, 0.1);
	}

	*:focus {
		outline: 0 !important;
	}

	p {
		margin: 0;
	}
	
	img {
		max-width: 100%;
		height: auto;
	}
	
	a:link,
	a:visited,
	a:hover,
	a:active {
		text-decoration: none;
		color: inherit;
	}

	h1, h2, h3, h4, h5, h6 {
		margin: 0;
		font-weight: normal;
	}
	
	ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	label {
		font-weight: normal;
		margin-bottom: 0;
	}

	input,
	textarea,
	button {
		font-family: inherit;
		background-color: transparent;
		border: 0;
		padding: 0;
	}

	button {
		cursor: pointer;
		background-color: transparent;
		border: 0;
		padding: 0;
	}

	::-webkit-scrollbar	{
		width: 12px;
		height: 12px;
		background-color: #000000;
	}

	::-webkit-scrollbar-track	{
		background-color: #e5e5e5;
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.1);
	}

	::-webkit-scrollbar-thumb:hover {
		background-color: rgba(0, 0, 0, 0.2);
	}

  
	
/**************************
	GLOBALS
***************************/

	.fullheight {
		height: 100%;
	}

	.bgi {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
	}

	.opening {
		height: 550px;
		background-image: url('../images/opening-background.jpg');
		position: relative;
	}

	.opening::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 50%;
		background-color: rgba(0 0 0 / 70%);
		z-index: 1;
	}

	.opening-box {
		position: relative;
		padding-left: 50%;
		z-index: 2;
	}

	.opening-content {
		color: #ffffff;
		font-size: 41px;
	}

	.opening-content-p1 {
		margin: 25px 0 5px;
	}

	.opening-content-p2 {
		margin-bottom: 20px;
	}

	.opening-content-p2 img {
		width: 460px;
	}

	.opening-content-p3 {
		margin-bottom: 7px;
	}

	.opening-content-p4 {
		font-size: 70%;
		font-weight: 300;
	}

	.opening-image {
		background-image: url('../images/opening-image.png');
		width: 400px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 40%;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-position: center top;
	}

	.info {
		position: relative;	
	}

	.info::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 50%;
		background-color: #000000;
		z-index: 1;
	}

	.info-box {
		position: relative;
		z-index: 2;
	}

	.info-right {
		width: 50%;
		padding: 60px 0 60px 60px;
	}

	.info-right-content {
		margin-bottom: 30px;
	}

	.info-right-content h2 {
		font-size: 35px;
		font-weight: 700;
		margin-bottom: 25px;
	}

	.info-right-content p {
		margin-bottom: 15px;
	}

	.info-right-content ul {
		font-size: 23px;
	}

	.info-right-content ul li {
		margin-bottom: 10px;
	}

	.info-link {
		font-size: 20px;
		color: #868686;
		text-decoration: underline;
		text-align: right;
	}

	.info-right-link img {
		margin-right: 10px;
		position: relative;
		top: 2px;
	}

	.info-left {
		width: 50%;
		color: #ffffff;
		padding: 60px 60px 60px 35px;
	}

	.closeForm {
		background-image: url('../images/close.svg');
		background-repeat: no-repeat;
		background-size: 100% 100%;
		background-position: center center;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 20px;
		right: 20px;
		display: none;
	}

	.form-p1 {
		margin-bottom: 10px;
	}

	.form-p2 {
		font-size: 35px;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.input-wrapper {
		position: relative;
		margin-bottom: 20px;
	}

	::-webkit-input-placeholder { color: #ffffff; }
	::-moz-placeholder { color: #ffffff; }
	:-ms-input-placeholder { color: #ffffff; }
	:-moz-placeholder { color: #ffffff; }

	.input-wrapper.error input::-webkit-input-placeholder { color: #ea4f66; }
	.input-wrapper.error input::-moz-placeholder { color: #ea4f66; }
	.input-wrapper.error input:-ms-input-placeholder { color: #ea4f66; }
	.input-wrapper.error input:-moz-placeholder { color: #ea4f66; }

	.input-wrapper input {
		width: 100%;
		border-bottom: 1px solid rgba(255 255 255 / 70%);
		font-size: 23px;
		padding: 2px 0;
		font-weight: 300;
		color: #ffffff;
		transition: color 0.3s ease, border 0.3s ease;
	}

	.input-wrapper span {
		position: absolute;
		left: 0;
		top: 100%;
		transform: translateY(-50%);
		font-size: 11px;
		color: #ea4f66;
		opacity: 0;
		transition: opacity 0.3s ease, top 0.3s ease;
	}

	.input-wrapper.error input {
		border-color: #ea4f66;
		color: #ea4f66;
	}

	.input-wrapper.error span {
		opacity: 1;
		top: 50%;
	}

	.checkbox-wrapper {
		text-align: right;
		margin-bottom: 20px;
	}

	.checkbox-wrapper label {
		font-size: 17px;
		color: #ffffff;
		padding-top: 3px;
		padding-right: 30px;
		position: relative;
		line-height: 1;
		cursor: pointer;
	}

	.checkbox-wrapper label::before,
	.checkbox-wrapper label::after {
		content: "";
		position: absolute;
	}

	.checkbox-wrapper label::before {
		top: 0;
		right: 0;
		width: 21px;
		height: 21px;
		background-color: #ffffff;
	}

	.checkbox-wrapper label::after {
		top: 4px;
		right: 4px;
		width: 14px;
		height: 14px;
		background-color: #000000;
		transform: scale(0);
		transition: transform 0.3s ease;
	}

	.checkbox-wrapper input:checked + label::after {
		transform: scale(1);
	}

	.checkbox-wrapper input {
		display: none;
	}

	.submitbutton {
		width: 100%;
		height: 52px;
		background-color: #ffffff;
		font-size: 30px;
		color: #000000;
		position: relative;
	}

	.submitbutton svg {
		width: 15px;
		margin-right: 5px;
	}

	.thankWrapper {
		display: none;
		font-weight: 700;
		padding: 50px 0;
	}

	.gallery {
		height: 650px;
	}

	.gallery-image-1,
	.gallery-image-2,
	.gallery-video {
		height: 100%;
	}

	.gallery-image-1 {
		width: 26%;
		background-image: url('../images/gallery-1.jpg');
		background-position: top;
	}

	.gallery-image-2 {
		width: 17%;
		background-image: url('../images/gallery-2.jpg');
	}

	.gallery-video {
		width: 57%;
		background-image: url('../images/gallery-video.gif') ,url('../images/gallery-video-2.jpg');
	}

	.gallery-video a {
		display: block;
		position: relative;
		height: 100%;
	}

	.testimonials {
		padding: 50px 0;
	}

	.testimonials h2 {
		font-size: 45px;
		font-weight: 700;
		margin-bottom: 50px;
	}

	.testimonials-item-image {
		display: inline-block;
		width: 250px;
		height: 250px;
		box-shadow: 10px 20px 36px rgba(0 0 0 / 8%);
		margin-bottom: 50px;
	}

	.testimonials-item-content {
		max-width: 280px;
		margin: 0 auto;
		font-size: 18px;
	}

	.testimonials-item-content p:first-of-type {
		font-weight: 700;
		margin-bottom: 30px;
	}

	.team {
		background-color: #000000;
		color: #ffffff;
		padding: 50px 0 90px;
		margin: 10px 0;
	}

	.team h2 {
		font-size: 45px;
		line-height: 1;
		margin-bottom: 60px;
	}

	.team-list {

	}

	.team-slider .slick-list {
		padding: 0 14vw !important;
	}

	.team-item {
		padding: 0 15px;
	}

	.team-item-image {
		height: 21vw;
		background-color: #ffffff;
		position: relative;
	}

	.team-item-image::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(transparent, rgba(0 0 0 / 80%) 85%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.team-item-image p {
		position: absolute;
		bottom: 15px;
		right: 0;
		left: 0;
		z-index: 2;
		padding: 0 15px;
		font-size: 35px;
		text-align: center;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.team-item-image:hover::after,
	.team-item-image:hover p {
		opacity: 1;
	}

	.ending {
		position: relative;
	}

	.ending::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 50%;
		background-color: #000000;
		z-index: 1;
	}

	.ending-box {
		position: relative;
		z-index: 2;
	}

	.ending-right {
		width: 50%;
		padding: 60px 0 60px 60px;
		color: #ffffff;
	}

	.ending-left {
		width: 50%;
		padding: 60px 60px 60px 0;
	}

	.footer {
		max-width: 350px;
	}

	.footer-logo {
		margin-bottom: 35px;
	}

	.footer-logo svg {
		width: 180px;
		height: auto;
		fill: #000000 !important;
	}

	.footer p {
		font-size: 30px;
		font-weight: 100;
		margin-bottom: 30px;
	}

	.footer-social {

	}

	.footer-social a {
		display: inline-block;
		margin: 0 15px;
	}

	.footer p.disclaimer {
		font-size: 15px;
		color: #000000;
		margin-top: 15px;
		line-height: 1;
	}


	.sticky {
		position: fixed;
		bottom: 0;
		right: 0;
		left: 0;
		background-color: #000000;
		color: #ffffff;
		padding: 10px;
		z-index: 90;
		display: none;
	}

	.openForm {
		width: 100%;
		padding: 10px 15px;
		height: 50px;
		background-color: #d5ffb5;
		color: #000000;
		font-weight: 700;
	}

	.openForm svg {
		margin-right: 10px;
	}

	.footer-whatsapp {
		margin-top: 30px;
	}	

	.whatsapplink,
	.phonelink {
		display: block;
		font-size: 27px;
		font-weight: 700;
		position: relative;
		padding: 11px 20px 11px 40px;
		width: 100%;
	}

	.whatsapplink {
		background-color: #27d367;
		color: #ffffff !important;
	}

	.phonelink {
		margin-top: 10px;
		background-color: #ffffff;
		color: #000000 !important;
	}

	.whatsapplink img,
	.phonelink img {
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translateY(-50%);
		width: 18px;
		height: auto;
	}

	.form-contact {
		display: none;
	}




	
/**************************
	MEDIA QUERIES
***************************/

	/* GENERAL */
	@media (min-width: 992px) {
		.form-popup {
			display: block !important;
		}
	}
	@media (min-width: 1400px) {
		.container {
			max-width: 1280px;
		}
	}

	/* 1400 */
	@media (max-width: 1399px) {
		body {
			font-size: 25px;
		}
		.opening-content-logo img {
			width: 350px;
		}
		.opening-content {
			font-size: 35px;
		}
		.opening-content-p2 img {
			width: 380px;
		}
		.form-p2 {
			font-size: 30px;
		}
		.checkbox-wrapper label {
			font-size: 14.5px;
		}
		.footer p.disclaimer {
			font-size: 13px;
		}
		.submitbutton {
			font-size: 26px;
		}
		.gallery {
			height: 500px;
		}
		.info-right-content ul {
			font-size: 21px;
		}
	}

	/* 1200 */
	@media (max-width: 1199px) {
		body {
			font-size: 23px;
		}
		.opening {
			height: 450px;
		}
		.opening-content-logo img {
			width: 300px;
		}
		.opening-content {
			font-size: 30px;
		}
		.opening-content-p2 img {
			width: 330px;
		}
		.info-link {
			font-size: 17px;
		}
		.info-right-content h2 {
			font-size: 25px;
		}
		.form-p2 {
			font-size: 25px;
		}
		.info-right-content ul {
			font-size: 19px;
		}
		.info-right {
			padding: 40px 0 40px 30px;
		}
		.info-left {
			padding: 40px 30px 40px 0;
		}
		.gallery {
			height: 450px;
		}
		.testimonials h2,
		.team h2 {
			font-size: 35px;
		}
		.testimonials-item-image {
			width: 220px;
			height: 220px;
			margin-bottom: 30px;
		}
		.testimonials-item-content {
			max-width: 250px;
			font-size: 16px;
		}
		.testimonials-item-content p:first-of-type {
			margin-bottom: 20px;
		}
		.team h2 {
			margin-bottom: 30px;
		}
		.team {
			padding: 50px 0 60px;
		}
		.team-item-image {
			height: 32vw;
		}
		.team-item-image p {
			font-size: 30px;
		}
		.ending-right {
			padding: 40px 0 40px 30px;
		}
		.ending-left {
			padding: 40px 30px 40px 0;
		}
	}

	/* 992 */
	@media (max-width: 991px) {
		.opening {
			height: 370px;
		}
		.opening-content-logo img {
			width: 200px;
		}
		.opening-content {
			font-size: 23px;
		}
		.opening-content-p1 {
			margin: 20px 0 5px;
		}
		.opening-content-p2 img {
			display: block;
			margin: 7px auto 0;
			width: 260px;
		}
		.opening-content-p2 {
			margin-bottom: 15px;
		}
		.info-box {
			z-index: initial;
		}
		.info-right {
			padding: 50px 0;
			width: auto;
			text-align: center;
		}
		.info-left {
			padding: 0;
			width: auto;
		}
		.info::after {
			display: none;
		}
		.info-link br {
			display: none;
		}
		.gallery {
			height: auto;
		}
		.gallery-video,
		.gallery-image-1,
		.gallery-image-2 {
			height: 65vw;
		}
		.gallery-video {
			width: 100%;
			order: 1;
		}
		.gallery-image-1 {
			width: 70%;
			order: 2;
		}
		.gallery-image-2 {
			width: 30%;
			order: 3;
		}
		.testimonials h2, .team h2 {
			font-size: 30px;
		}
		.testimonials-item:not(:last-of-type) {
			margin-bottom: 50px;
		}
		.testimonials-item-image {
			margin-bottom: 0;
		}
		.testimonials-item-content {
			max-width: 350px;
			margin: 0;
			font-size: 18px;
		}
		.testimonials-item.flex-row .testimonials-item-content {
			text-align: right;
			padding-right: 50px;
		}
		.testimonials-item.flex-row-reverse .testimonials-item-content {
			text-align: left;
			padding-left: 50px;
		}
		.team {
			margin-bottom: 0;
		}
		.team-item-image {
			height: 45vw;
		}
		.team-item-image::after,
		.team-item-image p {
			opacity: 1;
		}
		.team-slider .slick-list {
			padding: 0 25vw !important;
		}
		.ending {
			padding: 50px 0;
		}
		.ending-right {
			display: none !important;
		}
		.ending::after {
			display: none;
		}
		.ending-left {
			padding: 0;
			width: auto;
		}
		.form-popup {
			position: fixed;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			z-index: 100;
			background-color: rgba(0 0 0 / 90%);
			display: none;
		}
		.form {
			background-color: #000000;
			padding: 60px 30px 40px;
			max-width: 420px;
			margin: 0 auto;
			position: relative;
		}
		.closeForm {
			display: block;
		}
		.form-p1 {
			display: none;
		}
		.sticky {
			display: block;
		}
		.wrapper {
			padding-bottom: 70px;
		}
		.submitbutton {
			font-size: 24px;
		}
		.form-contact {
			margin-top: 30px;
			font-size: 27px;
			font-weight: 700;
			text-align: center;
			display: block;
		}
		.form-contact p {
			margin-bottom: 10px;
		}
	}

	/* 768 */
	@media (max-width: 767px) {
		.opening {
			height: 320px;
		}
		.opening-content-logo img {
			width: 170px;
		}
		.opening-content {
			font-size: 20px;
		}
		.opening-content-p2 img {
			width: 180px;
		}
		.info-right {
			padding: 30px 0;
		}
		.info-right-content h2 {
			margin-bottom: 20px;
		}
		.info-right-content p {
			margin-bottom: 10px;
		}
		.info-right-content ul li {
			margin-bottom: 5px;
		}
		.gallery-video, .gallery-image-1, .gallery-image-2 {
			height: 60vw;
		}
		.gallery-image-1 {
			width: 65%;
		}
		.gallery-image-2 {
			width: 35%;
		}
		.testimonials h2, .team h2 {
			font-size: 25px;
		}
		.testimonials h2 {
			margin-bottom: 30px;
		}
		.testimonials-item:not(:last-of-type) {
			margin-bottom: 30px;
		}
		.testimonials-item-image {
			flex-shrink: 0;
			width: 180px;
			height: 180px;
		}
		.testimonials-item-content {
			max-width: 100%;
			flex-shrink: 1;
			font-size: 17px;
		}
		.testimonials-item.flex-row .testimonials-item-content {
			padding-right: 30px;
		}
		.testimonials-item.flex-row-reverse .testimonials-item-content {
			padding-left: 30px;
		}
		.team {
			padding: 40px 0;
		}
		.ending {
			padding: 30px 0;
		}
		.footer {
			max-width: 250px;
		}
		.footer-logo svg {
			width: 150px;
		}
		.footer-logo {
			margin-bottom: 20px;
		}
		.footer p {
			font-size: 23px;
			margin-bottom: 20px;
		}
		.footer-social a {
			margin: 0 7px;
		}
		.footer-social a svg {
			width: 28px;
			height: auto;
		}
		.whatsapplink,
		.phonelink {
			font-size: 18px;
			padding: 11px 15px 11px 30px;
		}
		.whatsapplink img,
		.phonelink img {
			left: 10px;
			width: 16px;
		}
		.form-contact {
			font-size: 18px;
		}
	}

	/* 576 */
	@media (max-width: 575px) {
		.opening {
			height: 60vw;
		}
		.opening::after {
			width: 55%;
		}
		.opening-box {
			padding-left: 45%;
		}
		.opening-content {
			font-size: 4.2vw;
		}
		.opening-content-logo img {
			width: 30vw;
		}
		.opening-content-p2 img {
			width: 35vw;
			margin-top: 3px;
		}
		.opening-content-p1 {
			margin-bottom: 7px;
		}
		.opening-content-p2 {
			margin-bottom: 10px;
		}
		body {
			font-size: 4vw;
		}
		.info-right-content h2,
		.testimonials h2,
		.team h2 {
			font-size: 120%;
		}
		.info-right-content ul,
		.testimonials-item-content {
			font-size: 80%;
		}
		.info-link {
			font-size: 70%;
		}
		.info-right-link img {
			top: 0;
			margin-right: 5px;
		}
		.gallery-video, .gallery-image-1, .gallery-image-2 {
			height: 60vw;
		}
		.gallery-video a img {
			width: 8vw;
		}
		.testimonials {
			padding: 30px 0;
		}
		.testimonials h2 span {
			display: none;
		}
		.testimonials-item-image {
			width: 32vw;
			height: 32vw;
		}
		.testimonials-item-content p:first-of-type {
			margin-bottom: 15px;
		}
		.testimonials-item.flex-row .testimonials-item-content {
			padding-right: 20px;
		}
		.testimonials-item.flex-row-reverse .testimonials-item-content {
			padding-left: 20px;
		}
		.team-slider .slick-list {
			padding: 0 20vw !important;
		}
		.team-item-image {
			height: 52vw;
		}
		.team-item-image p {
			font-size: 25px;
		}
		.footer-logo svg {
			width: 25vw;
		}
		.footer {
			max-width: 50vw;
		}
		.footer p {
			font-size: 100%;
		}
		.footer-social a svg {
			width: 25px;
		}
		.openForm {
			font-size: 110%;
		}
		.form-p2 {
			font-size: 130%;
		}
		.submitbutton {
			font-size: 110%;
			height: 50px;
		}
		.input-wrapper input {
			font-size: 110%;
		}
		.footer-whatsapp {
			margin-top: 20px;
		}
		.whatsapplink,
		.phonelink {
			font-size: 3.7vw;
			padding: 11px 10px 11px 20px;
		}
		.whatsapplink img,
		.phonelink img {
			width: 3.5vw;
		}
		.form-contact {
			font-size: 3.7vw;
		}
		.form {
			padding: 60px 20px 40px;
		}
		.form .whatsapplink,
		.form .phonelink {
			font-size: 5vw;
		}
		.form .whatsapplink img,
		.form .phonelink img {
			width: 4vw;
		}
		.form .form-contact {
			font-size: 5vw;
		}
	}

	/* 480 */
	@media (max-width: 479px) {
		.form {
			max-width: 100%;
			margin: 0 15px;
		}
		.wrapper {
			padding-bottom: 65px;
		}
		.openForm {
			height: 45px;
		}
		.openForm svg {
			width: 16px;
			height: auto;
		}
		body {
			font-size: 4.5vw;
		}
		.form-p2 {
			font-size: 120%;
		}
		.submitbutton {
			font-size: 120%;
			height: 45px;
		}
		.info-right-content h2 {
			margin-bottom: 15px;
		}
		.info-right-content {
			margin-bottom: 20px;
		}
		.testimonials h2 {
			margin-bottom: 20px;
		}
		.testimonials-item-content p:first-of-type {
			margin-bottom: 10px;
		}
		.team-item-image p {
			font-size: 20px;
		}
	}

	/* 380 */
	@media (max-width: 379px) {
		body {
			font-size: 4.8vw;
		}
		.team {
			padding: 30px 0;
		}
		.team h2 {
			margin-bottom: 20px;
		}
		.team-item {
			padding: 0 10px;
		}
		.openForm {
			font-size: 100%;
			padding: 10px;
			height: 40px;
		}
		.openForm svg {
			margin-right: 3px;
		}
		.wrapper {
			padding-bottom: 60px;
		}
		.form-p2 {
			font-size: 100%;
		}
		.submitbutton {
			font-size: 100%;
			height: 40px;
		}
		.checkbox-wrapper label {
			font-size: 13px;
		}
		.team-item-image p {
			font-size: 18px;
		}
	}