@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: "Roboto";
}

:root{
	--primary-color:rgba(252, 252, 252, 1);
	--black:rgba(0, 0, 0, 1);
	--lightblack:rgba(67, 67, 67, 1);
	--gray:rgba(192, 191, 192, 1);
	--blue:rgba(33, 49, 255, 1);
	--lightblue:rgba(125, 223, 255, 1);

}

body{
	background-color: var(--primary-color);
}

html{
	scroll-behavior: smooth;
}

.webpage-container{
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.webpage-subcontainer{
	width: 1250px;
	max-width: 1300px;
	height: auto;

}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	width: 100%;

}

nav ul{
	display: flex;
	gap: 30px;
}

nav ul a{
	font-weight: 500;
	color:var(--black);
	transition: all 300ms;
}

nav ul a:hover{
	color: var(--lightblue);
}

nav img{
	height: 100px;
	margin: 50px;
}

.nav-burger{
	display: none;
}

.burger{
	height: 30px;
	margin: 0px 20px;
	display: none;
}


.hero{
	width: 100%;
	height: auto;
	padding: 60px 0px;
}

h2{
	font-size: 45px;
}

h2 span{
	color: var(--gray);
}

.service-cards-container{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.service-card{
	height: 400px;
	width: 100%;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0px 10px;
	color: var(--primary-color);
	padding: 20px;
}



.card-one{
	background-image: url(logomicro.png);
}


.card-two{
	background-image: url(banner2.png);
}

.card-three{
	background-image: url(consul.png);
}


.us-container{
	margin-top: 120px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}


.us-container-txt{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}


.us-container-txt h3{
	font-size: 25px;
	font-weight: 500;
	color: var(--lightblack);
}

.us-container-txt a{
	padding: 20px;
	background-color: var(--lightblue);
	color: var(--primary-color);
	border-radius: 10px;
	font-weight: 300;
	margin-right: 20px;
	color: var(--lightblack);
}

.button-section{
	height: auto;
	width: 100%;
	display: flex;
	align-items: center;
}

.us-container-txt .btn-cotiza{
	background-color: transparent;
	color: var(--black);
	border: 1.4px solid black;
}



.us-container-txt p{
	font-size: 17px;
	letter-spacing: .5px;
	line-height: 25px;
	color: var(--lightblack);
}



.btn-cotiza:hover{
	border: 1.5px solid black;
}

.us-container-img{
	width: 100%;
	height: 100%;
	background-image: url("tec.png");
	background-size: cover;
	border-radius: 10px;
}


.contact-conatiner{
	display: grid;
	width: 100%;
	height: auto;
	grid-template-columns: repeat(2, 1fr);
	margin: 100px 0px;
	gap: 30px;
}

.contact-container-map{
	width: 100%;
	height: 100%;
	max-height: 400px;
	border-radius: 15px;	
}

.contact-container-map iframe{
	border-radius: 10px;
	height: 400px;
}

.contact-container-txt{
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 20px;
}

.contact-txt-card{
	width: 100%;
	height: 100%;
	background-color: rgba(244, 244, 244, 1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding: 20px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	gap: 20px;
}


.contact-txt-card p{
	color: var(--lightblack);
}

.contact-txt-card p span{
	color: var(--lightblue);
}

.icons{
	height: 50px;
	opacity: .5;
}

footer{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(247, 247, 247, 0.8);
}

.slider-options{
	margin: 50px 0px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}


.slider-button{
	border: none;
	background-color:rgba(240, 240, 240, 1);
	padding: 10px 40px;
	border-radius: 20px;
	transition: all .4s;
	color: var(--lightblack);
}

.slider-button.active {
    background-color: var(--lightblue);
}

.slider-button:hover{
	background-color: var(--lightblue);
	border: none;
}


.service-one{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.s-one-img{
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(187, 187, 187, 0.63);
}

.s-one-img img{
	width: 100%;
	height: 400px;
}

.s-one-txt{
	width: 100%;
	height: auto;
}

.s-one-txt h4{
	font-size: 45px;
}

.s-one-txt span{
	color: var(--lightblack);
}

.s-one-txt p{
	margin-top: 20px;
}

.wsp-btn{
	height: 60px;
	width: 60px;
	border-radius: 50%;
	position: fixed;
	top: 500px;
	left: 1360px;
}

.wsp-btn a img{
	height: 100%;
}


@media (max-width: 450px){
	nav ul a{
	display: none;
}	

	.service-cards-container{
		display: grid;
		grid-template-rows: repeat(3, 1fr);
		grid-template-columns: none;
	}

	.us-container{
	margin-top: 120px;
	display: grid;
	grid-template-columns: none;
	grid-template-rows: repeat(2);
	gap: 50px;
}

	.us-container-txt{
	padding: none;

}
	
	.us-container-txt a{
		padding: none;
	}

	.us-container{
		padding: 0px 10px;
	}


	.us-container-txt{
		padding: none;
	}

	.service-one{
		display: grid;
		grid-template-columns: none;
		grid-template-rows: repeat(2, 1fr);
		gap: 0px;
		margin-bottom: 30px;
	}

	.slider-options{
		gap: 10px;
	}
	.contact-conatiner{
		margin: 0px;
		grid-template-columns: none;
		grid-template-rows: repeat(2, 1fr);
		padding: 0px 10px;
	}

	.nav-services{
		padding: 0px 10px;
	}

	.webpage-subcontainer{
		padding: 0px 0px;
	}

	.slider-button{
		padding: 10px 20px;
	}

	.service-one> div:first-child{
		order: 2;
	}

	.service-one> div:last-child{
		order: 1;
	}

	.us-container-img{
		height: 300px;
	}

	footer p{
		font-size: 11px;
		color: var(--primary-color);
	}


    .contact-container > div:nth-child(1) {
        order: none;
    }

    .contact-container > div:nth-child(2) {
        order: 1;
    }

}


@media (max-width: 770px){
	.webpage-subcontainer{
		padding: 0px 20px;
	}
}