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

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

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

	/* Colors */
	--bs-heading-color: inherit; 

    --bs-body-color: #161616;
    --bs-body-bg: #EDEDED;

    --bs-primary: #988794; 
    --bs-primary-rgb: 152,135,148; /* rgba(152, 135, 148, 1)*/

    --bs-secondary: #C0BAAF;
    --bs-secondary-rgb: 192,186,175; /* rgba(192, 186, 175, 1)*/

    --bs-white: #EDEDED;
    --bs-light: #f2f6f8;
    --bs-dark: #161616;

    --bs-border-radius: 24px;
    --bs-border-color: #161616;
}

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


/* 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", 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;
}


.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 bounce {
    0% {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 50%);
        -webkit-transform: translate(0, 50%);
        -moz-transform: translateY(0, 50%);
    }

    100% {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
    }
}

@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);
  }
}

/* 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: 150px;
	--bs-btn-padding-x: 24px;
	--bs-btn-padding-y: 11px;
	--bs-btn-font-weight: 500;
}
.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: var(--bs-light);
    --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-dark{
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-dark);

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

/* See More */

.see-more{
	display: inline-flex;
    align-items: center;
}
.see-more:after{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='14' viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.999999L4.5 4L8 7L1 13' stroke='%23161616' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
    width: 9px;
    height: 14px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.see-more.light:after{
	filter: invert(1);
}

/* 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;
	    bottom: 70px;
	}
}

.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: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
	background: transparent !important;
}

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

/* 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);
}

/* Input File */

.input-file-wrapper{
	position: relative;
    display: block;
    padding: 30px 15px;
    margin: 5px 0 0;
    text-align: center;
    background: transparent;
    border-radius: 0;
    border: dashed 1px #000;
    cursor: pointer;
}
.input-file-wrapper input{
	opacity: 0;
	width: 0;
}
.input-file-wrapper .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-wrapper .files span{
	display: block;
	color: #000;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-wrapper:hover{
	background: #fff;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Form > Light*/

.form.light .form-control{
	background: transparent;
	border: solid 1px var(--bs-white);
	color: var(--bs-white);
}

.form.light .form-control::placeholder{
	color: var(--bs-white);
}

/* 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: 20px;
	}
}

#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);
}

.modal button:focus {
	box-shadow: none;
}

.modal .modal-header {
	border-bottom: none;
}

/* 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: 12px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
}
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;
}

/* Components > Slider > Swiper */

.slider.swiper:has(.swiper-pagination){
    padding-bottom: 40px;
}
.slider.swiper .swiper-pagination {
	bottom: 0;
}
.slider.swiper .swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.slider.swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

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

.slider.swiper .swiper-button-prev:after{
	content: '';
	width: 24px;
	height: 24px;
	background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: 24px;
}


.slider.swiper .swiper-button-next:after { 
	background-image: url('assets/img/icons/icon-arrow-next.svg'); 
	background-repeat: no-repeat;
    background-position: center;
}

.slider.swiper .circle.swiper-button-next,
.slider.swiper .circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}

.slider.swiper .circle.light.swiper-button-next,
.slider.swiper .circle.light.swiper-button-prev{
	filter: invert(1);
}

/* Components > 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);
}


/* Categories Filter */

.categories-filter ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    gap: 16px;
}
.categories-filter ul li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px var(--bs-primary);
    border-radius: 50px;
    position: relative;
}
.categories-filter ul li a.active,
.categories-filter ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* Components > Title */

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

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

.title h1{
	font-size: 52px;
	letter-spacing: -0.016em;
}


.title h2{
	font-size: 24px;
}
.title h3{
	font-size: 32px;
	letter-spacing: -0.01em;
}
.title h4{
	font-size: 28px;
}
.title h5{
	font-size: 22px;
}

.title p:not(.subtitle){
	margin: 0;
	margin-top: 12px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
}

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 144px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 56px;
	}
	.title h4{
		font-size: 36px;
	}
	.title h5{
		font-size: 24px;
	}
	.title p:not(.subtitle){
		margin-top: 24px;
	}

	.title .description {
		font-size: 18px;
	}
	.title .btn{
		margin-top: 30px;
	}

}

/* Components > Video Player */
.video-wrapper{
	border-radius: 24px;
	overflow: hidden;
}
.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
	border-radius: 24px;
}
.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-light);
	color: #000;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	mix-blend-mode: lighten;
}
/*.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 ul {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.share ul li a{
	display: block;
	font-size: 21px;
}
.share ul li a:hover{
	color: var(--bs-primary);
}


/* 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: 50px 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);	
	transition: 0.3s all;
	z-index: 999;
	background: var(--bs-body-bg);
	border-bottom: solid 1px var(--bs-dark);
}
.header.absolute:not(.active):not(.fixed){
	position: absolute;
	background: transparent;
	border-bottom: solid 1px var(--bs-body-bg);
}

.header.absolute:not(.active):not(.fixed) .logo{
	filter: brightness(5);
}

.header.active{
	background: var(--bs-primary);
}
.header.active .logo img{
	opacity: 0;
}

.header.active .logo {
	content: '';
	background:  url('assets/img/logo-active.png') no-repeat left center;
	width: 202.5px;
	max-width: 202.5px;
	background-size: contain;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 71px;
	height: calc(var(--header-min-height) - 2px);	
	align-content: center;
}

.header.fixed{
	position: fixed;
	background: var(--bs-body-bg);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

.header.fixed.active{
	background: var(--bs-primary);
}

.header .socialmedia li a:hover{
	color: var(--bs-dark);
	transform: translateY(-2px);
}

/* Header > Navigation */

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

.header.absolute:not(.fixed):not(.active) .nav-menu .menu-line {
	background: var(--bs-body-bg);
}

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	height: calc(100dvh - var(--header-min-height));
}
.header .navigation.active {
	background: var(--bs-primary);
	display: flex;
	flex-direction: column;
    justify-content: flex-end;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: inline-block;
	position: relative;
	font-size: 36px;
	line-height: 1em;
	font-weight: 600;
	letter-spacing: -0.01em;
	padding: 10px 0;
}
.header .navigation .menu li a:after{
	content: '';
	width: 0;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--bs-dark);
	transition: all 0.3s;
}


.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	/*transform: translateX(10px);*/
}

.header .navigation .menu li.current-menu-item a:after,
.header .navigation .menu li a:hover:after{
	width: 100%;
}


.header .navigation .menu-logo{
	max-width: 500px;
}
.header .navigation .data:first-child {
	padding: 38px 0;
}
.header .navigation .data:last-child {
	padding: 13px 0;
	border-top: solid 1px var(--bs-dark);
}


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

	.header .navigation .menu li a {
		font-size: 60px;
	}

	.header .navigation .data{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}

@media screen and (max-width: 991.99px) {
	.header .navigation .container{
	    flex-direction: column;
	    align-items: flex-start;
	}

	.header .navigation .data:first-child .container{
		height: 65vh;
		justify-content: space-between;
	}
	.header .navigation .menu-logo{
		max-width: 200px;
	}
}

/*
	Modules
*/


/* Module > Video */
.module-video {
	position: relative;
	aspect-ratio: 16 / 9;
}

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


/* Module > Presentation */

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


.presentation .title {
	max-width: 960px;
	color: var(--bs-white);
	position: relative;
	z-index: 2;
}

.presentation .title h1 {
	font-size: 36px;
}

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


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

.presentation:after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));

}

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

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

	.presentation .title h1{
		font-size: 66px;
	}
}


@media screen and (max-width: 991.99px) {
	.presentation .buttons{
		display: none;
	}
}


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

.module-contact{
	
}

/* Module > Tabs */

.module-tabs .tab-content article {
	display: flex;
	flex-direction: column;
	align-items: center;	
}

@media screen and (min-width: 992px) {
	.module-tabs .tab-content article {
		flex-direction: row;
	}

	.module-tabs .tab-content article .thumbnail {
		min-width: 50%;
	}

	.module-tabs .tab-content article .data {
		padding: 0 25px;
	}
}



/*
	Pages
*/


/* Page > Home */

.page.home .about{
	background: url('assets/img/others/home-about-bg.webp') no-repeat center;
	background-size: cover;
}
.page.home .about .title .description{
	max-width: 540px;
	margin: 0 auto;
	margin-top: 24px;
}

.page.home .projects .items article {
	position: relative;
}

.page.home .projects .items article .thumbnail {
	aspect-ratio: 0.75 / 1;
	overflow: hidden;
}
.page.home .projects .items article .thumbnail img{
	aspect-ratio: 0.75 / 1;
	object-fit: cover;
	transition: all 0.5s;
}
.page.home .projects .items article:hover .thumbnail img{
	transform: scale(1.1);
}
.page.home .projects .items article .data{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	color: var(--bs-white);
}

.page.home .projects .items article .data .title .tag{
	display: inline-block;
	border: solid 1px var(--bs-white);
	font-size: 14px;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	padding: 9px 12px;
	border-radius: 100px;
	margin: 0 0 16px 0;
}
.page.home .projects .items article .data .title h2{
	font-size: 66px;
	margin-bottom: 16px;
}

@media screen and (min-width:992px){
	.page.home .projects .items article .thumbnail,
	.page.home .projects .items article .thumbnail img{
		aspect-ratio: 2.09 / 1;
	}
	.page.home .projects .items article .data .title h2{
		font-size: 66px;
	}
}

.page.home .feed-blog article .excerpt,
.page.home .feed-blog article .category,
.page.home .feed-blog article .see-more,
.page.home .feed-blog article .meta{
	display: none;
}

/*.page.home .blog.feed .item article .thumbnail img{
	object-fit: cover;
}
.page.home .blog.feed .item-1 article .thumbnail,
.page.home .blog.feed .item-1 article .thumbnail img{
	aspect-ratio: 0.97 /1;
}
.page.home .blog.feed .item-2 article .thumbnail,
.page.home .blog.feed .item-2 article .thumbnail img{
	aspect-ratio: 0.79 /1;
}
.page.home .blog.feed .item-3 article .thumbnail,
.page.home .blog.feed .item-3 article .thumbnail img{
	aspect-ratio: 0.82 /1;
}
.page.home .blog.feed .item-4 article .thumbnail,
.page.home .blog.feed .item-4 article .thumbnail img{
	aspect-ratio: 1.06 /1;
}
.page.home .blog.feed .item-5 article .thumbnail,
.page.home .blog.feed .item-5 article .thumbnail img{
	aspect-ratio: 1.09 /1;
}
.page.home .blog.feed .item-6 article .thumbnail,
.page.home .blog.feed .item-6 article .thumbnail img{
	aspect-ratio: 1.43 /1;
}*/

/* Page > About */

.page.about .banner .items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 220px;
}

.page.about .banner .item-1 {
  	width: 35%;
 	z-index: 3;
 	transform: translateY(140px);
}

.page.about .banner .item-2 {    
    position: absolute;
    left: 25%;
    width: 55%;
    z-index: 2;
}

.page.about .banner .item-3 {
	transform: translateY(70px) translateX(-25px);
  	width: 25%;
    z-index: 1;
}

.page.about .banner .thumbnail img {
  border-radius: 20px;
  box-shadow: 0px 8px 12px 6px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width:992px){
	.page.about .banner .items {
    	align-items: flex-end;
    	height: 550px;
	}
	.page.about .banner .thumbnail img {
	  border-radius: 24px;
	}
}


.page.about .about .title {
	max-width: 775px;
}
@media screen and (min-width:992px){
	.page.about .about .title h2{
		font-size: 32px;
	}
}


.page.about .team .items article .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.page.about .team .items article .name{
	font-size: 18px;
}

@media screen and (min-width:992px){
	.page.about .team .items article .name{
		font-size: 20px;
	}
}


.page.about .gallery .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}


.page.about .rrhh{
	background: var(--bs-primary) url('assets/img/others/rrhh-bg.webp') no-repeat center;
	background-size: cover;
}

@media screen and (min-width:992px){
	.page.about .rrhh .title h3{
		font-size: 36px;
	}
}



/* Page > Blog */

.page.blog .feed.featured article .thumbnail {
	aspect-ratio: 1.09/1;
	border-radius: 24px;
}

.page.blog .feed.featured article .thumbnail img{
	aspect-ratio: 1.09/1;
	object-fit: cover;
	border-radius: 24px;
}

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


}

/* Page > Projects */
.page.projects .banner .links{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.page.projects .banner .links li{
	width: 100%;
}

.page.projects .banner .links li a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px var(--bs-dark);
	font-size: 24px;
	font-weight: 600;
}

.page.projects .banner .links li a:hover{
	color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.page.projects .banner .links li a:hover svg {
	transform: rotate(90deg);
}
.page.projects .banner .links li a:hover svg path{
	fill: var(--bs-primary);	
}

.page.projects .banner .module-video {
	border-radius: 24px;
	overflow: hidden;
}

@media screen and (min-width:992px){
	.page.projects .banner .links{
		flex-direction: row;
		justify-content: space-between;
	}
	.page.projects .banner .links li{
		width: 30%;
	}
}

.page.projects .module-project .categories-filter ul li a.active,
.categories-filter ul li a:hover{
	background: var(--bs-dark);
	color: var(--bs-white);
}

.page.projects .module-project .items article{
	position: relative;
}
.page.projects .module-project .items article a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.page.projects .module-project .items article .thumbnail{
	overflow: hidden;
	position: relative;
	border-radius: 24px;
}
.page.projects .module-project .items article .thumbnail,
.page.projects .module-project .items article .thumbnail img{
	aspect-ratio: 1.01 / 1;
	object-fit: cover;
	transition: all 0.3s;
}

.page.projects .module-project .items article:hover .thumbnail img{
	transform: scale(1.1);
}

.page.projects .module-project .items article .thumbnail .city{
	position: absolute;
	bottom: 24px;
	left: 24px;
	text-transform: uppercase;
	color: var(--bs-light);
	font-size: 14px;
	letter-spacing: 0.05em;
}


.page.projects .module-project .items article .state{
	font-size: 14px;
	text-transform: uppercase;
	border: solid 1px var(--bs-dark);
	border-radius: 100px;
	padding: 9px 12px;
}

.page.projects .module-project .items article .logo{
	height: 100px;
}

.page.projects .module-project .items article .data{
	padding: 24px 0;
}

.page.projects .module-project .title h2{
	font-size: 62px;
	letter-spacing: -0.016em;
}

@media screen and (min-width:992px){
	.page.projects .module-project .title h2{
		font-size: 144px;
	}

}

@media screen and (min-width:992px){
	.page.projects .module-project .layout-list article{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row-reverse;
	}

	.page.projects .module-project .layout-list article .thumbnail,
	.page.projects .module-project .layout-list article .thumbnail img{
		aspect-ratio: 1.52 / 1;
	}

	.page.projects .module-project .layout-list article .thumbnail,
	.page.projects .module-project .layout-list article .data {
		width: 48%;
	}

}


/* Pages > Contact */

.page.contact .content,
.module-contact{
	background: var(--bs-dark) url('assets/img/others/contact-bg.webp') no-repeat center;
	background-size: cover;
	color: var(--bs-white);
	padding-top: calc( var(--header-min-height) + 50px);
}

.page.contact .form {
	max-width: 755px;
	margin: 0 auto;
}


.page.contact .offices .items .nav li{
	display: block;
	padding-left: 20px;
	border-left: solid 2px transparent;
}

.page.contact .offices .items .nav li:has(a.active){
	border-left: solid 2px var(--bs-primary);
}

.page.contact .offices .items .nav li .link{
	font-weight: 600;
}
.page.contact .offices .items .nav li .link:hover{
	text-decoration: underline;
}


/* 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: 100vh;
}

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

.page.page-404 .content .title h1,
.page.page-maintenance .content .title h1{
	font-size: 52px;
}

/*
	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.4 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	border-radius: 24px;
	overflow: hidden;
}
.feed article .thumbnail img{
	aspect-ratio: 1.4 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

/* Feed > Blog */


.feed-blog article .data {
	padding: 10px 0;
}
.feed-blog article .data h2{
	font-size: 20px;
}
.feed-blog article .data p{

}
.feed-blog article .category{
	font-weight: 600;
	text-transform: uppercase;
}

.feed-blog article .meta{
	display: flex;
	font-size: 14px;
	gap: 8px;
}

@media screen and (min-width:992px){
	.feed-blog article .data h2{
		font-size: 24px;
	}
}
@media screen and (max-width:991.99px){
	.feed-blog article{
		border-bottom: solid 1px #cacaca;
		padding-bottom: 12px;
	}
}


/*
	CPT Single
*/

/* CPT > Single */

.single{
	
}

.single .content article.post-content{

}
.single .content article.post-content img{
	max-width: 100%;
	height: auto;
}

.single .content article.post-content .wp-block-quote{
	border-left: solid 2px var(--bs-dark);
	padding-left: 30px;
}


/* CPT > Single > Blog */
.single.blog .banner .title {
	max-width: 780px;
}
.single.blog .banner .title h1{
	font-size: 24px;
}

.single.blog .content .thumbnail img{
	aspect-ratio: 2.19 / 1;
	object-fit: cover;
}

.single.blog .content a{
	color: var(--bs-primary);
}
.single.blog .content .wp-block-image img {
	border-radius: 24px;
}

@media screen and (min-width: 992px){
	.single.blog .title h1{
		font-size: 48px;
	}
	.single.blog .title .excerpt{
		font-size: 24px;
	}

	.single.blog .meta{
		display: flex;
		justify-content: space-between;
	}

	.single.blog .content {
		font-size: 18px;
	}
}


.single.blog .tags {
	margin: 40px 0;
    padding: 20px 0;
}
.single.blog .tags h4{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.single.blog .tags ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 16px;
}
.single.blog .tags ul li a{
	display: block;
	background: transparent;
	color: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 20px;
	padding: 5px 20px;
}

.single.blog .tags ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}




/* Structure > Footer */

.footer a:hover{
	color: var(--bs-primary);
	text-decoration: underline;
}

.footer {
	font-size: 14px;
	color: #8B8B8B;
}

.footer .widgets{
	padding: 50px 0;
}

.footer .widgets h4{
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0;
}

.footer .widgets .logo{
	display: block;
	margin-top: 50px;
}

.footer .widgets .menu li a{
	display: block;
	padding: 4px 0;
}

.footer .widgets .menu > li > a{
	font-size: 20px;
	font-weight: 600;
}

.footer .widgets .menu .sub-menu{
	list-style: none;
	padding: 0;
}

.footer .copyright{
	border-top: solid 1px #8B8B8B;
	padding-top: 30px;
	margin-top: 30px;
}
.footer .copyright p{
	margin: 0;
	font-size: 14px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .menu{
		display: flex;
		justify-content: space-between;
	}
	
}
@media screen and (max-width: 991.99px){
	.footer .widgets .menu .sub-menu{
		display: none;
	}
	.footer .widgets .copyright{
		text-align: center;
	}
}

