:root {
	--g-font: "Poppins", serif;
	--p-size: 1rem;
	--p-weight: 400;
	--black-color: #000000;
	--white-color: #ffffff;
	--d-grey-color: #333333;
	--l-grey-color: #cccccc;
	--grey-color: #dfdfdf;
	--orange-color: #f37a00;
	--yellow-color: #ffd43b;
	--bg-white: #ffffff;
	--footer-bg-color: #7c7c7c;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

body {
	width: 100%;
	height: 100%;
	font-family: var(--g-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--g-font);
}

ol,
ul {
	padding-left: 20px;
	text-align: left;
}

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.site-header {
	padding: 20px 0;
	position: relative;
	box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-inner-wrapper {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	display: flex;
}

.text-with-icon {
	display: flex;
	align-items: center;
	gap: 6px;
}

.text-with-icon p {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: var(--black-color);
	letter-spacing: -1.5px;
}

.usa_flag {
	width: 28px;
	height: 28px;
}

.offer-text {
	font-size: var(--p-size);
	color: var(--orange-color);
	margin: 0;
	padding: 0 16px;
}

.offer-text p {
	margin-bottom: 6px;
}

.main-container {
	background: linear-gradient(rgba(243, 243, 243, 1), rgba(255, 255, 255, 1));
	max-width: 100%;
	padding: 20px 0 0;
}

.hero-section {
	text-align: center;
}

.hero-section h2 {
	color: var(--d-grey-color);
	font-size: 36px;
	font-weight: bold;
}

.hero-section p {
	color: var(--black-color);
	font-size: 16px;
}

.card-section {
	padding: 40px 0 0;
}

.card-outer-wrap {
	position: relative;
	overflow: hidden;
	padding: 10px;
	max-width: 1030px;
	margin-left: auto;
	margin-right: auto;
}

.card-section .card {
	width: 100%;
	border: 2px solid var(--grey-color);
	border-radius: 0;
	flex-direction: row;
	align-items: center;
	background-color: var(--bg-white);
	margin-bottom: 30px;
}

.card-section .card:hover {
  /* overflow: hidden; */
  /* border: 0.1rem solid #f7c89a; */
	transition: 0.2s all ease-in-out;
	box-shadow: 0px 3px 5px rgba(212, 78, 0, 0.274);
}

.card-body .card-title {
	font-weight: bold;
	font-size: 20px;
	color: var(--black-color);
	text-align: center;
	margin-bottom: 10px;
}

.card-body .card-description {
	font-size: 18px;
	color: var(--black-color);
}

.list_item {
	list-style: none;
	font-size: 14px;
	padding: 20px 0 0;
}

.list_item li {
	padding-bottom: 4px;
	color: var(--black-color);
	position: relative;
	padding-left: 30px;
}

.list_item li:before {
	content: "";
	position: absolute;
	background: url("../images/icon.svg");
	background-repeat: no-repeat;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background-size: cover;
}

.list_item li img {
	height: 20px;
	width: 20px;
	margin-right: 8px;
}

.btn-quote {
	min-width: 350px;
	font-family: Arial;
	font-size: 20px;
	padding: 8px 60px;
	margin: 15px 0;
	color: var(--white-color);
	background-color: var(--orange-color);
	border: none;
	border-radius: 0;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}

.btn-quote:hover {
	background-color: #d16900;
	color: var(--white-color);
}

.btn-center {
	text-align: center;
}

.featured-badge {
	font-size: 13px;
	position: absolute;
	top: 14px;
	line-height: 1;
	left: -35px;
	padding: 5px 23px;
	background-color: var(--yellow-color);
	transform: rotate(-45deg);
}

.site-footer {
	max-width: 100%;
	background-color: var(--footer-bg-color);
	padding: 45px;
	color: var(--l-grey-color);
	font-family: "Asap Condensed", sans-serif;
}

.site-footer .footer-inner-wrapper {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: repeat(3, 1fr);
	display: grid;
	gap: 70px;
}

.badge-img {
	text-align: center;
}

.badge-img img {
	max-width: 140px;
}

.site-footer .copyright {
	font-size: 12px;
	margin: 0;
}

.footer-link {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-link li {
	padding-bottom: 14px;
}

.footer-link li a {
	color: var(--white-color);
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s;
}

.footer-link li a:hover {
	color: var(--orange-color);
}

.featured-section {
	padding: 40px 0;
	color: var(--black-color);
}

.m-btm {
	margin-bottom: 90px;
}

.featured-section h2 {
	font-size: 30px;
	color: var(--black-color);
	font-weight: bold;
}

.feature-bx {
	text-align: center;
	padding: 0 15px;
}

.feature-bx h4 {
	font-size: 18px;
	font-weight: 800;
	padding: 20px 0;
	margin: 0;
}

.feature-bx p {
	font-size: 15px;
	line-height: 1.3;
}

.btn-wrp {
	text-align: center;
	padding: 60px 0 0;
}

.btn-match {
	min-width: 438px;
	font-family: Arial;
	font-size: 22px;
	padding: 10px 30px;
	margin: 15px 0;
	color: var(--white-color);
	background-color: var(--orange-color);
	border: none;
	border-radius: 0;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}

.btn-match:hover {
	background-color: #d16900;
	color: var(--white-color);
}

.bg-container {
	padding: 70px 0 0;
}

.graphics-bx {
	height: 45vh;
	display: block;
	background: url("../images/bg1.png");
	background-size: auto;
	background-repeat: repeat-x;
}

@media (max-width: 1199px) {
	.graphics-bx {
		height: 35vh;
		background-position: bottom center;
	}
}

@media (max-width: 992px) {
	.card-section .card {
		flex-direction: column;
	}

	.btn-quote {
		min-width: 100%;
	}

	.card-image {
		padding: 20px 0 10px;
	}

	.header-info {
		padding-top: 15px;
	}

	.hero-section h2 {
		font-size: 30px;
	}

	.card-section {
		padding: 20px 0 0;
	}

	.feature-bx {
		padding: 0;
	}

	.btn-wrp {
		text-align: center;
		padding: 10px 0 0;
	}

	.btn-match {
		min-width: 100%;
	}

	.site-footer .footer-inner-wrapper {
		grid-template-columns: 1fr !important;
		gap: 20px;
		text-align: center;
	}

	.col-one {
		grid-row: 3;
	}

	.footer-link {
		text-align: center;
	}

	.site-footer {
		padding: 20px;
	}

	.site-footer .copyright {
		margin-top: 10px;
	}

	.graphics-bx {
		height: 350px;
		background-size: contain;
		background-position: bottom center;
	}

	.bg-container {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.m-btm {
		margin-bottom: 20px;
	}

	.featured-section h2 {
		font-size: 22px;
	}

	.graphics-bx {
		height: 120px;
	}

	.btn-match,
  .btn-quote {
		font-size: 16px;
	}

	.text-with-icon p {
		font-size: 18px;
		font-weight: 400;
		letter-spacing: -1.5px;
	}

	.text-with-icon {
		justify-content: center;
	}

	.header-info {
		text-align: center;
		padding: 6px 0 0;
	}

	.hero-section h2 {
		font-size: 20px;
	}

	.feature-bx img {
		max-width: 70px;
	}

	.feature-bx h4 {
		padding: 15px 0;
	}

	.usa_flag {
		width: 24px;
		height: 24px;
	}

	.card-body .card-description {
		font-size: 16px;
		color: var(--black-color);
	}
}
