@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #FFF;
    --dark-blue: #001B2D;
    --yellow: #FAC100;
	--purple: #652868;
	--green: #5ED063;
}

/* GENERALES */

@keyframes scroller {
  0%  {padding-bottom: 5px;}
  10%  {padding-bottom: 0;}
  20% {padding-bottom: 5px;}
  30% {padding-bottom: 0;}
  90%{padding-bottom: 0;}
  100% {padding-bottom: 5px;}
}

*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	/* color: var(--purple); */
	font-weight: 400;
}

html,
body{
	height: 100%;
	position: relative;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	scroll-behavior: smooth;
	color: var(--dark-blue);
}

main{
	min-height: 100vh;
}

a,
a:hover{
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6{
	font-weight: 300;
}

.vh100{
	height: 100vh;
}

.white-txt{
	color: var(--white);
}

.blue-txt{
	color: var(--dark-blue);
}

.yellow-txt{
	color: var(--yellow);
}

.purple-txt{
	color: var(--purple);
}

.big-txt{
	font-size: 1.6rem;
}

.text-center{
	text-align: center;
}

.bold{
	font-weight: 500;
}

.italic{
	font-style: italic;
}

.uppercase{
	text-transform: uppercase;
}

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

.not-button{
	background: transparent;
	border: none;
}

button:focus-visible{
	outline: none;
}

.scroll-sign{
	animation-name: scroller;
  	animation-duration: 2.5s;
	animation-iteration-count: infinite;
}

.scroll-sign img{
	height: 35px;
	width: auto;
}

.scroll-sign p{
    font-size: .7rem;
}

/* HEADER */
header{
	z-index: 20;
}

header nav::before{
	content: '';
	height: 100%;
	width: 100%;
	background-color: var(--dark-blue);
	position: absolute;
	z-index: 1;
	top: -100%;
	left: 0;
	transition: all .3s linear;
}

header nav.solid::before{
	top: 0;
} 

header nav .container{
	z-index: 3;
}

header nav .navbar-brand{
	height: 80px;
	width: auto;
	transition: all .3s linear;
} 

header nav.solid .navbar-brand{
	height: 60px;
}

header nav .navbar-collapse{
	flex-grow: 0;
}

header nav .navbar-collapse ul li{
	height: fit-content;
}

header nav .navbar-collapse ul li a{
	color: var(--yellow)!important;
	opacity: .8;
	text-transform: uppercase;
	line-height: 1;
}

header nav .navbar-collapse ul li a:hover{
	color: var(--yellow);
	opacity: 1;
}

header nav .navbar-collapse .nav-link.active{
	color: var(--yellow);
	opacity: 1;
	font-weight: 600!important;
}

header nav .navbar-collapse .nav-link .menu-icon{
	width: 25px;
	height: 25px;
	object-fit: contain;
	margin-top: -2px;
}

/* FOOTER */

footer{
	background-color: var(--dark-blue);
	color: var(--yellow);
}
footer .logo{
	width: 200px;
}

footer a{
	color: var(--yellow);
}

footer .right-side p{
	text-align: right;
}

footer .right-side .rs{
	width: 25px;
	height: 25px;
	list-style-type: none;
}

footer .right-side .rs img{
	object-fit: contain;
	object-position: center;
}

/* WIDGET RRSS */
.rrss-wrapper{
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
	z-index: 4;
}

.rrss-wrapper .demicircle{
	height: 100px;
	width: 50px;
	background-color: var(--dark-blue);
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	position: relative;
	z-index: 1;
}

.rrss-wrapper .demicircle p{
	font-size: .75rem;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: center;
    left: 0;
    top: 43%;
    position: absolute;
    margin: 0;

}

.rrss-wrapper .icons{
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 0;
	transition: all .2s linear;
}

.rrss-wrapper:hover .icons{
	left: -5px;
	opacity: 1;
}

.rrss-wrapper .icons .rs{
	margin: .25rem 0;
	width: 16px;
	height: 16px;
	display: flex;
}

.rrss-wrapper .icons .rs img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: flex;
}

/* HOME */

#home .modal-video{
	z-index: 21;
	top: 0;
	left: 0;
	background-color: var(--white);
	display: none;
}

#home .modal-video video{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#home .modal-video button{
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

#home .first-view{
	height: 100vh;
	z-index: 2;
}

#home .first-view::before{
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 2;
	background: #001B2D;
	background: -webkit-linear-gradient(60deg, rgba(0, 27, 45, 1) 20%, rgba(5, 25, 48, 1) 28%, rgba(30, 13, 65, 1) 73%, rgba(39, 9, 71, 1) 100%);
	background: -moz-linear-gradient(60deg, rgba(0, 27, 45, 1) 20%, rgba(5, 25, 48, 1) 28%, rgba(30, 13, 65, 1) 73%, rgba(39, 9, 71, 1) 100%);
	background: linear-gradient(60deg, rgba(0, 27, 45, 1) 20%, rgba(5, 25, 48, 1) 28%, rgba(30, 13, 65, 1) 73%, rgba(39, 9, 71, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001B2D", endColorstr="#270947", GradientType=0);
	opacity: .7;
	mix-blend-mode: multiply;
}

#home .first-view .container{
	z-index: 2;
}

#home .first-view .container h2{
	font-size: 5rem;
}

#home .first-view .comuna{
	text-transform: capitalize;
}

#home .first-view .container .glitch{
	width: 90%;
	margin: 0 auto;
}

#home .first-view .container .comunas{
	width: 100%;
}

#home .first-view .container .comunas .btn-comuna,
#home .second-view .interior-comuna .comunas .btn-comuna{
	font-size: 1.5rem;
	margin: 1rem 1.5rem;
	line-height: 1;
	transition: all .2s linear;
}

#home .first-view .container .comunas .btn-comuna:hover,
#home .second-view .interior-comuna .comunas .btn-comuna.active{
	font-size: 2.5rem;
	margin: 0 1rem;
	margin-top: 0;
}

#home .second-view{
	z-index: 3;
	height: 100vh;
	width: 100%;
	left: 0;
	top: 0;
	display: none;
}

#home .second-view .swiper-slide.hidden{
	display: none;
}

#home .second-view .comunas-wrapper{
	overflow-x: hidden;
}
 
#home .second-view .interior-comuna{
	top: 0;
	left: 0;
	display: flex;
	transition: all .3s linear;
}

/* #home .second-view .interior-comuna.active,
#home .second-view .interior-comuna.next{
	left: 0;
} */

#home .second-view .interior-comuna::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: #001B2D;
	background: -webkit-linear-gradient(0deg, rgba(0, 27, 45, 1) 0%, rgba(0, 27, 45, 0.44) 50%, rgba(0, 27, 45, 1) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 27, 45, 1) 0%, rgba(0, 27, 45, 0.44) 50%, rgba(0, 27, 45, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 27, 45, 1) 0%, rgba(0, 27, 45, 0.44) 50%, rgba(0, 27, 45, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001B2D", endColorstr="#001B2D", GradientType=0);
	mix-blend-mode: multiply;
	opacity: .85;
	z-index: 1;
}

#home .second-view .interior-comuna .container{
	z-index: 1;
}

#home .second-view .interior-comuna .title-img{
	width: 88.5%;
    display: block;
    margin: 0 5.1%;
    position: absolute;
    top: -100%;
	transition: all .4s ease-out;
}

#home .second-view .interior-comuna .title-img.middle{
	top: calc(50% - 1.82rem);
    transform: translateY(-50%);
}

#home .second-view .interior-comuna .spacer{
	width: 90%;
	height: 0;
	padding-top: 14.3%;
	margin: 0 auto;
}

#home .second-view .interior-comuna .projects-wrapper{
	height: auto;
	position: fixed;
	top: 0;
	padding-top: calc(100vh - 140px);
	overflow-y: scroll;
	scrollbar-width: 0;
	scrollbar-color: transparent transparent;
}

#home .second-view .interior-comuna .projects{
	height: 25vh;
	max-height: 140px;
	min-height: 120px;
	bottom: 0;
	overflow-y: scroll;
	scrollbar-width: 0;
	scrollbar-color: transparent transparent;
}

#home .second-view .interior-comuna .projects .left-side{
	overflow-x: visible;
}

#home .second-view .interior-comuna .projects .left-side::before{
	content: '';
	width: 300px;
	height: 110%;
	position: absolute;
	left: calc(-300px - 1rem);
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--yellow);
	display: block;
}

#home .second-view .interior-comuna .projects .project-name{
	font-size: 3rem;
}

#home .second-view .interior-comuna .projects .circles{
	margin-left: 1.5rem;
}

#home .second-view .interior-comuna .projects .project .flecha{
	display: flex;
	margin: 1rem;
	height: 1px;
	width: 60px;
	background-color: var(--yellow);
	position: relative;
}

#home .second-view .interior-comuna .projects .project .flecha::before{
	content: '';
    width: 40px;
    height: 40px;
    border-top: solid 1px var(--yellow);
    border-right: solid 1px var(--yellow);
    position: absolute;
    right: 22px;
    top: -5px;
    transform: rotate(45deg) translateY(-50%);
	
}

#home .second-view .interior-comuna .projects .circles .circle{
	font-size: .8rem;
	width: 100px;
	height: 100px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px var(--yellow);
	border-radius: 50%;
}

#home .second-view .interior-comuna .scroll-sign{
	bottom: 15px;
	right: 1.2rem;
	z-index: 1;
}

#home .second-view .interior-comuna .scroll-sign p{
	transform: rotate(-90deg);
    position: absolute;
    top: -20px;
    left: 65%;
    width: 180px;
    height: 21px;
    transform-origin: left;
}


/* SINGLE PROYECTO */

.single-proyecto .swiper-hero{
	z-index: 0;
}

.single-proyecto .hero::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	mix-blend-mode: multiply;
	background: #001B2D;
	background: -webkit-linear-gradient(180deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	background: linear-gradient(180deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001B2D", endColorstr="#001B2D", GradientType=0);
}

.single-proyecto .container{
	z-index: 1;
}

.single-proyecto .hero .hero-content .comuna{
	background-color: var(--dark-blue);
	width: fit-content;
	line-height: 1;
}

.single-proyecto .hero .hero-content .nombre-proyecto{
	font-size: 4rem;
	line-height: .8;
	font-weight: 400;
}

.single-proyecto .hero .hero-content .bajada-hero,
.single-proyecto .hero .hero-content .desde{
	font-size: 1.6rem;
	line-height: 1;
}

.single-proyecto .hero .scroll-sign{
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.single-proyecto .bajada{
	height: auto;
	min-height: 100vh;
	background-color: var(--white);
}

.single-proyecto .bajada .svg-bg{
	position: absolute;
	z-index: 0;
	overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
}

.single-proyecto .bajada .svg-bg svg{
	position: absolute;
	z-index: 0;
	overflow: hidden;
    width: auto;
	min-width: 100%;
    height: auto;
	min-height: 100%;
    top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.single-proyecto .bajada .container{
	height: auto;
	min-height: 100%;
}

.single-proyecto .bajada .txt-bajada{
	margin-top: 15%;
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.single-proyecto .bajada .txt-bajada h2{
	font-size: 7rem;
    width: fit-content;
    letter-spacing: -12px;
	margin-right: 3rem;
}

.single-proyecto .bajada .txt-bajada h2 span{
	font-size: 1.6rem;
	letter-spacing: initial;
	padding-left: 1.3rem;
	font-weight: 400;
}
.single-proyecto .bajada .video-container{
	height: 0;
	padding-top: 41.81%;
	bottom: 0;
	right: 0;
}
.single-proyecto .bajada .spacer{
	padding-top: 25%;
	height: 30%;
}

.single-proyecto .bajada .video-container{
	width: 60%;
}

.single-proyecto .bajada .video-container .img-video{
	bottom: 0;
}

.single-proyecto .galeria{
	height: auto;
}

.single-proyecto .galeria .bg-video-container{
	left: 0;
	top: 0;
}

.single-proyecto .galeria .bg-video-container video{
	object-fit: cover;
	object-position: center;
}

.single-proyecto .galeria .marquee-container{
	overflow-x: hidden;
	width: 100%;
}

.single-proyecto .galeria .marquee{
	height: 193px;
}

.single-proyecto .galeria .marquee-container .img-wrapper{
	width: 300px;
	flex-shrink: 0;
	height: 0;
	padding-top: 193px;
}

.single-proyecto .galeria .marquee-container .img-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}

.single-proyecto .ia-module .title-ia img{
	width: 65px;
	height: 65px;
}

.single-proyecto .entorno{
	background-color: var(--white);
}

.single-proyecto .entorno .entorno-titulo{
	text-align: right;
	font-size: 3.5rem;
	line-height: 1;
}

.single-proyecto .entorno .entorno-titulo span{
	font-style: italic;
}

.single-proyecto .entorno .direccion{
	font-size: 1.6rem;
	text-align: right;
}

.single-proyecto .entorno .maps .map-link{
	width: 65px;
	height: 65px;
	display: block;
}

.single-proyecto .entorno .scroll-side .content-wrapper{
	height: 0;
	padding-top: 58.072%;
	overflow-y: scroll;
	scrollbar-color: transparent;
  	scrollbar-width: none;
}

.single-proyecto .entorno .scroll-side .content-wrapper .scroll-content{
	top: 0;
	left: 0;
}

.single-proyecto .entorno .scroll-side .content-wrapper .scroll-content .txt-scroll{
	line-height: 1;
	max-width: 350px;
	margin: 0 auto;
}

.single-proyecto .contacto-single .card-ejecutivo{
	background-color: var(--dark-blue);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	/* height: 35px; */
	bottom: calc(-56px);
    position: relative;
	transition: all .2s linear;
	box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.75);
	-webkit-box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.75);
	width: max-content;
}

.single-proyecto .contacto-single .card-ejecutivo:hover{
	bottom: 0
}

.single-proyecto .contacto-single .card-ejecutivo .card-header{
	font-size: 1.3rem;
}

.single-proyecto .contacto-single .card-ejecutivo .card-body .icono{
	width: 15px;
	height: 15px;
	object-fit: contain;
	object-position: center;
	margin-right: .25rem;
}

/* BUSCADOR IA */ 

#buscador-ia .hero::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	mix-blend-mode: multiply;
	background: #001B2D;
	background: -webkit-linear-gradient(0deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 27, 45, 0.89) 0%, rgba(0, 27, 45, 0.34) 18%, rgba(0, 27, 45, 0) 32%, rgba(0, 27, 45, 0.33) 52%, rgba(0, 27, 45, 0.59) 61%, rgba(0, 27, 45, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001B2D", endColorstr="#001B2D", GradientType=0);
}

#buscador-ia .hero .container{
	z-index: 2;
	position: relative;
	max-width: 700px;
}

#buscador-ia .hero .container h2{
	font-size: 2.5rem;
}

#buscador-ia .hero .container h2 .bigger-txt{
	font-size: 4rem;
}

/* MÓDULO IA */

.ia-form #form-ia-finder{
	display: flex;
}

.ia-form .step{
	display: flex;
	flex-direction: column;
	transition: all .2s linear;
	align-items: center;
}

.ia-form .step.hidden,
.ia-form .hidden{
	display: none!important;
}

.ia-form .step-1 input{
	background-color: transparent;
	border: solid 2px var(--purple);
	color: var(--purple);
	padding: .25rem .75rem;
}

.ia-form .step-1 input::placeholder{
	color: var(--purple);
	font-size: .9rem;
	font-weight: 600;
}

.ia-form .q-title{
	font-size: 2rem;
}

.ia-form .question{
	background: #001B2D;
	background: -webkit-linear-gradient(90deg,rgba(0, 27, 45, 1) 0%, rgba(15, 14, 41, 1) 53%, rgba(101, 40, 104, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(0, 27, 45, 1) 0%, rgba(15, 14, 41, 1) 53%, rgba(101, 40, 104, 1) 100%);
	background: linear-gradient(90deg,rgba(0, 27, 45, 1) 0%, rgba(15, 14, 41, 1) 53%, rgba(101, 40, 104, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
	startColorstr="#001B2D",
	endColorstr="#652868",
	GradientType=0
	);
	font-size: 1.5rem;
	border-radius: 15px;
	width: 100%;
}

.ia-form .step{
	width: 100%;
}

.ia-form .options{
	width: 100%;
}

.ia-form .options label{
	font-size: 1.3rem;
}

.ia-form .options input,
.ia-form .sender-wrapper p span{
	height: 2rem;
	width: 2rem;
	position: relative;
	transition: all .2s linear;
	-webkit-appearance: none;
	appearance: none;
}

.ia-form .options input:before,
.ia-form .sender-wrapper p span:before{
	content: '';
	position: absolute;
	height: 2rem;
	width: 2rem;
	border: solid 2px var(--purple);
	background-color: var(--white);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.ia-form .options input:checked:after,
.ia-form .sender-wrapper p span:after{
	content: '';
    height: 2rem;
    width: .85rem;
    border-right: solid 3px var(--green);
    border-bottom: solid 3px var(--green);
    position: absolute;
    top: -9px;
    left: 67%;
    transform: translateX(-50%) rotate(52deg) skew(14deg);
    z-index: 2;
}

.ia-form #ia-submit{
	border: solid 2px var(--purple);
	color: var(--purple);
	background-color: white;
	font-size: 1.3rem;
	border-radius: 30px;
	width: fit-content;
}

.ia-form #ia-submit img{
	width: 40px;
	height: auto;
	margin-left: 1rem;
}

.ia-form .card {
	border: none;
}

.ia-form .card .img-wrapper{
	width: 100%;
	height: 0;
	padding-top: 100%;
	position: relative;
	background-color: var(--yellow);
	border-radius: 50%;
}

.ia-form .step-6 .row{
	max-width: 700px;
}

.card .img-wrapper img{
	top: 0;
	width: 100%;
	height: 100%;
	padding: 12%;
	object-position: center;
	object-fit: contain;
}

.card .img-wrapper .options{
	bottom: -12px;
	left: calc(50% - 1rem - 2px);
	width: 2rem;
	height: 2rem;
}

.card .txt-wrapper .bold{
	font-weight: 600;
}

.card .txt-wrapper .precio::before{
	content: '';
	height: 2px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--yellow);
}

.ia-form .sender-wrapper {
	border: solid 2px var(--purple);
	display: flex;
}

.ia-form .sender-wrapper p{
	font-size: 1.3rem;
	margin-right: 1rem;
}

.ia-form .sender-wrapper .btn-cotizar{
	background-color: var(--yellow);
	border-radius: 1.5rem;
	border: none;
	font-size: 1.3rem;
}

.ia-form .others{
	font-size: 1.3rem;
}

#in-memory, #welcome {
	display: none;
}



