body {
	font-family: "Outfit", sans-serif;
	background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("..//images/bg-gif.gif") no-repeat top center;
	background-size: cover;
}

/* Hero section */
.hero {
	padding: 150px 20px;
}

.hero-logo {
	max-width: 238px;
}

.header {
	background-color: #fff;
	padding: 40px 0;
	border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

/* Content */
h1 {
	margin: 40px 0px 30px 0px;
	color: #272727;
	text-align: center;
	font-size: 76px;
	font-style: normal;
	font-weight: 700;
	line-height: 84px; /* 110.526% */
	text-transform: capitalize;
}

h1 span {
	color: #2563eb;
}

h2 {
	color: #272727;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 40px; /* 233.333% */
	text-transform: capitalize;
}

p {
	color: rgba(39, 39, 39, 0.5);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 32px; /* 177.778% */
	max-width: 650px;
	margin: 20px auto;
}

/* Features */
.hero-features {
	margin: 30px auto;
	margin-bottom: 60px;
	color: #272727;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px; /* 177.778% */
	text-transform: capitalize;
	gap: 30px;
	display: flex;
	justify-content: center;
}

.feature-item {
	border-radius: 10px;
	border: 1px solid rgba(37, 99, 235, 0.2);
	background: rgba(255, 255, 255, 0.75);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fa {
	font-size: 20px;
	margin-right: 15px;
	color: #2563eb;
}

/* Button */
button {
	display: inline-flex;
	padding: 13px 35px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 35px;
	background: #2563eb;
	color: #fff;
	text-align: center;
	border: 2px solid #2563eb;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* 160% */
	text-transform: capitalize;
}

button:hover {
	background: #fff;
	color: #2563eb;
	border: 2px solid #2563eb;
}

/*  Form */
#leadFormModal .modal-content {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	border: none;
}

#leadFormModal .modal-header {
	border: none;
	padding-bottom: 0;
}

#leadFormModal .modal-title {
	font-size: 22px;
	font-weight: bold;
	color: #1a1a1a;
}

#leadFormModal .form-heading {
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0 25px;
	color: #1a1a1a;
}

#leadFormModal .form-control {
	color: #1a1a1a;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: none;
	height: 44px;
	margin-bottom: 15px;
	padding: 10px 15px;
	font-size: 14px;
}

#leadFormModal .form-control:focus {
	border-color: #2563eb;
	outline: none;
	box-shadow: 0 0 5px rgba(42, 157, 143, 0.2);
}

#leadFormModal .checkbox {
	margin-bottom: 20px;
}

#leadFormModal .checkbox input[type="checkbox"] {
	margin-top: 1px;
}

#leadFormModal .checkbox label {
	color: #1a1a1a;
	font-size: 14px;
	font-weight: normal;
}

#leadFormModal .btn-submit {
	border-radius: 50px;
	border: 1px solid #2563eb;
	background: #2563eb;
	padding: 12px 18px;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 18px; /* 112.5% */
}

#leadFormModal .btn-submit:hover {
	border-radius: 50px;
	border: 1px solid #2563eb;
	background: #fff;
	color: #2563eb;
	text-decoration: none;
}

.close:focus,
.close:hover {
	border: none;
}

#leadFormModal .checkbox label {
	color: #1a1a1a;
	font-size: 14px;
	font-weight: normal;
}

@media (max-width: 1024px) {
	.hero {
		padding: 80px 20px;
	}

	h1 {
		margin: 0px;
		font-size: 50px;
		line-height: 60px; /* 110.526% */
	}

	h2 {
		font-size: 25px;
		line-height: 35px; /* 233.333% */
	}

	p {
		font-size: 16px;
		line-height: 30px; /* 177.778% */
		max-width: auto;
	}

	.hero-features {
		font-size: 15px;
		gap: 0px;
		display: flex;
		justify-content: center;
	}

	.fa {
		font-size: 16px;
		margin-right: 5px;
	}

	.fast-free {
		width: 35%;
	}
}

@media (max-width: 767px) {
	.hero-logo {
		max-width: 170px;
	}

	.header {
		background-color: #fff;
		padding: 30px 0;
		border-bottom: 1px solid rgba(37, 99, 235, 0.1);
	}

	h1 {
		font-size: 35px;
		line-height: 48px;
		margin: 20px 0px;
	}

	h2 {
		font-size: 20px;
		line-height: 30px;
	}

	.hero-features {
		font-size: 15px;
		gap: 0px;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
	}

	.fast-free {
		width: 100%;
		padding: 20px 0px;
	}

	.fa {
		font-size: 20px;
		margin-right: 10px;
	}

	.hero-features {
		font-size: 18px;
	}

	button {
		font-size: 15px;
	}

	#leadFormModal .checkbox label {
		color: #1a1a1a;
		display: flex;
		font-size: 14px;
		font-weight: normal;
		align-items: flex-start;
	}

	#leadFormModal .modal-content {
		background: #fff;
		border-radius: 20px;
		padding: 20px;
		border: none;
	}
}

/* form stuff */
#post-form {
	display: none;
}

.modal-header,
.modal-body {
	margin: 0;
}

form > img {
	display: none;
}

#submitButton {
	display: block;
	margin: 20px auto 0;
	align-self: center;
}

#loadingGraphic {
	display: none;
	padding: 2px 0 3px;
}

#loader {
	width: 44px;
	height: 44px;
	margin: 6px auto;
	-webkit-animation: 1s ease-in-out infinite animball_two;
	animation: 1s ease-in-out infinite animball_two;
}

#loader .loaderBall {
	width: 44px;
	height: 44px;
	position: absolute;
}

#loader .loaderBall .ball {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-animation: 1s ease-in-out infinite animball_one;
	animation: 1s ease-in-out infinite animball_one;
}

#loader .loaderBall .ball.ball1 {
	background-color: #2563eb;
	top: 0;
	left: 0;
}

#loader .loaderBall .ball.ball2 {
	background-color: #2563eb;
	top: 0;
	left: 24px;
}

#loader .loaderBall .ball.ball3 {
	background-color: #2563eb;
	top: 24px;
	left: 0;
}

#loader .loaderBall .ball.ball4 {
	background-color: #2563eb;
	top: 24px;
	left: 24px;
}

@-webkit-keyframes animball_one {
	0% {
		position: absolute;
	}
	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}
	100% {
		position: absolute;
	}
}

@keyframes animball_one {
	0% {
		position: absolute;
	}
	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}
	100% {
		position: absolute;
	}
}

@-webkit-keyframes animball_two {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
	}
	50% {
		-webkit-transform: rotate(360deg) scale(1.3);
	}
	100% {
		-webkit-transform: rotate(720deg) scale(1);
	}
}

@keyframes animball_two {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(360deg) scale(1.3);
	}
	100% {
		transform: rotate(720deg) scale(1);
	}
}

.social {
	margin: 5px 0 0;
	padding: 0;
}

.social li {
	display: inline-block;
	margin-right: 10px;
}

.social li .iconic * {
	fill: #2563eb;
	stroke: #2563eb;
}

#form-thanks {
	display: none;
}
