@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,400&display=swap");

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: "open sans"sans-serif;
	background: #fff;
	color: #333;
	line-height: 1.6;
}

ul {
	list-style: none;
}

a {
	color: #333;
	text-decoration: none;
}

h1,
h2 {
	font-weight: 300;
	line-height: 1.2;
}

p {
	margin: 10px 0;
}

img {
	width: 100%;
}

/* navbar */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #333;
	color: #fff;
	opacity: 0.8;
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	padding: 0 30px;
	transition: 0.5s;
}

.navbar.top {
	background: transparent;
}

.navbar a {
	color: white;
	padding: 10px 20px;
	margin: 0 5px;
}

.navbar a:hover {
	border-bottom: #104e8b 3px solid;
}

.navbar ul {
	display: flex;
}

.navbar .logo {
	font-weight: 500;
}

/* Header */
.hero {
	background: url("../images/home/showcase.jpg") no-repeat center center/cover;
	height: 100vh;
	position: relitive;
	color: #fff;
}

.hero .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	padding: 0 20px;
}

.hero .content h1 {
	font-size: 55px;
}

.hero .content p {
	font-size: 23px;
	max-width: 600px;
	margin: 20px 0 30px;
}

.hero:: {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* opacity: overlay; */
	background: #333;
	opacity: 0.2;
}

/* moves content in front or behind an object */
.hero * {
	z-index: 10;
}

.hero.blog {
	z-index: url("../Images/home/blog.jpg") no-repeat center center/cover;
	height: 35vh;
}

/* Icons */
.icons {
	padding: 30px;
}

.icons h3 {
	font-weight: bold;
	margin-bottom: 15px;
}

.icons i {
	background-color: #104e8b;
	color: #fff;
	padding: 1rem;
	border-radius: 50%;
	margin-bottom: 15px;
}

.cases,
img:hover {
	opacity: 0.9;
}

.team img {
	border-radius: 30%;
}

/* callback form */
.callback-form {
	width: 100%;
	padding: 20px 0;
}

.callback-form label {
	display: block;
	margin-bottom: 15px;
}

.callback-form .form-control {
	margin-bottom: 15px;
}

.callback-form input {
	width: 100%;
	padding: 4px;
	height: 40px;
	border: #f5f5f5 1px solid;
}

.callback-form input:focus {
	outline-color: #104e8b;
}

.callback-form .btn {
	padding: 12px 0;
	margin-top: 20px;
}

/* footer */
.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 200px;
}

.footer a {
	color: #f5f5f5;
}

.footer a:hover {
	color: #104e8b;
}

.footer .social {
	margin-right: 30px;
}

/* mobile */
@media (max-width: 550px) {
	.navbar {
		flex-direction: column;
		height: 120px;
		padding: 20px;
	}

	.navbar a {
		padding: 10px 10px;
		margin: 0 3px;
	}

	.flex-item {
		flex-direction: column;
	}

	.flex-columns .column,
	.flex-grid .column {
		flex-grow: 100%;
		max-width: 100%;
	}
}