/* display */
.flex {
    display: flex;
}
.flex-col {
	display: flex;
	flex-direction: column;
}
.al {
	align-items: center;
}
.jc {
	justify-content: center;
}
.sb {
	justify-content: space-between;
}
.fs {
	justify-content: flex-start;
	align-items: flex-start;
}
/* spacing */
.mw100 {
	max-width: 100%;
}
.m0 {
	margin: 0;
}
/* titles */
.text {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #5C5C5C;
}
.text p {
	margin-bottom: 10px;
}
.text p:last-child {
	margin-bottom: 0px;
}
.btn {
	background: #FFAA4D;
	border-radius: 6px !important;
	padding: 17px 50px !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	line-height: 24px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFFFFF;

	transition: 0.3s ease 0s;
	border: 1px solid #FFAA4D !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn:hover {
	background: transparent;
	color: #FFAA4D !important;
	border: 1px solid #FFAA4D;
	transition: 0.3s ease 0s !important;
}
.uppercase {
	text-transform: uppercase !important;
}
.underline {
	text-decoration: underline !important;
}
.section-title {
	position: relative;
	font-family: hypatia-sans-pro, sans-serif;
	font-weight: 400;
	font-size: 50px;
	line-height: 60px;
	text-transform: uppercase;
	color: #151515;
	padding-bottom: 20px;
}
.section-title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45px;
	height: 2px;
	background: #151515;
}
.section-title.center {
	text-align: center;
}
.section-title.white:before {
	background: #fff;
}
.white {
	color: #fff;
}
svg {
	margin-right: 10px;
}