@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

body {
	font-family: "PT Sans", sans-serif;
	background: #162B4E;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.header {
	background-color: #162B4E;
}

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	color: #c2ff05;
	font-size: 35px;
	font-weight: 800px;
}

.menu .navbar ul {
	display: flex;
}

.menu .navbar ul li a h2{
		font-size: 25px;
		padding: 0 20px;
		color: #c2ff05;
		display: block;
		font-weight: 600;
}

.menu .navbar ul li a h2:hover {
	color: #666666;
}

#menu {
	display: none;
}

.menu-icono {
	width: 25px;	
}

.menu label {
	cursor: pointer;
	display: none;
}

.header-content {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;	
}

.header-txt h1{
	font-size: 40px;
	color: #FFFFFF;
}

p {
	font-size: 14px;
	color: #c9c9c9;
	margin-bottom: 25px;
}

.btn-1 {
	display: inline-block;
	padding: 10px 25px;
	color: #FFFFFF;
	background-color: #FF8400;
	text-transform: uppercase;
	border-radius: 25px;
	font-size: 16px;
}

.btn-1:hover {
	background-color: #F38004;
}

.header-img {
	flex-basis: 50%;
}

.services {
	padding: 80px 0;
	text-align: center;
}

h1 {
	color: #FFFFFF;
	font-size: 40px;
}

h2 {
	color: #FFFFFF;
	font-size: 30px; 
}

h5 {
	color: #FFFFFF;
	font-size: 40px;
	text-shadow: 0 0 25px #FF005A;
}

.services-content {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.services-1 {
	flex-basis: calc(15% - 35px);
}

.services-1 img {
	width: 30px;
	margin-bottom: 10px;
}

.services h3 {
	color: #c2ff05;
	font-size: 20px;
	margin-bottom: 10px;
}

.products {
	padding: 0 0 80px 0;
	text-align: center;
}

.products-content {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.products-1 {
	background-color: #666666;
	padding: 20px;
	border-radius: 20px;
}

.products-1 h4 {
	color: #c2ff05;
	font-size: 22px;
	margin-bottom: 5px;
}

.products-1 p {
	color: #000080;
	margin-bottom: 10px;
}

.testimonio {
	text-align: center;
	padding-bottom: 80px;
}

.testimonio-content {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.testimonio-1 {
	flex-basis: calc(50% - 50px);
	padding: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	background: #FFFFFF;
}

.testimonio-1 img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 5px;
}

.testimonio-1 h3 {
	color: #666666;
	font-size: 25px;
	margin-bottom: 10px;
}

.testimonio-1 p {
	margin-bottom: 0;
	color: #000000;
}

.footer {
	border-top: 1px solid #FFFFFF;
	padding: 20px 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-content ul {
	display: flex;	
}

.footer-content ul li a{
	display: block;
	padding: 10px;
	color: #c2ff05;
	font-size: 18px;
	font-weight: 600;
}

.footer-content ul li a:hover {
	color: #666666;
}

@media(max-width:991px) {
	.menu {
		padding:20px;
		position: relative;		 
	}

	.menu label{
		display: initial;
	}

	.menu .navbar {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #FF5A2C;
		display: none;
	}

	.menu .navbar ul {
		flex-direction: column;
	}

	.menu .navbar ul li {
		width: 100%;
		padding: 20px 0;
	}

	.menu .navbar ul li a:hover {
		color: #FFFFFF;
	}

	#menu:checked ~ .navbar {
		display: initial;
	}

	.header-content {
		padding: 30px;
		flex-direction: column;
		text-align: center;		
	}

	.header-txt {
		padding: 0 0 40px 0; 
	}

	.services {
		padding: 30px;		
	}

	.services-content {
		flex-direction: column;
		margin-top: 10px;
	}

	.products {
		padding: 50px;
	}

	.products-content {
		margin-top: 30px;
		grid-template-columns: repeat(1, 1fr);
	}

	.testimonios {
		padding: 50px;		
	}

	.testimonio-content {
		flex-direction: column;
		margin-top: 30px;
	}

	.testimonio-1 {
		margin-bottom: 30px;
	}

	.footer {
		padding: 30px;
		text-align: center;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-content ul {
		flex-direction: column;
	}
}