/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* 2. Remove default margin */
* {
	margin: 0;
}

body {
	/* 3. Add accessible line-height */
	line-height: 1.5;
	/* 4. Improve text rendering */
	-webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
	font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
	text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

/*
	9. Create a root stacking context
 */
#root,
#__next {
	isolation: isolate;
}

/*
* FL Logistics
*/
body {
	font-family: "Poppins", serif, system-ui, -apple-system, BlinkMacSystemFont,
		Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #1a2035;
}

.poppins-regular {
	font-family: "Poppins", serif;
	font-weight: 400;
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", serif;
	font-weight: 700;
	font-style: normal;
}

.poppins-black {
	font-family: "Poppins", serif;
	font-weight: 900;
	font-style: normal;
}

main {
	display: grid;
	place-items: center;
	min-height: 100vh;
	min-height: 100dvh;
	min-height: 100svh;
}

.logo {
	width: 300px;
	margin: auto;
}
.logo img {
	width: 100%;
	height: auto;
}

.feats .item {
	border: 1px solid #00cca2;
	border-radius: 4px;
	background-color: #1a2035;
}
.feats .item .inner {
	padding: 2em 1em;
	position: relative;
}

.contacto h2 {
	color: #00cca2;
}
.contacto .btn,
.gracias .btn {
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
}
.contacto .btn:hover,
.contacto .btn:focus,
.gracias .btn:hover,
.gracias .btn:focus {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: #00cca2;
	color: #fff;
}
.contacto .btn svg {
	stroke: #00cca2;
}
.contacto form label {
	color: #fff;
	font-family: "Poppins", serif;
	font-weight: 700;
	font-size: 13px;
	display: block;
	margin-bottom: 0.5em;
}
.contacto form .form-control {
	background-color: #161b2d;
	color: #fff;
}

.gracias h1 {
	color: #00cca2;
}
