* {
	box-sizing: border-box;
}

@font-face {
	font-family: BentonSans;
	font-weight: 700;
	src: url('../fonts/BentonSans-Bold.otf');
}
@font-face {
	font-family: BentonSans;
	font-weight: 300;
	src: url('../fonts/BentonSans-Light.otf');
}

body {
	font-family: 'BentonSans';
	font-size: 16px;
	font-weight: 300;
	margin: 0;
	padding: 0;
}

img {
	height: auto;
	max-width: 100%;
}

p {
	margin: 0;
}

.d-flex {
	display: flex;
	flex-wrap: wrap;
}

.d-flex-center {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.d-flex > * {
	padding: 5px;
	text-align: center;
}

.container {
	margin: 0 auto;
	max-width: 1140px;
	padding: 0 15px;
	width: 100%;
}

.col-50 {
	max-width: 50%;
	width: 100%;
}

.image-grid {
	justify-content: center;
}

.image-grid >* {
	padding: 5px;
}

.top-bar-section {
	display: flex;
	justify-content: center;
	background: #000;
	padding-block: 15px;
}

.content-section {
	background: #ff4135;
	padding-block: 50px;
	position: relative;
}

.col-left-wrap {
	margin: 0 auto;
	max-width: 400px;
}
.heading-group {
	color: #fff;
	text-align: center;
}

.heading-group h1 {
	font-size: 30px;
	margin: 0;
	padding: 0;
}

.icon-lists .icon-item {
	align-items: center;
	color: #fff;
	display: flex;
	gap: 15px;
	margin: 5px 0;
}

.icon-item img {
	width: 40px;
}

@media only screen and (max-width: 725px) {
	.icon-item img {
		margin: auto;
	}
}

.footer-section {
	color: #000000;
	font-family: 'BentonSans', Sans-serif;
	font-size: 12px;
	font-weight: 300;
	justify-content: center;
	margin-top: 50px;
	padding-block: 20px;
	text-align: center;
}

.site-footer__text, .site-footer__copyright {
	font-family: 'BentonSans', Sans-serif !important;
}

.site-footer__container {
	background-color: #000000 !important;
	max-width: unset !important;
}