﻿.overlay {
	background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark overlay */
	position: absolute; /* Overlay will be positioned on top of the content */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.franchise-hero {
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-ryan-roof.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 880px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative; /* Necessary for the absolute positioning of the overlay */
}

	.franchise-hero .content {
		z-index: 3; /* Ensure the content inside the hero section is above the overlay */
		position: relative; /* This makes sure the content is on top of the overlay */
	}

		.franchise-hero .content h1 {
			color: #fff;
			font-size: calc(48pt * 0.7);
			line-height: calc(55pt * 0.7);
			font-weight: bold;
			font-family: 'Gordita';
			text-transform: uppercase;
			margin-bottom: 1rem;
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			white-space: normal;
		}

		.franchise-hero .content p {
			color: rgb(217,229,112);
			font-size: calc(91.8pt * 0.7);
			line-height: calc(94.5pt * 0.7);
			font-weight: bold;
			font-family: 'Gordita';
			text-transform: uppercase;
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			white-space: normal;
			margin-top: 50px;
		}

.franchise-join {
	background-color: rgb(227,235,171);
	padding: 2rem 0;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #000;
}

	.franchise-join h2 {
		max-width: unset;
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-weight: 500;
		font-family: 'Gordita';
		color: #000;
		margin-bottom: calc(51px * 0.7);
	}

	.franchise-join p {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		color: #000;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: calc(51px * 0.7);
	}

	.franchise-join h3 {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: calc(59px * 0.7);
	}

.enquire-btn {
	background-color: #000;
	color: #fff;
	font-family: 'Gordita';
	font-weight: 500;
	font-size: calc(15pt * 0.7);
	line-height: calc(13.9pt * 0.7);
	letter-spacing: 0.2em;
	padding: 10px 45px;
	border-radius: 1px;
	margin-top: 20px;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
}

	.enquire-btn:hover {
		background-color: #fff;
		color: #000;
		-webkit-text-decoration: inherit;
		text-decoration: inherit;
	}


.franchise-why-choose {
	padding: 150px 0;
}

.ryan-ladder {
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-ryan-ladder.jpg');
	background-size: cover;
	background-position: 0 -100px;
	background-repeat: no-repeat;
	height: 650px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative; /* Necessary for the absolute positioning of the overlay */
}

.franchise-why-choose h2 {
	max-width: unset;
	font-size: calc(48pt * 0.7);
	line-height: calc(55pt * 0.7);
	font-weight: bold;
	font-family: 'Gordita';
	text-transform: uppercase;
	color: #000;
}

.franchise-why-choose p {
	font-size: calc(17pt * 0.7);
	line-height: calc(27pt * 0.7);
	font-family: 'Gordita';
	color: #000;
	margin-top: 62px;
}

.franchise-why-choose ul, .franchise-who ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

	.franchise-why-choose ul > li, .franchise-who ul > li {
		position: relative; /* Ensure the ::before element can be positioned */
		padding-left: 50px; /* Add space to the left for the custom symbol */
		margin-left: 0px;
	}

		.franchise-why-choose ul > li::before, .franchise-who ul > li::before {
			content: ">"; /* Use '>' as the bullet */
			position: absolute;
			left: 0; /* Position it to the left of the list item */
			color: #000; /* Customize the color */
			font-weight: bold; /* Optional: make it bold */
		}

.franchise-why-choose .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 100px;
}

.franchise-real-talk {
	background-color: rgba(212,209,201, 0.25);
	padding: 150px 0;
}

	.franchise-real-talk h2 {
		max-width: unset;
		font-size: calc(48pt * 0.7);
		line-height: calc(55pt * 0.7);
		font-weight: bold;
		font-family: 'Gordita';
		text-transform: uppercase;
		color: #000;
	}

	.franchise-real-talk p {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		color: #000;
		margin-top: 62px;
	}

	.franchise-real-talk h3 {
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		margin-top: 62px;
	}

/* Container for both the video and the custom thumbnail */
.video-container {
	position: relative;
	width: 100%;
	max-width: 1200px; /* Adjust as needed */
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}

/* Styling for the custom thumbnail */
#custom-thumbnail {
	position: relative;
	width: 100%;
	height: auto;
	cursor: pointer;
}

	/* Image should cover the whole area */
	#custom-thumbnail img {
		width: 100%;
		height: auto;
		object-fit: cover;
		max-height: 680px; /* Adjust as needed */
	}

	/* Play button styling */
	#custom-thumbnail button {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 50px 55px;
		background: rgba(0, 0, 0, 0.86);
		color: white;
		border: none;
		border-radius: 50%;
		font-size: 18px;
		cursor: pointer;
	}

.fa-play {
	font-size: 3em;
}

.franchise-enquire {
	background-color: rgb(227,235,171);
	padding: 150px 0;
}

	.franchise-enquire h2 {
		max-width: unset;
		font-size: calc(48pt * 0.7);
		line-height: calc(55pt * 0.7);
		font-weight: bold;
		font-family: 'Gordita';
		text-transform: uppercase;
		color: #000;
		text-align: center;
	}

	.franchise-enquire p {
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		margin-top: 62px;
		text-align: center;
	}

	.franchise-enquire h3 {
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		margin-top: 62px;
	}


.btn-hero-black {
	background-color: rgb(26 26 26) !important;
	border: none !important;
	font-family: 'Gordita';
	font-weight: 500;
	font-size: 11.15pt;
	line-height: 12.65pt;
	color: rgb(108, 108, 108) !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	color: #fff !important;
	letter-spacing: 0.1em;
}

/* Container for the parallax effect */
.parallax-container {
	position: relative;
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-team-car.jpg'); /* Replace with your image URL */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 800px; /* Adjust the height as needed */
	width: 100%;
}

/* Content inside the parallax container */
.parallax-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	top: 50%;
	transform: translateY(-50%);
}

.franchise-revolution {
	background-color: rgb(26 26 26);
	padding: 150px 0;
}

	.franchise-revolution h2 {
		max-width: unset;
		font-size: calc(48pt * 0.7);
		line-height: calc(55pt * 0.7);
		font-weight: bold;
		font-family: 'Gordita';
		text-transform: uppercase;
		color: #fff;
	}

	.franchise-revolution p {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		color: #fff;
		margin-top: 62px;
	}

	.franchise-revolution h3 {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #fff;
		margin-top: 62px;
	}

	.franchise-revolution h4 {
		font-size: calc(25pt * 0.7);
		line-height: calc(35pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #fff;
		margin-top: 62px;
		text-align: center;
	}

.num-points {
	margin-top: 80px !important;
}

	.num-points div {
		padding: 30px;
	}

.num-badge {
	background-color: rgb(217 229 112);
	width: 110px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 110px;
	border-radius: 50%;
	font-size: calc(60pt * 0.7);
	line-height: calc(61pt * 0.7);
	font-family: 'Gordita';
	font-weight: 500;
}

.num-text {
	margin-top: 30px !important;
	text-align: center;
}

.line-divider {
	border-top: 1pt solid #fff; /* Change color and thickness */
	width: 100%; /* Full width of the container */
	margin: 20px 0; /* Space around the line */
}

.hs-button {
	margin-top: 50px;
}

.enquire-btn-highlight {
	background-color: rgb(217 229 112);
	color: #000;
	font-family: 'Gordita';
	font-weight: 500;
	font-size: calc(15pt * 0.7);
	line-height: calc(13.9pt * 0.7);
	letter-spacing: 0.2em;
	padding: 10px 45px;
	border-radius: 1px;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
}

	.enquire-btn-highlight:hover {
		background-color: #000;
		color: #fff;
		-webkit-text-decoration: inherit;
		text-decoration: inherit;
	}

.ryan-car {
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-ryan-ute.jpg');
	background-size: cover;
	background-position: 0 -100px;
	background-repeat: no-repeat;
	height: 700px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative; /* Necessary for the absolute positioning of the overlay */
}

.franchise-why-choose .content-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 100px;
}

	.franchise-why-choose .content-left p {
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
		color: #000;
	}

	.franchise-why-choose .content-left h3 {
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
	}

.line-divider-black {
	border-top: 1pt solid #000; /* Change color and thickness */
	width: 100%; /* Full width of the container */
	margin: 20px 0; /* Space around the line */
}

.franchise-why-choose .quote p {
	font-size: calc(25pt * 0.7);
	line-height: calc(39pt * 0.7);
	font-family: 'Gordita';
	font-weight: 500;
	color: #000;
	margin-top: 62px;
	width: 790px;
	margin-left: auto;
	margin-right: auto;
}

.franchise-why-choose .quote h3 {
	margin-top: 30px;
	font-size: calc(15pt * 0.7);
	line-height: calc(27pt * 0.7);
	font-family: 'Gordita';
	color: #000;
	text-transform: uppercase;
}

.mt-130px {
	margin-top: 130px !important;
}

.mt-80px {
	margin-top: 80px !important;
}

.franchise-who {
	background-color: rgb(227,235,171);
	padding: 150px 0;
}

	.franchise-who h2 {
		max-width: unset;
		font-size: calc(48pt * 0.7);
		line-height: calc(55pt * 0.7);
		font-weight: bold;
		font-family: 'Gordita';
		text-transform: uppercase;
		color: #000;
		width: 850px;
		margin-left: auto;
		margin-right: auto;
	}

	.franchise-who p {
		font-size: calc(25pt * 0.7);
		line-height: calc(36pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
	}

	.franchise-who h3 {
		font-size: calc(25pt * 0.7);
		line-height: calc(39pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		margin-top: 62px;
		width: 850px;
		margin-left: auto;
		margin-right: auto;
	}

	.franchise-who h4 {
		font-size: calc(25pt * 0.7);
		line-height: calc(35pt * 0.7);
		font-family: 'Gordita';
		font-weight: 500;
		color: #000;
		margin-top: 62px;
		text-align: center;
	}

	.franchise-who li {
		width: 600px;
	}

/* Container for the parallax effect */
.parallax-container-2 {
	position: relative;
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-team-roof.jpg'); /* Replace with your image URL */
	background-attachment: fixed;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 800px; /* Adjust the height as needed */
	width: 100%;
}

.franchise-faqs {
	background-color: rgba(216,209,201, 0.25);
	padding: 150px 0;
}

	.franchise-faqs h2 {
		max-width: unset;
		font-size: calc(48pt * 0.7);
		line-height: calc(55pt * 0.7);
		font-weight: bold;
		font-family: 'Gordita';
		text-transform: uppercase;
		color: #000;
	}

	.franchise-faqs .icon {
		background-color: rgb(217,229,112);
	}

.accordion {
	margin-top: 50px;
}

.accordion-item {
	background-color: rgba(216,209,201, 0) !important;
}

.accordion-title h4 {
	font-size: calc(25pt * 0.7);
	line-height: calc(48pt * 0.7);
	font-family: 'Gordita';
	font-weight: 500;
	color: #000;
}

.accordion-content p {
	font-size: calc(17pt * 0.7);
	line-height: calc(27pt * 0.7);
	font-family: 'Gordita';
	color: #000;
}



.franchise-contact-hero {
	background-image: url('https://homesafe.blob.core.windows.net/assets/Images/homesafe-franchise-logo-shirt.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative; /* Necessary for the absolute positioning of the overlay */
	padding-top: 120px;
	padding-bottom: 120px;
}

	.franchise-contact-hero .content {
		z-index: 3; /* Ensure the content inside the hero section is above the overlay */
		position: relative; /* This makes sure the content is on top of the overlay */
	}

		.franchise-contact-hero .content h1 {
			color: rgb(217,229,112);
			font-size: calc(48pt * 0.7);
			line-height: calc(55pt * 0.7);
			font-weight: bold;
			font-family: 'Gordita';
			text-transform: uppercase;
			margin-bottom: 1rem;
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			white-space: normal;
		}

		.franchise-contact-hero .content p {
			color: #fff;
			font-size: calc(17pt * 0.7);
			line-height: calc(27pt * 0.7);
			font-family: 'Gordita';
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			white-space: normal;
			margin-top: 50px;
		}

		.franchise-contact-hero .content h3 {
			color: #fff;
			font-size: calc(26pt * 0.7);
			line-height: calc(36pt * 0.7);
			font-family: 'Gordita';
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			white-space: normal;
			margin-top: 50px;
		}

	.franchise-contact-hero form {
		color: #fff;
		text-align: left;
		font-size: calc(17pt * 0.7);
		line-height: calc(27pt * 0.7);
		font-family: 'Gordita';
	}

form input, form textarea, select {
	border-radius: 0 !important;
}

@media (max-width: 768px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .row > * {
		padding-left: 0 !important;
		padding-right: 0 !important;
		padding-top: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.franchise-hero {
		height: 750px;
		background-position-x: -500px;
		padding-left: 40px;
		padding-right: 40px;
	}

		.franchise-hero .content h1 {
			font-size: calc(24pt * 0.7);
			line-height: calc(29pt * 0.7);
		}

		.franchise-hero .content p {
			font-size: calc(45pt * 0.7);
			line-height: calc(48pt * 0.7);
		}

	.franchise-join {
		padding: 70px 35px;
		height: unset;
	}

		.franchise-join h2 {
			display: none;
		}

		.franchise-join p {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
		}

		.franchise-join h3 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
		}

	.franchise-why-choose {
		padding: 70px 35px;
	}

	.ryan-ladder {
		height: 500px;
		background-position-y: -50px;
		margin-bottom: 70px;
	}

	.franchise-why-choose h2 {
		font-size: calc(24pt * 0.7);
		line-height: calc(30pt * 0.7);
	}

	.franchise-why-choose ul > li, .franchise-who ul > li {
		padding-left: 30px;
	}

	.franchise-why-choose p {
		font-size: calc(15pt * 0.7);
		line-height: calc(23pt * 0.7);
		/*		display: none;
*/
	}

	.franchise-why-choose ul {
		margin-top: 45px;
	}

	.franchise-real-talk {
		padding: 70px 35px;
	}

		.franchise-real-talk h2 {
			font-size: calc(24pt * 0.7);
			line-height: calc(30pt * 0.7);
			max-width: 58%;
			margin-left: auto;
			margin-right: auto;
		}

		.franchise-real-talk p {
			margin-top: 45px;
			font-size: calc(15pt * 0.7);
			line-height: calc(23pt * 0.7);
		}

		.franchise-real-talk h3 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
			margin-top: 45px;
		}

		.franchise-real-talk .video-container {
			margin-top: 45px;
			max-width: 330px;
		}

	.franchise-enquire {
		padding: 70px 35px;
	}

	#custom-thumbnail button {
		padding: 25px 30px;
	}

	franchise-enquire {
		padding: 70px 35px;
	}


	.franchise-enquire h2 {
		font-size: calc(24pt * 0.7);
		line-height: calc(30pt * 0.7);
	}

	.franchise-enquire p {
		font-size: calc(18pt * 0.7);
		line-height: calc(25pt * 0.7);
		margin-top: 45px;
		margin-bottom: 35px;
	}

	.franchise-enquire h3 {
		font-size: calc(15pt * 0.7);
		line-height: calc(23pt * 0.7);
	}

	.parallax-container {
		background-size: 160%;
		height: 300px;
		background-position: -2px -136px;
		background-attachment: inherit;
	}

	.franchise-revolution {
		padding: 70px 35px;
	}

		.franchise-revolution h2 {
			font-size: calc(24pt * 0.7);
			line-height: calc(30pt * 0.7);
		}

		.franchise-revolution p {
			font-size: calc(15pt * 0.7);
			line-height: calc(23pt * 0.7);
			margin-top: 45px;
		}

		.franchise-revolution h3 {
			font-size: calc(15pt * 0.7);
			line-height: calc(23pt * 0.7);
			margin-top: 45px;
		}

		.franchise-revolution h4 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
			margin-top: 45px;
		}

	.num-badge {
		width: 80px;
		height: 80px;
		font-size: calc(34pt * 0.7);
		line-height: calc(39pt * 0.7);
	}

	.mobile-fix .hs-button {
		margin-bottom: 70px;
	}

	.ryan-car {
		height: 580px;
		background-position-y: -10px;
	}

	.mt-130px {
		margin-top: 70px !important;
	}

	.franchise-why-choose .quote p {
		width: unset;
		font-size: calc(18pt * 0.7);
		line-height: calc(25pt * 0.7);
	}

	.franchise-why-choose .quote h3 {
		font-size: calc(14pt * 0.7);
		line-height: calc(20pt * 0.7);
		font-weight: 400;
	}

	.franchise-who {
		padding: 70px 35px;
	}

		.franchise-who h2 {
			font-size: calc(24pt * 0.7);
			line-height: calc(30pt * 0.7);
			width: unset;
		}

		.franchise-who p {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
			width: unset;
		}

		.franchise-who h3 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
			margin-top: 45px;
			width: unset;
		}

		.franchise-who h4 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
			margin-top: 45px;
		}

		.franchise-who li {
			width: 100%;
		}

		.mt-80px {
			margin-top: 40px !important;
		}

	.franchise-who .enquire-btn {
		font-size: calc(14pt * 0.7);
		line-height: calc(20pt * 0.7);
		padding: 10px 15px;
	}

	.parallax-container-2 {
		background-attachment: unset;
		background-size: 115%;
		height: 275px;
	}

	.franchise-faqs {
		padding: 70px 35px;
	}

		.franchise-faqs h2 {
			font-size: calc(24pt * 0.7);
			line-height: calc(30pt * 0.7);
		}

		.accordion-title h4 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
		}

		.accordion-content p {
			font-size: calc(14pt * 0.7);
			line-height: calc(20pt * 0.7);
		}

	.franchise-contact {
		padding: 0;
	}

	.franchise-contact-hero {
		padding: 70px 35px;
	}

	.franchise-contact-hero .content h1 {
		font-size: calc(24pt * 0.7);
		line-height: calc(30pt * 0.7);
	}

		.franchise-contact-hero .content p {
			font-size: calc(15pt * 0.7);
			line-height: calc(23pt * 0.7);
		}

		.franchise-contact-hero .content h3 {
			font-size: calc(18pt * 0.7);
			line-height: calc(25pt * 0.7);
		}

		.franchise-contact-hero form {
			font-size: calc(14pt * 0.7);
			line-height: calc(20pt * 0.7);
			padding: 0 12px;
		}

		.franchise-contact-hero form input, .franchise-contact-hero form textarea {
			font-size: calc(14pt * 0.7);
			line-height: calc(20pt * 0.7);
	}
}
