/* Fonts */

/* Essentials */
* {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
}

body {
	/* padding-top:70px; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.disable-scroll {
	overflow-y: hidden;
}

html,
body {
	width: 100%;
	/* height: 100%; */
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1 {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font-size: 50px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1.4;
}

p {
	padding: 0;
	margin: 0;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 0.3px;
}

a {
	color: inherit;
	text-decoration: inherit;
	cursor: pointer;
}

li {
	list-style: none;
}

.col {
	margin: 0;
	padding: 0;
}

.row {
	margin: 0;
	padding: 0;
}

.global-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	margin: 0;
	background-color: transparent;
	overflow-y: auto;
}

/*///SECTIONS///*/
.section {
	display: flex;
	padding: 0px;
	margin: 0px;
	justify-content: center;
}

.section-wrapper {
	/* display: flex; */
	/* box-sizing: border-box; */
	width: 100%;
	margin: 0;
	padding: 160px 120px 160px 120px;
}

.text-left {
	display: flex;
	padding-bottom: 140px;
}

.section-title {
	width: 77%;
	padding: 0 0 120px 0;
}

.section-text {
	width: 77%;
	padding: 0;
}

.section-title h1 {
	padding-bottom: 20px;
}

/* Navbar */
.nav-block {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	background-color: rgba(36, 36, 36, 0);
	width: 100%;
	height: 95px;
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: space-between;
	align-items: center;
	z-index: 4;
}

.logo-navbar {
	/* position: absolute;
	top: 30px;
	left: 40px; */
	margin-left: 15px;
	opacity: 1;
	z-index: 4;
	cursor: pointer;
}

a.svg {
	position: relative;
	display: inline-block;
}

a.svg::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.svg object {
	padding-top: 8px;
}

.navbar {
	background-color: rgb(36, 36, 36);
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: -100vh;
	left: 0;
	display: flex;
	justify-content: left;
	align-items: center;
	transition: top .8s cubic-bezier(1, 0, 0, 1);
	z-index: 3;
}

.change {
	top: 0;
	padding: 0;
}

.hamburger-menu {
	/* width: 35px;
	height: 30px;
	margin-right: 15px;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-around; */
	width: 35px;
	height: 24px;
	position: relative;
	/* margin: 35px auto; */
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 4;
}

.hamburger-menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 50%;
	background: white;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.hamburger-menu span:nth-child(even) {
	left: 50%;
	/* border-radius: 0 9px 9px 0; */
}

.hamburger-menu span:nth-child(odd) {
	left: 0px;
	/* border-radius: 9px 0 0 9px; */
}

.hamburger-menu span:nth-child(1),
.hamburger-menu span:nth-child(2) {
	top: 0px;
}

.hamburger-menu span:nth-child(3),
.hamburger-menu span:nth-child(4) {
	top: 11px;
}

.hamburger-menu span:nth-child(5),
.hamburger-menu span:nth-child(6) {
	top: 22px;
}

.hamburger-menu.open span:nth-child(1),
.hamburger-menu.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(2),
.hamburger-menu.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(1) {
	left: 3px;
	top: 4px;
}

.hamburger-menu.open span:nth-child(2) {
	left: calc(50% - 3px);
	top: 4px;
}

.hamburger-menu.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

.hamburger-menu.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

.hamburger-menu.open span:nth-child(5) {
	left: 3px;
	top: 15px;
}

.hamburger-menu.open span:nth-child(6) {
	left: calc(50% - 3px);
	top: 15px;
}

.nav-list {
	padding-right: 0;
	padding-left: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	margin: 0;
}

.nav-item {
	list-style: none;
}

.nav-link {
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 90px;
	font-weight: 700;
	color: white;
	letter-spacing: 1px;
	position: relative;
	height: 100px;
	padding-left: 10vw;
	opacity: .3;
	transition: 0.6s;
	cursor: pointer;
}

.nav-list li a:hover {
	color: white;
	opacity: 1;
}

/* End Navbar */

/*///VIDEOHERO///*/

#videoHero {
	background-color: transparent;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

#videoHero video {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	object-fit: cover;
}

#videoHero::after {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 2;
}

#hero-text {
	position: relative;
	padding: 56px 15px 0 15px;
	z-index: 3;
}

#hero-text h1 {
	position: relative;
	padding: 0;
	margin: 0;
	color: white;
	font-weight: 700;
	font-size: 32px;
	z-index: 3;
}
#hero-text h3,
#scroll-btn h3 {
	position: relative;
	padding: 0;
	margin: 0;
	color: white;
	font-weight: 300;
	font-size: 15px;
	z-index: 3;
}

#hero-text a {
	position: relative;
	margin: 0;
	padding: 0 0 0 0px;
}

#scroll-btn {
	z-index: 3;
	position: relative;
	padding: 0 0 30px 0;
}
#scroll-btn i {
	position: relative;
	color: white;
	z-index: 3;
}

/* /////FEATURED PROJECTS///// */
.section h2 {
	padding: 0px 0px 10px 0px;
}
.section h3 {
	padding: 0px 0px 20px 0px;
}

#featured-projects {
	background-color: white;
}
#featured-projects ul,
#featured-projects p {
	padding-bottom: 25px;
}

.project-left,
.project-right {
	padding-bottom: 200px;
}

.project-info-left {
	padding: 0px 25px 0px 0;
}

.project-info-right {
	padding: 0 0 0 25px;
}

.project-video-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.project-bg {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.project-left .project-bg img {
	object-fit: contain;
	object-position: 100% 100%;
	width: 110%;
	height: 110%;
}

.project-right .project-bg img {
	object-fit: contain;
	object-position: 55% 100%;
	width: 110%;
	height: 110%;
}

.project-video-left {
	position: absolute;
	width: 90%;
	height: auto;
	top: 0px;
	right: 0px;
	z-index: 5;
}

.project-video-right {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
	z-index: 5;
}

.project-video-left video,
.project-video-right video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.fa-play-circle {
	padding-right: 15px;
}

#featured-projects li {
	list-style: square;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 0.3px;
}

#clients {
	background-color: rgb(244, 244, 244);
}

#clients > div > div:nth-child(2) > div {
	padding: 0px;
}

#clients a {
	cursor: pointer;
}

#clients img {
	width: 100%;
	filter: opacity(.5);
	transition: 0.5s;
}

#clients img:hover {
	filter: opacity(1);
	transition: 0.5s;
}

.client-logo {
	background-color: transparent;
}

#clients > div > div:nth-child(2) > .client-logo:nth-child(2n),
#clients > div > div:nth-child(2) > .client-logo:nth-child(8n - 3),
#clients > div > div:nth-child(2) > .client-logo:nth-child(8n - 1) {
	background-color: white;
}
#clients > div > div:nth-child(2) > .client-logo:nth-child(8n - 2),
#clients > div > div:nth-child(2) > .client-logo:nth-child(8n) {
	background-color: transparent;
}

.client-logo:hover {
	background-color: white;
	box-sizing: border-box;
	border: 10px solid orange;
	transition: .3s;
}

.cta {
	background-color: maroon;
}

.modal {
	display: none;
	position: fixed;
	z-index: 6;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.80);
}

.modal-content {
	background-color: transparent;
	border: none;
	margin: auto;
	padding: 20px;
	width: 80%;
}

.close {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* Color de Fondo */

/* Footer */

footer {
	background-color: rgb(36, 36, 36);
	color: white;
}
body > div > footer > div > div > div:nth-child(1) {
	box-sizing: border-box;
}
footer a:link {
	text-decoration: none;
	color: white;
	transition: .5s;
}

footer a:visited {
	color: white;
}

footer a:hover {
	color: red;
	cursor: pointer;
}

footer a:active {
	color: red;
}

.info-wrapper-col {
	padding: 0;
	flex-grow: 5;
}

.info-wrapper {
	align-items: flex-end;
}

.footer-logo {
	padding: 0px 0px 30px 0px;
	margin: 0px;
	transition: 0.5s;
}

.footer-logo:hover {
	filter: brightness(50%);
	cursor: pointer;
}

.footer-menu {
	padding: 0px 40px 20px 0px;
	border-right: 2px solid rgb(73, 73, 73);
	height: 180px;
}

.footer-services {
	padding: 0px 0px 20px 40px;
	width: 300px;
}

.footer-menu > ul {
	margin: 0;
	padding: 0;
}

.footer-menu a {
	font-weight: 700;
	font-size: 30px;
	letter-spacing: 1px;
}

.footer-services a {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 1px;
}

.footer-services > ul {
	margin: 0;
	padding: 0;
}

.footer-social {
	padding: 0px 0px 0px 0px;
	text-align: right;
}

.fab {
	padding: 0px 0px 0px 10px;
}

.footer-copyright {
	text-align: left;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	align-self: flex-end;
	font-weight: 500;
	color: rgb(100, 100, 100);
	font-size: 12px;
	letter-spacing: 1px;
}

.footer-copyright > p {
	margin: 0;
}

.footer-contact {
	padding: 0px 0px 30px 0px;
	text-align: right;
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 1px;
}

span.aparte {
	display: block;
}

.footer-address {
	padding: 0px 0px 30px 0px;
	text-align: right;
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 1px;
}

div.footer-address > a {
	margin: 0;
}

footer p {
	font-size: 15px;
}

/* Responsive Attributes */

@media (max-width: 4000px) {
	.section-wrapper {
		width: 1340px;
	}
	.nav-block {
		width: 1340px;
		padding: 0px 120px 0px 120px;
	}
	.section-title {
		padding: 0 0px 120px 0px;
		width: 77%;
	}
	footer p {
		font-size: 15px;
	}
	#hero-text h1 {
		font-size: 45px;
	}

	#hero-text h3 {
		font-size: 20px;
	}
}

@media (max-width: 1440px) {
	.nav-link {
		font-size: 70px;
		padding-left: 10vw;
		height: 85px;
	}
	.nav-block {
		width: 100%;
		padding: 0;
	}
	.hamburger-menu {
		margin: 0 30px 0 0px;
	}

	.logo-navbar {
		margin: 0 0px 0 30px;
	}
	/* #hero-text h1 {
		font-size: 45px;
	}

	#hero-text h3 {
		font-size: 20px;
	} */
}

@media (max-width: 1200px) {
	.section-wrapper {
		padding: 90px 60px 90px 60px;
	}

	.section-title {
		padding: 0 0px 90px 0px;
		width: 80%;
	}
	.section-text {
		width: 80%;
		padding: 0;
	}
	h1 {
		font-size: 35px;
		letter-spacing: 0.1px;
	}

	h2 {
		font-size: 25px;
		letter-spacing: 0.1px;
	}

	h3 {
		font-size: 18px;
		letter-spacing: 0.1px;
		line-height: 1.4;
	}

	#featured-projects li,
	p {
		margin: 0;
		font-size: 18px;
		font-weight: 300;
		letter-spacing: 0.3px;
		line-height: 1.7;
	}

	#hero-text h1 {
		font-size: 45px;
	}

	#hero-text h3 {
		font-size: 20px;
	}
}

@media (max-width: 992px) {
	.section-wrapper {
		padding: 90px 60px 90px 60px;
	}

	.section-title {
		padding: 0 0px 70px 0px;
		width: 77%;
	}
	.section-text {
		width: 77%;
		padding: 0;
	}
	h1 {
		font-size: 27px;
		letter-spacing: 0.1px;
	}

	#hero-text h1 {
		font-size: 35px;
	}

	#hero-text h3 {
		font-size: 20px;
	}

	h2 {
		font-size: 20px;
		letter-spacing: 0.1px;
	}
	h3 {
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 0.1px;
	}
	#featured-projects li,
	p {
		font-size: 15px;
		font-weight: 400;
		letter-spacing: 0.3px;
		line-height: 1.7;
	}

	.project-bg img {
		width: 130%;
		height: 130%;
	}

	.project-video {
		width: 90%;
	}
}

@media (max-width: 768px) {
	.section-wrapper {
		padding: 90px 15px 90px 15px;
	}

	#hero-text h1 {
		font-size: 26px;
	}
	#hero-btn {
	}
	#featured-projects .section-wrapper {
		padding: 45px 0px 90px 0px;
	}

	.project-left,
	.project-right {
		padding-bottom: 100px;
	}

	.project-info-right,
	.project-info-left {
		padding: 0 15px 0 15px;
	}

	.section-title {
		padding: 0 15px 60px 15px;
		width: 100%;
	}

	.section-text {
		width: 100%;
		padding: 0;
	}

	.nav-block {
		height: 70px;
		padding: 0;
	}

	.hamburger-menu {
		margin: 0 15px 0 0px;
	}

	.logo-navbar {
		margin: 0 0px 0 15px;
	}

	a.nav-link {
		font-size: 50px;
		padding-left: 5vw;
		height: 60px;
	}

	.project-bg {
		display: none;
	}

	.project-video-left,
	.project-video-right {
		position: static;
		width: 100%;
		height: 400px;
		padding-bottom: 30px;
	}

	body > footer > div > div:nth-child(1) {
		justify-content: center;
	}
	.modal-content {
		padding: 0;
		width: 100%;
	}
	.footer-info {
		justify-content: space-between;
	}
	.footer-contact {
		text-align: center;
	}
	.footer-address {
		text-align: center;
	}
	.footer-menu,
	.footer-services {
		display: none;
	}
	.info-wrapper {
		align-items: center;
	}
	.footer-second-row {
		flex-direction: column;
	}
	.footer-copyright {
		order: 2;
		text-align: center;
	}
	.footer-social {
		order: 1;
		text-align: center;
		padding: 0px 0px 30px 0px;
	}
	.fab {
		padding: 0px 5px 0px 5px;
	}
}

@media (max-width: 576px) {
	#hero-text h1 {
		font-size: 26px;
	}

	#clients > div > div:nth-child(2) > .client-logo:nth-child(2n),
	#clients > div > div:nth-child(2) > .client-logo:nth-child(4n - 1) {
		background-color: white;
	}
	#clients > div > div:nth-child(2) > .client-logo:nth-child(4n),
	#clients > div > div:nth-child(2) > .client-logo:nth-child(4n + 1) {
		background-color: transparent;
	}
	.client-logo:hover {
		background-color: white;
	}
}

#slider {
    position: relative; /* Important for positioning the controls */
}
#slider .slide {
	width: 100vw;
    height: 100vh; /* or whatever height you prefer */
}

.slick-dots {
    bottom: 10px; /* Adjusts position from the bottom */
}

.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    border: none;
    font-size: 20px; /* Adjust as needed */
}

.slick-prev {
    left: 10px; /* Adjust as needed */
}

.slick-next {
    right: 10px; /* Adjust as needed */
}