@import url("//use.fontawesome.com/releases/v5.13.1/css/all.css");

/* CUSTOM FONTS */
@font-face {
	font-family: "Reckless";
	src: url("../fonts/Reckless-Medium.woff2") format("woff2"),
		url("../fonts/Reckless-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-Light.woff2") format("woff2"),
		url("../fonts/Roobert-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Reckless";
	src: url("../fonts/Reckless-Medium.woff2") format("woff2"),
		url("../fonts/Reckless-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-SemiBold.woff2") format("woff2"),
		url("../fonts/Roobert-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-Regular.woff2") format("woff2"),
		url("../fonts/Roobert-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-SemiBold.woff2") format("woff2"),
		url("../fonts/Roobert-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-Regular.woff2") format("woff2"),
		url("../fonts/Roobert-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-RegularItalic.woff2") format("woff2"),
		url("../fonts/Roobert-RegularItalic.woff") format("woff");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-RegularItalic.woff2") format("woff2"),
		url("../fonts/Roobert-RegularItalic.woff") format("woff");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Roobert";
	src: url("../fonts/Roobert-Light.woff2") format("woff2"),
		url("../fonts/Roobert-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

/* Define CSS variables */
:root {
	--beige-color: #fff7ee;
	--brown-color: #4f2421;
	--gold-color: #fdc259;
	--rose-color: #c97d64;
	--mint-color: #d0d8cb;
}

/* boilerplate */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	font-size: 100%;
	font-style: normal;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: none; /* for iOS Safari */
	text-size-adjust: none; /* for other mobile browsers */
	overflow: visible;
}
body {
	margin: 0;
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.5;
	background-color: var(--beige-color);
	color: var(--brown-color);
}
img {
	display: block;
	max-width: 100% !important;
	height: auto;
}
a {
	color: var(--brown-color);
	text-decoration: underline;
}
.link-noline a {
	text-decoration: none !important;
}
.link-noline a:hover {
	text-decoration: underline !important;
}
ul,
ol {
	padding-left: 20px;
}
.list-unstyled {
	padding-left: 0;
	list-style: none;
}
ul.list-inline li {
	display: inline;
}
figure {
	margin: 0;
}
figure > img + figcaption:not(:empty) {
	text-align: center;
	float: right;
	width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--brown-color);
}

h2 {
	font-family: "Reckless", "Georgia", Times, serif;
	font-size: 58px !important;
	font-weight: 500;
	line-height: 100%;
}
h3 {
	font-size: 32px !important;
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: 300 !important;
}
h4 {
	font-size: 16px !important;
}

/* Text Styles */
.text-underline {
	text-decoration: underline;
}
.text-bold {
	font-weight: bold !important;
}
.text-italic {
	font-style: italic;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-capitalize {
	text-transform: capitalize;
}
.text-lowercase {
	text-transform: lowercase;
}
.centennial-heading {
	font-size: 14px;
	font-weight: 600;
	color: var(--brown-color) !important;
	letter-spacing: 1.28px;
	font-style: normal;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

/* Text Colors */
.text-light {
	color: var(--beige-color) !important;
}
.text-light a {
	color: var(--beige-color) !important;
}

/* Backgrounds */
.bg-gold {
	background-color: var(--gold-color) !important;
}
.bg-mint {
	background-color: var(--mint-color) !important;
}
.bg-rose {
	background-color: var(--rose-color) !important;
}
.rounded-box {
	border-radius: 24px;
}

/* Flex Gap */
.gap-24 {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.gap-24 p {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}

/* Spacers */
.spacer-0 {
	height: 0;
}
.spacer-1 {
	height: 1rem;
}
.spacer-2 {
	height: 2rem;
}
.spacer-3 {
	height: 3rem;
}
.spacer-4 {
	height: 4rem;
}
.spacer-5 {
	height: 5rem;
}
.spacer-6 {
	height: 6rem;
}
.spacer-7 {
	height: 7rem;
}
.spacer-8 {
	height: 8rem;
}
.spacer-9 {
	height: 9rem;
}
.spacer-10 {
	height: 10rem;
}
.spacer-10h {
	height: 10px;
}
.spacer-20h {
	height: 20px;
}
.spacer-24h {
	height: 24px;
}
.spacer-30h {
	height: 30px;
}
.spacer-48h {
	height: 48px;
}
.spacer-50h {
	height: 50px;
}
.spacer-55h {
	height: 55px;
}
.spacer-60h {
	height: 60px;
}
.spacer-72h {
	height: 72px;
}
.spacer-77h {
	height: 77px;
}
.spacer-96h {
	height: 96px;
}
.spacer-144h {
	height: 144px;
}

/* Alignments */
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}
.align-justify {
	text-align: justify;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.float-none {
	float: none;
}
.float-clear {
	clear: both;
}
.sticky-box {
	position: sticky;
	top: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.divider-fluid {
	width: 100%;
	height: 1px;
	background-color: var(--brown-color);
	margin-top: 36px;
	margin-bottom: 36px;
}
.divider-services {
	width: 100%;
	height: 1px;
	background-color: var(--brown-color);
}

/* GRIDS/COLUMNS */
.container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.container-900 {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}
.container-1400 {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
.container-1600 {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
.container-fluid {
	max-width: 100%;
	margin: 0 auto;
}
.row {
	display: flex;
	flex-wrap: nowrap;
	gap: 48px;
}
.row-center {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 48px;
}
.row-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	flex-direction: row;
}
.row-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.col {
	flex: 1 1 100%;
}
.col-1 {
	flex: 1 1 8.33333%;
}
.col-2 {
	flex: 1 1 16.66667%;
}
.col-3 {
	flex: 1 1 25%;
}
.col-4 {
	flex: 1 1 33.33333%;
}
.col-5 {
	flex: 1 1 41.66667%;
}
.col-6 {
	flex: 1 1 50%;
}
.col-7 {
	flex: 1 1 58.33333%;
}
.col-8 {
	flex: 1 1 66.66667%;
}
.col-9 {
	flex: 1 1 75%;
}
.col-10 {
	flex: 1 1 83.33333%;
}
.col-11 {
	flex: 1 1 91.66667%;
}
.col-12 {
	flex: 1 1 100%;
}

/* SOCIAL ICONS */
b.hcube-social i {
	margin: 0 6px;
}

/* HOURS */
i.hcube_hrs {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	color: #4f2421 !important;
}
i.hcube_hrs,
i.hcube_hrs i {
	display: inline-grid;
	font-style: initial;
}
i.hcube_hrs_left {
	grid-column-start: 1;
	margin-right: 0 !important;
	grid-column-end: 1;
}
i.hcube_hrs_right {
	grid-column-start: 2;
	grid-column-end: 2;
	text-align: left;
}

/* BUTTONS */
.btn {
	display: inline-block;
	border-radius: 36px;
	border: 2px solid var(--brown-color, #4f2421);
	color: var(--brown-color);
	text-decoration: none;
	overflow-wrap: break-word;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.2s;
	background-color: transparent;
	padding: 18px 22px !important;
	text-transform: uppercase;
	line-height: 100%; /* 16px */
	letter-spacing: 1.28px;
}
.btn:hover {
	background-color: var(--brown-color);
	color: var(--beige-color);
}
.btn-block {
	display: block;
	width: 100%;
	text-align: center;
}
.btn-solid {
	background-color: var(--brown-color, #4f2421) !important;
	color: #fff !important;
}
.btn-solid:hover,
.btn-gold:hover {
	background-color: var(--rose-color) !important;
	border: 2px solid var(--rose-color) !important;
	color: #fff !important;
}
.btn-gold {
	background-color: var(--gold-color, #fdc259) !important;
	border: 2px solid var(--gold-color, #fdc259);
}
.btn-light {
	border: 2px solid var(--beige-color, #fff7ee);
	color: var(--beige-color);
}
.btn-light:hover {
	border: 2px solid var(--beige-color, #fff7ee);
	background-color: var(--beige-color) !important;
	color: var(--rose-color);
}
.btn-long {
	padding-left: 3rem;
	padding-right: 3rem;
}
.btn-h4text {
	font-size: 16px !important;
}

/* Previous and Next Buttons */
.gall-btn #Arrow {
	fill: var(--brown-color) !important;
	transition: all 0.2s;
}
.gall-btn:hover #Arrow {
	fill: var(--rose-color) !important;
}

/* ACTIVEDEMAND */
button.btn.activedemand-button {
	background: gray !important;
	border-radius: 3px !important;
	padding: 10px 30px !important;
	box-shadow: none !important;
}
.activedemand-wrapper .form-group > * .required {
	color: red;
	font-size: 24px;
	line-height: 0.1;
	vertical-align: middle;
}
.activedemand-wrapper select,
.activedemand-wrapper textarea,
.activedemand-wrapper input:not([type="checkbox"]):not([type="radio"]) {
	width: 100% !important;
	max-width: 400px;
}

/* SECTION BOX */
.sectionbox {
	padding-bottom: 144px;
}
.sectioncontent {
	display: flex;
}
.sectioninner {
	display: flex;
	flex-direction: column;
	padding: 36px;
}
.sectioninner-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.sectioninner-flexend {
	display: flex;
	flex-direction: column;
	padding: 36px;
	justify-content: flex-end;
}
.sectioninner h3,
.sectioninner-flexend h3,
.sectioninner-row h3 {
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: 300;
	line-height: 100%;
	margin-bottom: 10px;
}
.sectioninner h2,
.sectioninner-flexend h2,
.sectioninner-row h2 {
	font-family: "Reckless", "Times New Roman", Times, serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 100%;
}
.sectioninner p,
.sectioninner-flexend p,
.sectioninner-row p {
	line-height: 150%;
}

.section-block {
	padding-top: 144px;
	padding-bottom: 144px;
}
.section-block h2 {
	font-family: "Reckless", "Times New Roman", Times, serif;
	font-size: 72px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
}
.section-block p:first-of-type {
	margin-bottom: 0px;
	line-height: 150%;
}

/* SUBPAGE */
.subpage {
	padding-top: 144px;
	padding-bottom: 144px;
}
.subpage ul,
.subpage ol {
	margin-left: 20px;
	margin-right: 20px;
}
.page-title {
	background-color: var(--rose-color);
	color: var(--beige-color);
	padding: 4rem 0;
}
.page-title h2 {
	font-family: "Reckless", "Times New Roman", Times, serif;
	font-size: 72px;
	font-weight: 500;
	color: var(--beige-color);
}
.page-title .subheading {
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.28px;
	text-transform: uppercase;
	color: var(--beige-color);
}

.services-title {
	background-color: var(--beige-color);
	color: var(--brown-color);
	padding: 4rem 0;
}
.services-title h2 {
	font-family: "Reckless", "Times New Roman", Times, serif;
	font-weight: 500;
	color: var(--brown-color);
}
.services-title .subheading {
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.28px;
	text-transform: uppercase;
	color: var(--brown-color);
}
.services h3 {
	color: var(--brown-color, #4f2421);
	font-family: "Roobert", Arial, Helvetica, sans-serif;
	font-size: 32px !important;
	font-style: normal;
	font-weight: 300;
	line-height: 100%;
}
.list-start {
	list-style: none; /* Remove default bullet style */
}

.list-start li {
	display: inline-block; /* Display list items in a line */
	position: relative; /* Position relative to contain the SVG */
	padding-right: 20px; /* Add spacing after each list item */

	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 1.28px;
	text-transform: uppercase;
}

.list-start li:not(:last-child)::after {
	content: url("https://firebasestorage.googleapis.com/v0/b/h-cube-marketing.appspot.com/o/clients%2Fcentennial%2Fcentennial%2Fcontent%2F1720511071880.6995?alt=media&token=9ff4a4d9-2295-43b9-b2d1-3e26a2c2a29f"); /* Set SVG as content after each list item */
	position: absolute;
	top: 20%; /* Align SVG vertically in the middle */
	right: 0; /* Position SVG to the right of the list item */
	transform: translateY(-50%); /* Adjust vertical alignment */
	width: 14px;
	height: 14px;
}

/* Define a class for your custom bullet list */
.service-list {
	list-style-type: none; /* Remove default bullet points */
	padding-left: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

/* Set the custom image as the list-style-image */
.service-list li {
	position: relative;
	padding-left: 30px; /* Adjust spacing between the image and text */
	margin-bottom: 20px; /* Optional: Adjust margin between list items */
}

.service-list li:before {
	content: "";
	width: 20px; /* Adjust the width of the bullet image */
	height: 27px; /* Adjust the height of the bullet image */
	background-image: url("https://firebasestorage.googleapis.com/v0/b/h-cube-marketing.appspot.com/o/clients%2Fcentennial%2Fcentennial%2Fcontent%2F1720511071880.6995?alt=media&token=9ff4a4d9-2295-43b9-b2d1-3e26a2c2a29f");
	background-size: cover; /* Make sure the image covers the area */
	background-repeat: no-repeat; /* Prevent image repetition */
	position: absolute;
	left: 0;
	top: 0;
}

ol.service-orderlist {
	list-style-type: none;
	counter-reset: li;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
}
.service-orderlist li {
	margin-bottom: 20px;
}
.service-orderlist li:before {
	counter-increment: li;
	content: counter(li, decimal-leading-zero);
	font-weight: bold;
	font-size: 16px;
	padding-right: 10px;
}

/* SECTION IMAGE BACKGROUND */
.section-bg figure:first-child {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	max-width: initial;
	margin: 0;
	float: left;
	padding: 0;
	box-sizing: border-box;
}
.section-bg img:first-child {
	display: inline-block;
	min-width: 100%;
	width: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	max-height: 100%;
	max-width: 100% !important;
	height: auto !important;
	top: 0;
	bottom: 0;
	min-height: 100% !important;
	overflow: hidden;
}

/* IMAGE BLOCK */
.block-group {
	padding-bottom: 700px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: block;
}
.block-group-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.block-image {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	margin: 0;
	float: left;
	padding: 0;
}
.block-image img {
	display: inline-block;
	min-width: 100%;
	width: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	object-fit: cover;
	max-height: 100%;
	max-width: 100%;
	height: auto !important;
	top: 0;
	bottom: 0;
	min-height: 100%;
	overflow: hidden;
}

.float-right-img img{
	float: right;
	margin-top: 20px;
	margin-left: 20px;
	border-radius: 24px;
}

/* BLOG */
.blog-header {
	margin-top: 60px;
}
.blog-page ul {
	list-style-type: none; /* Remove default bullet points */
	padding-left: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

/* Set the custom image as the list-style-image */
.blog-page ul li {
	position: relative;
	padding-left: 30px; /* Adjust spacing between the image and text */
	margin-bottom: 20px; /* Optional: Adjust margin between list items */
}

.blog-page ul li:before {
	content: "";
	width: 20px; /* Adjust the width of the bullet image */
	height: 27px; /* Adjust the height of the bullet image */
	background-image: url("https://firebasestorage.googleapis.com/v0/b/h-cube-marketing.appspot.com/o/clients%2Fcentennial%2Fcentennial%2Fcontent%2F1720511071880.6995?alt=media&token=9ff4a4d9-2295-43b9-b2d1-3e26a2c2a29f");
	background-size: cover; /* Make sure the image covers the area */
	background-repeat: no-repeat; /* Prevent image repetition */
	position: absolute;
	left: 0;
	top: 0;
}

.category-box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.category-box .blog-cat {
	color: var(--rose-color);
	font-family: "Roobert", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	border-radius: 6px;
	background: var(--gold-inactive, rgba(253, 194, 89, 0.2));
	padding: 8px 16px;
}
.category-box .ert {
	font-family: "Roobert", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 16px */
	letter-spacing: 1.28px;
	text-transform: uppercase;
}

/* RESPONSIVE LAYOUT */
.desktop-only {
	display: block !important;
}
.mobile-only {
	display: none !important;
}

/* MOBILE */
@media (max-width: 900px) {
	.desktop-only {
		display: none !important;
	}
	.mobile-only {
		display: block !important;
	}

	.float-right-img img{
		float: none;
		margin-left: 0px;
		border-radius: 24px;
	}

	.btn {
		font-size: 14px !important;
	}

	body {
		font-size: 14px!important;
	}

	h1 {
		font-size: 50px !important;
	}

	h2 {
		font-size: 40px !important;
	}
	h3 {
		font-size: 22px !important;
	}
	h4 {
		font-size: 16px !important;
	}

	.col-1,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9,
	.col-10,
	.col-11,
	.col-12 {
		flex: 1 1 100%;
	}
	.container {
		max-width: 100%;
	}
	.row-grid-2 {
		display: grid;
		grid-template-columns: 1fr;
	}
	.row,
	.row-center,
	.sectioninner,
	.sectioninner-row {
		flex-wrap: wrap;
		gap: auto;
	}
	.row,
	.col,
	.row-center {
		padding-left: 20px;
		padding-right: 20px;
	}

	.circle-button {
		margin-left: 0px !important;
		margin-right: 0px !important;
		font-size: 13px;
		height: 150px;
		width: 150px;
	}
	.circle-button * {
	}
	/* Subpage */
	.subpage .row,
	.subpage p,
	.subpage h2,
	.subpage h3,
	.subpage h4,
	.subpage ul,
	.subpage ol {
		padding-left: 0px;
		padding-right: 0px;
	}
	.subpage p,
	.subpage ul,
	.subpage ol,
	.subpage a,
	.subpage li {
		font-size: 14px;
	}
	.subpage h3,
	.subpage h2 {
		font-size: 20px;
	}
	.page-title, .services-title, .services, .blog-page {
		padding-left:20px;
		padding-right:20px;
	}
	.page-title h1 {
		font-size: 28px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.video-container iframe {
		max-width: 100% !important;
	}
	
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
