/*
Theme Name: La providencia
Theme URI: https://mati.agency
Version: 1.0
Author: @matiagency
Author URI: https://mati.agency
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #1E2945;
    --bs-body-bg: #fff;

    --bs-primary: #1E2945;
    --bs-primary-rgb: 30,41,69; /* rgb(30,41,69)*/
    --bs-secondary: #f58426;
    --bs-secondary-rgb: 108,117,125;
    --bs-white: #fff;
    --bs-light: #f2f6f8;
    --bs-dark: #151515;

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 50px;

}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 72px;
		--header-fixed-min-height: 70px;
	}
}

/* Utilities */


.has-primary-color, .text-primary{ 
	color: var(--bs-primary) !important; 
}

.has-secondary-color, .text-secondary{ 
	color: var(--bs-secondary) !important; 
}

.has-primary-background-color, .bg-primary{ 
	background: var(--bs-primary) !important; 
}

.has-secondary-background-color, .bg-secondary{ 
	background: var(--bs-secondary) !important; 
}

.has-white-background-color, .bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color, .bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color, .bg-black{
	background: var(--bs-black) !important; 
}

.bg-light{
	background: var(--bs-light) !important;
}


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: "Montserrat", Helvetica, sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body.header-fixed{
	padding-top: var(--header-min-height);
}


a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 600;
	line-height: 1.1em;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}


.image {
	overflow: hidden;
}

.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

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

@media screen and (min-width: 1440px){
	.container{
		padding: 0 70px;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


@keyframes zoomInUp {
	0% {
	    opacity: 0.8;
	    -webkit-transform: scale(1.15,1.15) rotate(.01deg);
	    -moz-transform: scale(1.15,1.15) rotate(.01deg);
		-ms-transform: scale(1.15,1.15) rotate(.01deg);
		-o-transform: scale(1.15,1.15) rotate(.01deg);
		transform: scale(1.15,1.15) rotate(.01deg);
	}
	100% {
	    opacity: 1;
	    -webkit-transform: scale(1, 1) rotate(.01deg);
	    -moz-transform: scale(1, 1) rotate(.01deg);
		-ms-transform: scale(1, 1) rotate(.01deg);
		-o-transform: scale(1, 1) rotate(.01deg);
		transform: scale(1, 1) rotate(.01deg);
	}
}

@keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0);}
  to {opacity: 1;  -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft {
  from {opacity: 0;-webkit-transform: translate3d(-20%, 0, 0);transform: translate3d(-20%, 0, 0);}
  to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}

@keyframes fadeInRight {
  from {opacity: 0;-webkit-transform: translate3d(20%, 0, 0);transform: translate3d(20%, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}


/* Structure > extras */

.wow{
	visibility: hidden;
}

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	min-width: 120px;
	--bs-btn-padding-x: 18px;
	--bs-btn-padding-y: 5px;
	--bs-btn-font-weight: 500;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-left: 6px;
}
/*
.btn:has(.arrow){
	display: inline-flex;
	align-items: center;
}
.btn .arrow{
	display: inline-flex;
	width: 19px ;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7039 0.456196C12.01 0.150019 12.5071 0.150019 12.8132 0.456196L17.8025 5.44545C18.1087 5.75163 18.1087 6.24865 17.8025 6.55483L12.8132 11.5441C12.5071 11.8503 12.01 11.8503 11.7039 11.5441C11.398 11.238 11.3982 10.7419 11.7039 10.4357L15.3552 6.78432L-0.000244714 6.78432L-0.000244577 5.21596L15.3552 5.21596L11.7039 1.56459C11.3982 1.25843 11.398 0.762235 11.7039 0.456196Z' fill='%231E2945'/%3E%3C/svg%3E%0A");
	background-size: contain;
	margin-left: 5px;
}
*/
@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-light{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);

    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-white);

    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-white);
}

/* Button > Arrow */

.btn-arrow{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-right: 40px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-arrow:hover{
	padding-left: 40px;
	padding-right: 18px;
}
.btn-arrow::before,
.btn-arrow::after{
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='19' height='12' viewBox='0 0 19 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7039 0.456196C12.01 0.150019 12.5071 0.150019 12.8132 0.456196L17.8025 5.44545C18.1087 5.75163 18.1087 6.24865 17.8025 6.55483L12.8132 11.5441C12.5071 11.8503 12.01 11.8503 11.7039 11.5441C11.398 11.238 11.3982 10.7419 11.7039 10.4357L15.3552 6.78432L-0.000244714 6.78432L-0.000244577 5.21596L15.3552 5.21596L11.7039 1.56459C11.3982 1.25843 11.398 0.762235 11.7039 0.456196Z' fill='%231E2945'/%3E%3C/svg%3E%0A");
	background-size: contain;
	position: absolute;
	top: calc(50% - 6px);
	left: -25px;
	width: 19px;
	height: 12px;
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 9;
}
.btn-arrow::after{
	left: auto;
	right: 12px;
}
.btn-arrow:hover::before{
	left: 15px;
}
.btn-arrow:hover::after{
	right: -25px;
}

.btn-arrow.btn-outline-primary:hover::before,
.btn-arrow.btn-outline-primary:hover::after{
	filter: invert(1) brightness(5);
}

.btn-arrow.btn-outline-light::before,
.btn-arrow.btn-outline-light::after{
	filter: invert(1) brightness(5);
}

.btn-arrow.btn-outline-light:hover::before,
.btn-arrow.btn-outline-light:hover::after{
	filter: none;
}

/**/
.btn:hover .googlemaps{
	filter: invert(1) brightness(100);
}

/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-float-mail{
    color: var(--bs-primary);
    background: var(--bs-white);
    bottom: 90px;
    border: 1px solid var(--bs-primary);
}

@media screen and (min-width:992px){
	.btn-float-mail{
	    bottom: 120px;
	}
}

.btn-float-mail:hover{
	color: var(--bs-white);
	background-color: var(--bs-primary);
	border: 1px solid var(--bs-white);
}


.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}

/* Components > forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ADADAD;
}

.form-select,
.form-control{
	line-height: 1.8em;
	border-radius: 0px;
	min-height: 48px;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
.form-select {
	--bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3982 15.203C12.1785 15.4226 11.8224 15.4226 11.6027 15.203L5.86788 9.46808C5.64821 9.24841 5.64821 8.89231 5.86788 8.67263L6.13305 8.40743C6.35271 8.18776 6.70887 8.18776 6.92854 8.40743L12.0005 13.4794L17.0724 8.40743C17.2921 8.18776 17.6482 8.18776 17.8679 8.40743L18.1331 8.67263C18.3527 8.89231 18.3527 9.24841 18.1331 9.46808L12.3982 15.203Z' fill='white'/%3E%3C/svg%3E%0A");;
	background-size: 24px;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}


/* Form Light */
.form.light .form-control{
	background-color: transparent;
	color: #fff;
}
.form.light .form-control::placeholder{
	color: #ADADAD;
}
.form.light .form-control:focus{
	border-color: #ADADAD;
}

.form.light select.form-control{
	background-color: var(--bs-primary);
	color: #ADADAD ;
}


/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Components > tables */

@media screen and (max-width: 767px){
	.table-responsive{
		white-space: nowrap;
		overflow: auto;
	}
	.table-responsive .table{
		white-space: normal;
	}
}

/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 5px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
	padding: 5px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
	ul.socialmedia li a{
		font-size: 24px;
	}
}


/* Components > Slider  */

.slider{
	position: relative;
}

.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.swiper-pagination {
	bottom: 0;
}
.swiper-pagination-bullet{
	background: #ccc;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background:var(--bs-dark);
}

.swiper-button-prev,
.swiper-button-next{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after{
	background-repeat: no-repeat;
  	background-position: center;
  	width: 100%;
	height: 100%;
	background-size: 14px;
}
.swiper-button-prev::after{
  content:'';
  position:absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7651 1.97119L1.64746 13.0888L12.7651 24.2065' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  
}
.swiper-button-next::after {
  content: '';
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23489 1.97119L12.3525 13.0888L1.23489 24.2065' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

/* Circle arrows */

.circle.swiper-button-prev,
.circle.swiper-button-next{
	width: 56px;
	height: 56px;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: rgba(0, 0, 0, 0.36);
	border: 1px solid var(--bs-white);
	border-radius: 50%;
}
.circle.swiper-button-next:hover,
.circle.swiper-button-prev:hover{
	background-color: rgba(0, 0, 0, 0.2);
}

.slider:has(.arrows.bottom){
	padding-bottom: 60px;
}
.arrows.bottom .circle.swiper-button-next,
.arrows.bottom .circle.swiper-button-prev{
	top: auto;
	bottom: 0;
}
.arrows.bottom .circle.swiper-button-prev {
	right: 75px;
	left: auto;
}

.slider:has(.arrows.bottom) .swiper-pagination{
	width: 50%;
	text-align: left;
}

@media screen and (min-width: 992px){
	.slider:has(.arrows.bottom){
		padding-bottom: 80px;
	}
}


@media screen and (max-width: 991.99px) {
	.circle.swiper-button-prev:not(.top),
	.circle.swiper-button-next:not(.top){
		position: absolute;
		width: 22px;
		height: 22px;
		top: calc(50% - 11px);
		margin-top: 0;
	}

	.circle.swiper-button-prev:not(.top)::after,
	.circle.swiper-button-next:not(.top)::after{
		background-size: 7px;
	}
}

/* Top Arrows*/
.top.circle.swiper-button-prev,
.top.circle.swiper-button-next{
	top: -60px;
	border-color: var(--bs-primary);
	background: transparent;
	width: 46px;
	height: 46px;
}
.top.circle.swiper-button-prev {
	left: auto;
	right: 65px;
}
.top.circle.swiper-button-prev::after{
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='8' viewBox='0 0 22 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.82809 0.464806C4.02335 0.269544 4.33986 0.269544 4.53512 0.464806C4.73038 0.660068 4.73038 0.976575 4.53512 1.17184L2.20699 3.49996H21.5V4.49996H2.20699L4.53512 6.82809C4.73038 7.02335 4.73038 7.33986 4.53512 7.53512C4.33986 7.73038 4.02335 7.73038 3.82809 7.53512L0.646447 4.35348C0.451184 4.15822 0.451184 3.84171 0.646447 3.64645L3.82809 0.464806Z' fill='%231E2945'/%3E%3C/svg%3E%0A");
	background-size: 22px;
}
.top.circle.swiper-button-next::after{
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='8' viewBox='0 0 22 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.1719 0.464806C17.9767 0.269544 17.6601 0.269544 17.4649 0.464806C17.2696 0.660068 17.2696 0.976575 17.4649 1.17184L19.793 3.49996H0.500038V4.49996H19.793L17.4649 6.82809C17.2696 7.02335 17.2696 7.33986 17.4649 7.53512C17.6601 7.73038 17.9767 7.73038 18.1719 7.53512L21.3536 4.35348C21.5488 4.15822 21.5488 3.84171 21.3536 3.64645L18.1719 0.464806Z' fill='%231E2945'/%3E%3C/svg%3E ");
	background-size: 22px;
}

@media screen and (min-width: 992px){
	/*.top.circle.swiper-button-prev,
	.top.circle.swiper-button-next{
		top: -60px;
	}
	.top.circle.swiper-button-prev {
		left: auto;
		right: 80px;
	}
	.top.circle.swiper-button-prev::after,
	.top.circle.swiper-button-next::after{
		background-size: 22px;
	}*/

}

/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 24px;
}
.title h2{
	font-size: 24px;
}
.title h3{
	font-size: 24px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p{
	margin: 0;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.23em;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 992px;
}

.data-title{
	margin-bottom: 25px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.data-title{
		margin-bottom: 50px;
	}
	.data-title .title h1{
		font-size: 32px;
	}
	.title h1{
		font-size: 32px;
	}
	.title h2{
		font-size: 32px;
	}
	.title h3{
		font-size: 32px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title .description {
		font-size: 19px;
	}
	.title .btn{
		margin-top: 32px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
/*@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 28px);
		left: calc(50% - 28px);
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 58px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}*/

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60dvh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}


/* Structure */

.section{
	position: relative;
	padding: 40px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: var(--bs-primary);
	color: #fff;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 222px;
	margin-top: 5px;
}

.header.fixed{
	position: fixed;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 39px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 1px;
	margin: 4px 0;
	background: var(--bs-white);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	height: calc( 100dvh - var(--header-min-height));
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-primary);
	padding-top: 80px;
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}

.header .navigation .menu li a {
	display: inline-block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
}

/* Hover */
.header .navigation .menu li > a:before {
	content: '';	
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    transition: all 0.3s;
}
.header .navigation .menu li.current-menu-item > a:before,
.header .navigation .menu li > a:hover:before{
	width: 100%;
    left: 0%;
}

@media screen and (min-width: 992px) {
	.header .navigation .menu li a {
		font-size: 24px;
	}
}

.header .navigation .menu .sub-menu{
	padding-left: 0;
    list-style: none;
    display: none;
}

.header .navigation .menu li.open-submenu > ul{
	display: block;
}

@media screen and (min-width: 1200px) {

	.header .navigation .menu li .sub-menu{
		display: none;
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.header .navigation .menu li:hover > .sub-menu {
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: inline-block;
		position: relative;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
		border-bottom-color: var(--bs-primary); 
	}


}



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: calc(100vh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}
.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 992px) {

	.landing .presentation{
		height: auto;
	}

}

.presentation .wrap {
    position: relative;
    background: var(--bs-primary);
    color: #fff;
    padding: 25px 20px;
    max-width: 560px;
    margin: 0 auto;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .presentation .wrap {
        padding: 40px 70px;
        font-size: 18px;
    }
}

.logo-presentation {
  opacity: 1;
  animation: hideLogo 1s forwards; 
  animation-delay: 1s; 
}

@keyframes hideLogo {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}



/* Modules > Banner */

.banner img{
	min-height: 220px;
	object-fit: cover;
}

@media screen and (min-width: 992px) {
	.banner img{
		min-height: 550px;
	}
}


/* Module > Gallery */
.module-gallery .description{
	max-width: 690px;
}
.module-gallery .description ul {
	padding-left: 1rem;
	margin-bottom: 0;
}

.module-gallery .description li {
    line-height: 1.5em;
}

.module-gallery .description li::marker {
  font-size: 1.2em;
  content: "· "; 
}

.module-gallery .swiper img{
	aspect-ratio: 0.86 / 1;
	object-fit: cover;
}

@media screen and (min-width: 992px){
	.module-gallery .circle.swiper-button-prev{
		left: 50px;
	}
	.module-gallery .circle.swiper-button-next{
		right: 50px;
	}

	.module-gallery .swiper img{
		aspect-ratio: 1.89 / 1;
	}
}



/* Module > Clients */

.module-clients .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-clients .swiper .swiper-slide article img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.module-clients .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}



/* Module > Amenities */

.module-amenities article {
	text-align: center;
}
.module-amenities article .thumbnail{
	margin-bottom: 23px;
}

.module-amenities article h2{
	font-size: 16px;
	font-weight: 500;
	max-width: 316px;
	margin: 0 auto;
}

.module-amenities article.vertical .thumbnail,
.module-amenities article.vertical .thumbnail img {
	aspect-ratio: 0.86 / 1;
	object-fit: cover;
}


.module-amenities article.horizontal .thumbnail,
.module-amenities article.horizontal .thumbnail img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

/*
	Pages
*/


/* Page > Home */
.page.home .about {
	min-height: 550px;
	align-content: center;
}

.page.home .modules .item .image,
.page.home .modules .item .image img{
	aspect-ratio: 1.37 / 1;
	object-fit: cover;
}

.page.home .modules .item .title{
	margin-top: 30px;
}

.page.home .modules .item .data{
	max-width: 720px;
	margin: 0 auto;
	padding: 0 30px;
}


.page.home .location {
	display: flex;
	flex-direction: column;
    justify-content: flex-end;
	height: 440px;
	background-size: cover;
	background-position: center;
}
@media screen and (min-width: 992px) {

	.page.home .about .title h1{
		font-size: 45px;
	}
	.page.home .location {
		height: 640px;
	}
}


/* Page > Masterplan */

.page.masterplan .image{
	position: relative;
}
.page.masterplan .point{
	width: 30px;
	height: 30px;
	background: var(--bs-primary);
	border-radius: 50%;
	position: absolute;
	border: solid 1px #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	line-height: 32px;
	cursor: pointer;
}


.page.masterplan .town .swiper img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}



.page.masterplan .partners .items article {
	text-align: center;
	align-content: center;
	min-height: 68px;	
	padding: 0 20px;
}


@media screen and (min-width: 992px) {
	.page.masterplan .partners .items article {
		padding: 0 80px;
		border-right: solid 1px #858584;
	}

	.page.masterplan .partners .items .item:last-child article{
		border-right: none;
	}
}

/* Pages > Contact */

@media screen and (min-width: 992px) {
	.page.contact .title h1{
		font-size: 48px;
	}
}

.page.contact .map{
	position: relative;
	background-color: #eee;
	width: 100%;
	height: 400px;
}
.page.contact .map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Pages > Thanks */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Internal */

.page.internal .content .title{
	text-align: center;
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content,
.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

.page.page-maintenance .content{
	min-height: 100vh;
}

/*
	CPT Feed
*/

/* Feed > General */

.feed article{
	position: relative;
}
.feed article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
}
.feed article .thumbnail img{
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}




/* Structure > Footer */

.footer{
	background: var(--bs-primary);
	color: #fff;
	box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 2;
}

.footer a:hover{
	text-decoration: underline;
}

.footer .widgets{
	padding: 50px 0;
	text-align: center;
}

.footer .widgets .logo{
	display: block;
	width: 298px;
	margin: 0 auto 30px;
}


.footer .widgets .menu{
	margin: 0 0 30px;
}
.footer .widgets .menu li a{
	display: block;
	padding: 3px;
}


.footer .copyright {
	border-top: solid 1px #fff;
	padding-top: 40px;
	margin-top: 30px;
}
.footer .copyright p{
	margin: 0;
	font-size: 13px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}

	.footer .vias {
		display: inline-flex;
		align-items: center;
		gap: 50px;
		font-size: 15px;
	}
	
}

/* Extras */

.fancybox__toolbar [data-fancybox-toggle-slideshow] {
  display: none !important;
}