@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&disaply=swap');

:root {
	--primary-color: #808080;
	--secondary-color: #1c3fa8;
	--dark-color: #002240;
	--light-color: #f4f4f4;
	--blue-color: #047aed;
}


* {box-sizing: border-box;
	padding:  0;
	margin: 0;
}

body{
	font-family: 'lato', sans-serif;
	color: #fff;
	line-height: 1.6;
	 }
ul {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #fff;
}

h1,
h2 {
	font-weight: 300;
	line-height: 1.2;
	margin: 10px 0;

}
h3 {
	color: #000;
}
p {
	margin: 10px 0;
}

img {
	width: 100%;
}

/* Navbar */
.navbar {
	background-color: #000;
	height: 70px;
}
.navbar ul {
	display: flex;
}
.navbar a {
	padding: 10px;
	margin: 0 5px;
}
.navbar a:hover {
	border-bottom: 2px #fff solid;
}
.navbar {
	justify-content: space-between;
}
.navbar .flex {
	justify-content: space-between
}

/* Showcase */

 .showcase {
 	height: 400px;
 	background-color: #000;
 	color: #fff;
 	position: relative;
 }
.showcase h1 {
	font-size: 40px ;
}
.showcase p {
	margin: 20px 0;
}
.showcase .grid {
	overflow: visible;
	grid-template-columns: 55% 45%;
	grid-gap: 30px;
}
.showcase-form {
	position: relative;
	top: 60px;
	height: 350px;
	width: 400px;
	padding: 40px;
	z-index: 100;
}
.showcase-form .form-control {
	margin: 20px 0;
}
.showcase-form input[type='text'],
.showcase-form input[type='email'] {
	border: 0;
	border-bottom: 1px solid #b4becb;
	width: 100%;
	padding: 3px;
	font-size: 16px;
}
.showcase-form input:focus {
	outline: none;
}

.showcase::before,
.showcase::after {
	content: '';
	position: absolute;
	height: 100px;
	bottom: -70px;
	right: 0;
	left: 0;
	background: #fff;
	transform: skewY(-3deg);
	-webkit-transform: skewY(-3deg);
	-moz-transform: skewY(-3deg);
	-ms-transform: skewY(-3deg);
}

/* Stats */
.stats {
	padding-top: 100px;
}
.stats .grid p {
	color #000
}

/* Utilities */
.container {
	max-width: 1100px;
	margin: 0 auto;
	overflow: auto;
	padding: 0 40px;
}

.card {
	background-color: #fff;
	color: #333;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	margin: 10px;
}

.card-logo {
        background-color: #fff;
        color: #333;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        margin: 10px;
}


.btn {
	display: inline-block;
	padding: 10px 30px;
	cursor: pointer;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 5px;
}
.btn-outline {
	background-color: transparent;
	border: 1px #fff solid;
}
.btn:hover {
	transform: scale(0.98);
}
.text-center {
	text-align: center;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;

}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px ;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
/* Margin */
.my-1 {
	margin: 1rem 0;
}
.my-2 {
	margin: 1.5rem 0;
}
.my-3 {
	margin: 2.0rem 0;
}
.my-4 {
	margin: 3.0rem 0;
}

/* Backgrounds & colored buttons */

.bg-primary,
.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
}
.bg-secondary,
.btn-secondary {
	background-color: var(--secondary-color);
	color: #fff;
}
.bg-dark,
.btn-dark {
	background-color: var(--dark-color);
	color: #fff;
}
.bg-light,
.btn-light {
	background-color: var(--light-color);
	color: #333;
}
/* Footer */
.footer .social a {
	margin: 0 10px;
	color: #fff;	
}

/* Tablets and under */
@media(max-width:  768px) {
	.grid,
	.showcase .grid,
	.stats .grid, {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
.showcase {
	height: auto;
}
.showcase-text {
	text-align: center;
	margin-top: 40px;
}
.showcase-form {
	justify-self: center;
	margin: auto;
}

}
/* Mobile */
@media(max-width:  500px) {
	.navbar {
		height: 110px;
			}
	.navbar .flex {
		flex-direction: column;
				}


.navbar ul {
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.1);
			}
}
