/*
Theme Name: PRG
Theme URI: https://bellop.io
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

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

	/* Defaults */
	--header-min-height: 60px;	
	--header-fixed-min-height: 60px;

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

    --bs-body-color: #222222;
    --bs-body-bg: #F1F1EF;

	--bs-primary: #9C9388; /*  Stone */
	--bs-primary-rgb: 156,147,136;

	--bs-secondary: #C7B7A6; /*Sand */
	--bs-secondary-rgb: 199,183,166;

    --bs-white: #F1F1EF; /* Off White */
    --bs-rgb: 241,241,239;

    --bs-light: #E2DBCB; /*Cream*/
    --bs-light-rgb: 226,219,203;

    --bs-dark: #222222; /* Onix */
    --bs-dark-rgb: 34,34,34;

	--bs-black: #000;
	--bs-gray: #cacaca;

	/* 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: 90px;
		--header-fixed-min-height: 70px;
	}*/
}

/* Animate */

@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(0, 0); }          
}
@keyframes fadeIn{
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp{
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft{
	from { opacity: 0; transform: translate3d(-40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight{
	from { opacity: 0; transform: translate3d(40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

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

.wow{
	visibility: hidden;
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.25, .1, .25, 1);
	animation-play-state: paused;
	will-change: opacity, transform;
}
.wow.fadeIn {
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

.wow.slow {
	animation-duration: 6s;
}

.fadeIn { animation-name: fadeIn; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.zoomInUp  { animation-name: zoomInUp ; }


/* 3. Structure */

html{
	scroll-behavior: smooth;
}

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

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

body.is-project.header-fixed{
	padding-top: 0;
}

body:has(.header.transparent){
	padding-top: 0;
}



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

h1, h2, h3, h4, h5, h6{
	font-family: "Atyp Display", Helvetica, sans-serif;
	line-height: 1em;
	font-weight: 400;
}

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, .thumbnail {
	overflow: hidden;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.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;
}
.container-fluid{
	max-width: 1920px;
}

/*
[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,
	.container-fluid{
		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 bounce{
	0% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translate(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}

/* Structure > extras */

.animated{
	will-change: opacity, transform;
}

.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: 142px;
	--bs-btn-padding-x: 20px;
	--bs-btn-padding-y: 8px;
	--bs-btn-font-weight: 400;
	font-size: 16px;
	border-radius: 0;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@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-dark{
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-dark);

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

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

.btn-outline-dark{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-dark);

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

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

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

    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);
}
.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-dark);
    --bs-btn-hover-border-color: var(--bs-white);

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



/* Buttons Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}
.btn-float-edit{
	left: 30px;
	right: auto;
	bottom: 15px;
    padding: 10px 15px;
    font-weight: 500;
    color: #fff;
    background: rgba(0,0,0,0.75);
    opacity: 0.95;
}
.btn-float-edit:hover{
    background: var(--bs-primary);
    color: #fff;
}

.btn-float-whatsapp{
    width: 50px;
    height: 50px;
	border-radius: 50%;
	font-size: 32px;
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

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

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


/* Structure */

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

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


.mt-80 {
	margin-top: 40px;
}
@media screen and (min-width: 992px){
	.mt-80 {
		margin-top: 80px;
	}
}


/* Structure > Menu Top*/

.top-menu{
	background: var(--bs-dark);
	color: var(--bs-white);	
	height: 34px;
	align-content: center;
}

.top-menu .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-menu .logo{
	max-width: 42px;
}

.top-menu .go-back{
	font-size: 12px;
}

/* Structure > Header */


.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: var(--bs-white);
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 80px;
}

.header.fixed{
	position: fixed;
	background: var(--bs-white);
	box-shadow: 0px 1px 1px rgba(128, 128, 128, 0.15);
	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: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-dark);
	transition: 0.3s;
	border-radius: 6px;
}
.header.active .nav-menu .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header.active .nav-menu .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header.active .nav-menu .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}
body.open-menu .header .navigation {
	display: block;
}
.header .navigation .menu {
	position: relative;
}

.header .navigation .menu > li{
	position: relative;
	padding: 15px 0;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 20px;
	font-weight: 400;
}

.header .navigation .menu li a:before{
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	background: var(--bs-dark);
	transition: all 0.3s;
}

/*.header .navigation .menu li.active a:before,*/
.header .navigation .menu li a:hover:before{
	width: 100%;
	left: 0;
}

.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .menu-contact{
	padding: 10px 20px;
	color: var(--bs-white);
	background: var(--bs-dark);
	border: solid 1px var(--bs-dark);
	transition: 0.3s all;
}

.header .navigation .menu-contact:hover{
	background: transparent;
	color: var(--bs-dark);
}

.header.active .navigation{
	height: calc(100dvh - var(--header-fixed-min-height));
	align-content: center;
}

/* Header > Transparent */
.header.transparent:not(.fixed):not(.active){
	position: fixed;
	background: transparent;
	color: var(--bs-white);
}
.header.transparent:not(.fixed):not(.active) .logo{
	filter: invert(1);
}

.header.transparent:not(.fixed):not(.active) .navigation .menu > li > a:before{
	background: var(--bs-white);
}

.header.transparent:not(.fixed):not(.active) .navigation .menu-contact{
	background: var(--bs-white);
	color: var(--bs-dark);
	border-color: var(--bs-white);
}

.header.transparent:not(.fixed):not(.active) .navigation .menu-contact:hover{
	background: transparent;
	color: var(--bs-white);
}

.header.transparent:not(.fixed):not(.active) .nav-menu .menu-line {
	background: var(--bs-light);
}


.header.transparent:not(.fixed):not(.active) .navigation .menu .menu-item-has-children > a:after{
	background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z' fill='%23F1F1EF'/%3E%3C/svg%3E%0A");  
}

/* Arrow */

.header .navigation .menu  .menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z' fill='%23222222'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
	background-size: contain;
    margin-left: 4px;
    background-position: center center;    
    transition: transform 0.3s;
}
.header .navigation .menu .menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}


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

	.header .logo{
		position: absolute;
		left: 70px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	}
	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		background: transparent;
	}	

	.header .navigation .menu {
		display: flex;
		flex-direction: row;
		gap: 32px;
		margin: 0;
	}	

	.header .navigation .menu li a {
		font-size: 16px;
		padding: 2px 0;
	}	

	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 59px;
		left: 0;
		width: 225px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
    	text-align: left;
    	padding: 16px 24px;
	}

	.header .navigation .menu li.active a:before{
		width: 100%;
		left: 0;
	}


	.header .navigation ul 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: block;
		padding: 8px 0;
		color: var(--bs-dark);
	}
	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	/* Fixed */
	.header.fixed{
		min-height: var(--header-fixed-min-height);
	}
	
	/* */
	.header .navigation .menu-contact{
		padding: 5px 20px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
		padding-bottom: 20px;
	}	
	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}

	.header .navigation .menu > li{
		padding: 0;
	}
	
}


/* Is Project */
.is-project .header {
    visibility: hidden;
    position: fixed;
}

.is-project .header.fixed {
    display: block; 
    visibility: visible;
}

.is-project .header .logo{
	max-width: fit-content;
}

/* Components > Forms */

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

.bg-dark .form-control{
	border: solid 1px var(--bs-white);
	color: var(--bs-white);
}
.bg-dark .form-select:focus,
.bg-dark .form-control:focus{
	 border-color: var(--bs-white);
}

.bg-dark select.form-select{
	background-color: var(--bs-dark);
	background-image: 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 d='M7.08716 9.02344C7.18798 9.02344 7.26496 9.05385 7.34302 9.13184L11.6458 13.459L11.9993 13.8145L16.6819 9.13184C16.7595 9.05424 16.826 9.03227 16.9065 9.03516C17.0008 9.0386 17.0822 9.07117 17.1682 9.15723C17.2463 9.23531 17.2766 9.31223 17.2766 9.41309C17.2765 9.51371 17.2461 9.59001 17.1682 9.66797L12.2493 14.5869C12.1951 14.6411 12.1524 14.667 12.1243 14.6787C12.0887 14.6935 12.0489 14.7021 12.0002 14.7021C11.9758 14.7021 11.9534 14.6993 11.9329 14.6953L11.8752 14.6787L11.8225 14.6484C11.8018 14.634 11.7781 14.6138 11.7512 14.5869L6.80688 9.64355C6.73305 9.56972 6.70686 9.50009 6.71021 9.40527C6.714 9.29797 6.75001 9.2141 6.83228 9.13184C6.9102 9.05403 6.98657 9.02351 7.08716 9.02344Z' fill='%23F1F1EF' stroke='%23F1F1EF'/%3E%3C/svg%3E%0A");
}

.required{
	color: #ff0000;
}


.form-select,
.form-control{
	border-radius: 0;
	line-height: 1.8em;
	border: solid 1px var(--bs-dark);
	background-color: transparent;
}

.form-select:focus,
.form-control:focus{
	background-color: transparent;
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 0;
}

/* 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 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: 23px;
	height: 23px;
	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);
}


#modalDownload .modal-body {
	padding: 60px;
}


#modalDownload .btn-close{
	top: 20px;
	right: 20px;
	filter: none;
	opacity: 1;
}


/* 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: 12px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	font-size: 21px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

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



/* Components > Slider > Swiper */

.swiper.overflow{
	overflow: visible;
}

.swiper-pagination {
	bottom: 0;
}
.swiper-pagination-bullet{
	background: var(--bs-dark);
	opacity: 0.2;
}
.swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-pagination.light .swiper-pagination-bullet{
	background: var(--bs-light);
}


.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 48px;
	height: 48px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: var(--bs-white);
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
	background-size: 16px;
}

.circle.swiper-button-prev { 
	left: -20px;
}

.circle.swiper-button-next { 
	right: -20px;
	background-image: url('assets/img/icons/icon-arrow-next.svg'); 
}

.swiper-button-prev:after,
.swiper-button-next:after{
	content: none;
}


.circle.swiper-button-next.dark,
.circle.swiper-button-prev.dark{
	background-color: var(--bs-dark);
	border: 1px solid var(--bs-light);
}

.circle.swiper-button-prev.dark {
	background-image: url('assets/img/icons/icon-arrow-prev-light.svg');
}
.circle.swiper-button-next.dark{
	background-image: url('assets/img/icons/icon-arrow-next-light.svg'); 
}

@media screen and (max-width: 768px){
	.circle.swiper-button-next,
	.circle.swiper-button-prev{
		width: 28px;
		height: 28px;
		background-size: 12px;
	}
	.circle.swiper-button-prev{left: -10px;}	
	.circle.swiper-button-next{right: -10px;}
}


/* Components > Title */

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

.title h1,.title h2,.title h3,.title h4,.title h5{
	margin: 0;
	margin-bottom: 12px;
}

.title h1{
	font-size: 30px;
	font-weight: 500;
}
.title h2{
	font-size: 24px;
}
.title h3{
	font-size: 21px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}

.title .btn{
	margin-top: 16px;
}
.title .subtitle{
	margin-bottom: 8px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.02em;
	 font-feature-settings: "ss02";
}

.title .description {
	font-size: 18px;
	margin-bottom: 0;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}

.title.max-width-sm{
	max-width: 480px;
}
.title.max-width{
	max-width: 640px;
}
.title.max-width-lg{
	max-width: 992px;
}

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

	.title h1,.title h2,.title h3,.title h4,.title h5{
		margin-bottom: 24px;
	}

	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 56px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 36px;
	}
	.title h3.big{
		font-size: 48px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	
	.title .subtitle{
		margin-bottom: 16px;
	}
	.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;
}



/* 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 */

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

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



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 100svh;
	min-height: 600px;
	padding: 100px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}
.presentation .container{
	position: relative;
	z-index: 2;
}


.presentation .title {
	max-width: 680px;
	color: var(--bs-white);
	margin: 0;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	right: 20px;
	bottom: 10px;
	width: 28px;
	height: 39px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	animation: bounce 3s infinite;
	z-index: 3;
}

.presentation .arrows button{
	filter: brightness(0) invert(1);
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.presentation:before{
	content: '';
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	position: absolute;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.21%, rgba(0, 0, 0, 0.2) 100%), rgba(0, 0, 0, 0.4);

}

@media screen and (min-width: 992px) {
	.presentation .slider .slide{
		max-height: 855px;
		padding: 60px 0;
	}

    .presentation .title p:not(.subtitle){
    	font-size: 18px;
    }
	.presentation .arrow-down{
		bottom: 50px;
		right: 70px;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	background: var(--bs-dark) no-repeat top center;
	background-size: cover;
	color: var(--bs-white);
	overflow: hidden;
}

.banner .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}
.banner .parallax-img {
  will-change: transform;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.banner .container > div:not(.bg) {
    position: relative;
    z-index: 1;
}

.banner .menu{
	display: none;
}

.banner .screen-1 {
	position: relative;
	height: calc(30svh - 34px);	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 50px 0;
}
.banner .screen-2 {
	display: flex;
	align-items: flex-end;
	height: 70svh;
	padding-bottom: 50px;
}

.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    right: 0;
    bottom: -60dvh;
    width: 28px;
    height: 39px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    z-index: 3;
}

@media screen and (min-width: 992px){	
	.banner .screen-1 {		
		height: calc(100svh - 34px);		
		padding: 50px 0;
	}
	.banner .screen-2 {
		height: 90svh;
		padding-bottom: 120px;
	}
	.banner .arrow-down{
		bottom: 50px;
	}

	.banner .menu{
		display: flex;
		gap: 16px;
	}

	.banner .parallax-img {
	  height: 220dvh;
	}

	.banner .arrow-down{
		 bottom: -50px;
	}
}


@media screen and (min-width: 1920px){
	.banner .parallax-img {	 
	  height: 240dvh;
	}
}


/* Module > Tab Menu */

.module-tabs .tabs {
	min-height: 55px;
	/*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
}
.module-tabs .tabs ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #CACACA;
}
.module-tabs .tabs ul li a {
    display: block;
    padding: 15px 12px;
    position: relative;
}
.module-tabs .tabs ul li a.active,
.module-tabs .tabs ul li a:hover{
	color: var(--bs-primary);
}

.module-tabs .tabs ul li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: 0.3s all;
}
.module-tabs .tabs ul li.current-menu-item a:before,
.module-tabs .tabs ul li a.active:before,
.module-tabs .tabs ul li a:hover:before{
    left: 10%;
    width: 80%;
}
.module-tabs .tabs.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}


/* Modules > Accordion */

.module-accordion .items .item{
	position: relative;
	margin-bottom: 3px;
	border-bottom: solid 1px var(--bs-primary);
	padding: 20px 0;
}

.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;

}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]{
	
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	margin-top: 15px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}

.module-accordion .items .item .answer .data {
	max-width: 980px;
}

@media screen and (min-width: 992px) {
	.module-accordion .items .item .question:after {
		right: 20px;
	}
}



/* Module > Contact */
.module-contact .btn{
	min-width: 211px;
}

/* Modules > Image & Text */
.module-img-txt .row{
	--bs-gutter-x: 80px;
}


/* Module > Image */

.module-image .image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


/* Module > Video */

.module-video .video.archive video {
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
}

/* Module Slider */
.module-slider {
	position: relative;
}
.module-slider.gallery-full:has(.swiper-pagination){
    padding-bottom: 60px;
}
.module-slider.gallery-full img{
	aspect-ratio: 1.83 / 1;
	object-fit: cover;
}



/*
	Pages
*/


/* Page > Home */



/* Single > Projects */

.single.projects .banner .menu li a:hover{
	text-decoration: underline;
	text-underline-offset: 2px;
}

.single.projects .architecture .container {
	position: relative;
}

.single.projects .partners .items .title h5{
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 500;
}

.single.projects .amenities .title.max-width p{
	max-width: 420px;
}
@media screen and (min-width: 992px){
	.single.projects .architecture .title{
		position: absolute;
		left: 70px;
		top: 0;
	}
}

.single.projects .project.text-light {
	color: var(--bs-white) !important;
}

/* Map */

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

#map .leaflet-control-attribution {
    display: none;
}

@media screen and (min-width: 992px){
	#map{
		height: 738px;
	}
}

/* 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 .widgets{
	border-top: solid 0.5px rgba(241, 241, 239, 0.5);
	padding: 50px 0;
	text-align: center;
}

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


.footer .widgets .menu{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.footer .copyright,
.footer .bottom-menu {
	border-top: solid 1px var(--bs-white);
	padding-top: 32px;
	margin-top: 40px;
}
.footer .copyright p{
	margin: 0;
	font-size: 12px;
}

.footer .bottom-menu .logo img{
	max-width: 42px;
}

.footer .bottom-menu .logo{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	gap: 12px;
	color: var(--bs-white);
}
.footer .bottom-menu .go-back{
	font-size: 12px;
}


.footer .widgets .menu li a{
	position: relative;
}
.footer .widgets .menu li a:before{
	content: '';
	width: 0%;
	height: 1px;
	background: var(--bs-white);
	position: absolute;
	bottom: -4px;
	left: 50%;
	transition: all 0.3s;
}

.footer .widgets .menu li a:hover:before{
	width: 100%;
	left: 0;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	.footer .widgets .menu{
		flex-direction: row;
		gap: 32px;
	}
	.footer .copyright {
		margin-top: 80px;
	}
	.footer .bottom-menu {
		margin-top: 32px;
	}
	.footer .bottom-menu .logo{
		flex-direction: row;
	}
	
}

/**/

.is-project .footer .logo-project img{
	filter: invert();
}


