:root {
	--white-color: #fff;
	--pastel-color: #5b7ad4;
	--red-color: #ff5757;
	--dark-blue: #1B384D;
	--text-color: #000;
	--heading-font: 'Lato', sans-serif;
	--body-font: 'Nunito Sans', sans-serif;
	--prompt: 'Prompt', sans-serif;
}
body {
	font-family: var(--body-font);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--text-color);
	background-color: var(--white-color);
}
body *:last-child {
	margin-bottom: 0;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a {
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.3s;
}
img {
	max-width: 100%;
	height: auto;
}
p, p:last-child {
	margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 900;
	font-family: var(--heading-font);
}
h1 {
	font-size: 72px;
	letter-spacing: -1.8px;
	line-height: 1;
}
h2 {
	font-size: 36px;
	line-height: 1.2;
}
h3 {
	font-size: 30px
}
h4 {
	font-size: 26px;
	line-height: 1.33;
}
h5 {
	font-size: 18px;
	line-height: 1.78;
}
h6 {
	font-size: 16px
}
.red-btn, .white-btn, .transparent-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 400;
	max-width: max-content;
	border: none;
	text-transform: uppercase;
	transition: all 0.3s;
}
.red-btn {
	font-family: var(--prompt);
	color: var(--white-color);
	background-color: var(--red-color);
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	padding: 15px;

}
.red-btn:hover {
	background-color: #ed4522;
}
.white-btn {
	font-family: var(--heading-font);
	padding: 12px 20px;
	background: var(--white-color);
	color: var(--dark-blue);
	font-size: 16px;
	font-weight: 900;
	min-width: 200px;   
}
.white-btn:hover {
	background-color: var(--dark-blue);
	color: var(--white-color);
}
.transparent-btn {
	font-family: var(--heading-font);
	padding: 15px 17px;
	background-color: transparent;
	border: 3px solid var(--white-color);
	color: var(--white-color);
	font-weight: 900;
	font-size: 14px;
	transition: background .6s ease-out, color .6s ease-out;
}
.transparent-btn:hover { 
	color: var(--dark-blue);
	background-color: var(--white-color);
}
.container {
	padding: 0 16px;
}

/* Site Header */
header.site-header {
	background: transparent;
	position: relative;
	z-index: 888;
	padding: 24px 0;
}
a.logo {
	max-width: 294px;
}
nav.navmenu {
	width: 100%;
}
nav.navmenu > ul {
	display: flex;
	align-items: center;
	justify-content: end;
}
.menu-item-has-children {
	position: relative;
}
nav.navmenu > ul > li > a {
	color: var(--text-color);
	font-size: 16px;
	line-height: 95px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 25px;
	display: flex;
	align-items: center;
}
nav.navmenu > ul > li > a:hover { 
	background-color: var(--pastel-color);
	color: var(--white-color);
}
nav.navmenu .menu-item-has-children:after {
	position: absolute;
	top: 100%;
	left: -2px;
	right: -2px;
	height: 6px;
	background-color: #fff;
	content: "";
	opacity: 0;
	transform: translateX(-200px);
	transition: opacity .3s,transform .3s;
}
nav.navmenu .menu-item-has-children:hover:after {
	opacity: 1;
	transform: translateX(0);
}
li.menu-item-has-children ul {
	position: absolute;
	left: 50%;
	top: calc(100% - 10px);
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	padding: 35px 60px;
	width: 263px;
	background: var(--red-color);
	gap: 5px;
	transition: all 0.3s;
}
nav.navmenu > ul > li.menu-item-has-children:hover > a {
	background-color: var(--pastel-color);
	color: var(--white-color);
}
nav.navmenu > ul > li.menu-item-has-children:hover ul {
	top: 100%;
	transform: translateX(0, -50%);
	opacity: 1;
	visibility: visible;
} 
li.menu-item-has-children > ul > li > a {
	color: var(--white-color);
	text-transform: uppercase;
	font-weight: 700;
}
li.menu-item-has-children > ul > li > a:hover {
	text-decoration: underline;
}
button.search-bar {
	border: none;
	background: no-repeat;
	padding: 0;
	cursor: pointer;
	font-size: 14px;
}
.site-search-form {
	position: absolute;
	width: 100%;
	left: 0;
	top: 95px;
	transform: translateY(-157px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
}
.active-search-bar.site-search-form {
	transform: translateY(30px);
	opacity: 1;
	visibility: visible;
}
.site-search-form label {
	display: block;
}
input.search__field {
	text-align: center;
	display: inline-block;
	height: 62px;
	width: 100%;
	padding: 0 20px;
	box-shadow: none;
	border: 0;
	background: #ebebeb;
	font-size: 16px;
	appearance: none;
	border-radius: 0;
	line-height: 62px;
	outline: none;
}
.mobile-menu {
	opacity: 0;
	visibility: hidden;
}

/* site Footer */
footer.site-footer {
	background-color: #5170ff;
	padding: 72px 0;
}
footer.site-footer * {
	color: #c7d4de;
}
footer.site-footer a:hover {
	color: var(--white-color);
}
.footer-menus {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	gap: 10px;
}
a.footer-logo {
	max-width: 200px;
}
.single-footer-menu ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.single-footer-menu h5 {
	margin-bottom: 26px;
	font-size: 18px;
	line-height: 1.78;
	text-transform: uppercase;
	color: #c7d4de;
}
.single-footer-menu a {
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
}
.footer-bottom-content {
	display: flex;
	padding-top: 25px;
	border-top: 1px solid #c7d4de;
	margin-top: 33px;
	justify-content: space-between;
}
.footer-bottom-content :is(a, p) {
	font-size: 15px;
}
.footer-foot-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap-reverse;
}
ul.footer-foot-menu {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer-foot-right {
	display: flex;
	align-items: center;
	gap: 32px;
}
.socials ul {
	display: flex;
	align-items: center;
	gap: 14px;
}
.footer-logos {
	flex: 0 0 137px;
}

/* Hero Section */
section.hero-section {
	padding: 120px 0 180px;
}
.section-boxes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	display: flex;
	min-height: 750px;
	height: 100%;
}
.admin-bar .section-boxes {
	height: calc(100% + 32px);
	background-color: #5B82E1;
}
.section-boxes div {
	flex: 1 1 50%;
}
.section-boxes img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-heading {
	max-width: 516px;
	margin: 0 auto;
	text-align: left;
}
.hero-heading h1 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 8px;
	line-height: 1.2;
	font-weight: 700;
}
.hero-content {
	text-align: center;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 209px;
	justify-content: space-between;
}
.franchise-filter-area {
	background-color: var(--white-color);
	max-width: 516px;
	margin: 0 auto;
	padding: 42px 42px 34px;
}
.franchise-filter-area h4 {
	font-weight: 400;
	margin-bottom: 32px;
}
.single-filter-field {
	position: relative;
	padding-bottom: 2px;
	border-bottom: 1px solid #dadada;
	margin-bottom: 33px;
	position: relative;
}
.single-filter-content {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 5px 0 6px;
}
.single-filter-content > span {
	flex: 0 0 20px;
}
.single-filter-content button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border: none;
	background: transparent;
	padding: 0;
}
.single-filter-content button p {
	font-size: 22px;
	line-height: 1;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 379px;
	padding-right: 10px;
}
.single-filter-content button span {
	transition: all 0.3s;
}
span.half-cicle {
	transform: rotate(-180deg);
}
.single-filter-content button img {
	max-width: 17px;
}
.options-container {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #ececec;
	border: 0;
	padding: 19px 0 0;
	border-top: 5px solid #ff5757;
	z-index: 99999;
}
.options-container.open-upward {
	top: auto;
	bottom: 100%;
	padding: 0 0 19px;
	border-bottom: 5px solid #ff5757;
	border-top: none;
}
.options-list {
	max-height: 300px;
	overflow: auto;
}
.single-checkbox {
	padding: 6px 35px;
	display: flex;
	transition: all 0.3s;
	cursor: pointer;
	text-align: left;
}
.single-checkbox input {
	visibility: hidden;
	opacity: 0;
	width: 0;
}
.single-checkbox span {
	font-size: 16px;
	color: #666;
	line-height: 27px;
	transition: all 0.3s;
}
.single-checkbox:hover, .single-checkbox.active {
	background-color: var(--red-color);
}
.single-checkbox:hover span, .single-checkbox.active span {
	color: var(--white-color);
}
.search-matches-franchise .red-btn {
	margin: 0 auto;
	min-width: 346px;
}
.hero-bottom-menu[style*="visibility: hidden"] {
	visibility: hidden !important;
}
.hero-bottom-menu {
	background-color: var(--text-color);
	z-index: 99;
	position: relative;
}
.hero-bottom-menu h5 {
	color: var(--white-color);
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
	padding-right: 40px;
	position: relative;
}
.hero-bottom-menu h5::after {
	content: '';
	height: 10px;
	width: 11px;
	border-right: 3px solid #808080;
	border-bottom: 3px solid #808080;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(317deg);
}
.menu-logo {
	max-width: 121px;
}
.hero-bottom-menu {
	display: flex;
	align-items: center;
	gap: 48px;
	justify-content: center;
	z-index: 9999;
}
.hero-bottom-menu ul {
	display: flex;
	align-items: center;
}
.hero-bottom-menu ul li a {
	font-size: 18px;
	font-weight: 900;
	line-height: 22.5px;
	color: var(--white-color);
	padding: 36px 22px 30px;
	border-bottom: 6px solid var(--text-color);
}
.hero-bottom-menu ul li a:hover {
	background-color: #232323;
	border-bottom-color: var(--white-color);
}

/* Simple Content Section */
section.simple-content-section {
	padding: 70px 0 48px;
}
section.simple-content-section h2 {
	text-align: center;
	margin-bottom: 32px;
}
section.simple-content-section p {
	max-width: 850px;
	margin: 0 auto;
}

/* Best Franchise Section */
section.best-franchise-section {
	background: #bacdf2;
	padding: 54px 0;
	text-align: center;
}
section.best-franchise-section h2 {
	margin-bottom: 25px;
}
.franchise-intro p {
	margin-bottom: 33px;
}
.franchise-tab-area ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 33px;
	border: none;
}
.franchise-tab-area ul li {
	flex: 0 1 245px;
}
.franchise-tab-area ul li a {
	font-weight: 900;
	font-size: 18px;
	display: block;
	border: 3px solid #fff;
	height: 68px;
	line-height: 62px;
	transition: color .4s, background .4s;
	text-transform: uppercase;
}
.franchise-tab-area ul li a.active {
	background: #fff;
	color: #1b384d;
}
.see-more {
	padding-top: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.franchise-card {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #e1e1e1;
}
.franchise-card > a {
	flex: 0 0 165px;
	background-color: var(--white-color);
	position: relative;
}
.franchise-card > a::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 20px 0;
	border-color: #fff transparent transparent;
	transform: translateX(-50%);
}
.franchise-card .card-content {
	flex: 1;
}
.card-image {
	height: 100%;
	max-height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.franchise-card > a img {
	transform: scale(1);
	transition: transform 0.4s;
	max-height: 100%;
	width: auto;
	max-width: 100%;
}
.franchise-card > a:hover img {
	transform: scale(1.1);
}
.card-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 20px 25px;
	background: #5b7ad4;
}
.card-content p.content {
	flex: 1;
	color: var(--white-color);
	line-height: 20px;
	/* white-space: nowrap; */
	-webkit-line-clamp: 9;
	overflow: hidden;
	text-overflow: ellipsis;
}
.card-content h3.title {
	position: relative;
	margin-bottom: 42px;
}
.card-content h3.title a{
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 25px;
	color: var(--white-color);
	transition: all 0.3s;
}
.card-content h3.title::after {
	position: absolute;
	bottom: -24px;
	left: 50%;
	width: 20px;
	height: 1px;
	background: #fff;
	content: "";
	transform: translateX(-50%);
}
.card-content h3.title a:hover {
	opacity: 0.7;
}
.card-content .cash {
	margin: 13px 0;
	color: #1b384d;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
}
button.card-action {
	background-color: #ff5757;
	color: #fff;
	border: none;
	position: relative;
	height: 49px;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 900;
	line-height: 49px;
	position: relative;
	transition: all 0.4s;
}
button.card-action > div {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transition: all 0.4s;
}
button.card-action .after-click, button.card-action.active .before-click {
	opacity: 0;
	visibility: hidden;
}
button.card-action.active {
	background: #bacdf2;
	color: var(--dark-blue);
}
button.card-action.active .after-click {
	display: flex;
	opacity: 1;
	visibility: visible;
}
.before-click, .after-click {
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: center;
}
.before-click span, .after-click span {
	display: inline-block;
	height: 20px;
	width: 20px;
	border: 2px solid var(--text-color);
	background-color: var(--white-color);
}
.after-click span {
	border-radius: 50%;
	position: relative;
	height: 24px;
	width: 24px;
}
.after-click p {
	text-transform: uppercase;
}
.after-click span::before {
	content: '';
	height: 13px;
	width: 8px;
	border-right: 3px solid var(--dark-blue);
	border-bottom: 3px solid var(--dark-blue);
	position: absolute;
	left: 21%;
	top: 50%;
	transform: rotate(45deg) translate(-50%, -50%);
}

/* request bar section */
.bar-placeholder {
	width: 100%;
}
section.bar-request {
	height: 110px;
	overflow: hidden;
	background: #ff5757;
	color: #fff;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	display: none;
	transition: all 0.3s ease;
}
section.bar-request .container {
	height: 100%;
}
.bar-content-area {
	display: flex;
	align-items: center;
	height: 100%;
	max-width: 700px;
	margin: 0 auto;
	justify-content: space-between;
}
.bar-content-area > div {
	flex: 1;
	height: 100%;
}
.bar-numbers {
	display: flex;
	align-items: center;
	position: relative;
	background: #c43514;
}
.bar-numbers::before {
	position: absolute;
	top: 0;
	right: 100%;
	left: -2000px;
	bottom: 0;
	background: #c43414;
	content: "";
}
.bar-numbers::after {
	position: absolute;
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 55.5px 0 55.5px 30px;
	border-color: transparent transparent transparent #c43414;
	content: "";
}
.count-bar {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #ff5757;
	margin-right: 20px;
}
.count-bar span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	font-size: 36px;
	font-weight: 900;
	transform: translate(-50%, -50%);
}
.bar-numbers h6 {
	text-transform: uppercase;
	line-height: 1;
}
.bar-action .transparent-btn {
	min-width: 233px;
}
.bar-action i {
	margin-left: 16px;
}
.bar-action {
	display: flex;
	align-items: center;
	justify-content: end;
}

/* Complete Request Modal */
#completeRequest .modal-dialog, .summary .modal-diolog {
	max-width: 520px;
}
#completeRequest .modal-content, .summary .modal-content {
	border-radius: 0;
	background: var(--white-color);
}
.modal-inner-content {
	position: relative;
	padding: 40px 50px 60px;
	box-shadow: 2px 3px 15px 0 rgba(12, 16, 29, .2);
}
button.modal-close {
	display: inline-block;
	width: 23px;
	height: 23px;
	position: absolute;
	right: 20px;
	top: 15px;
	border: none;
	background: no-repeat;
}
button.modal-close:before, button.modal-close::after {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 31px;
	height: 2px;
	background: #d74a28;
}
button.modal-close::before {
	transform: rotate(-45deg);
}
button.modal-close::after {
	transform: rotate(45deg);
}
.modal-inner-content h5 {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000;
	text-align: center;
	font-weight: 900;
}
.modal-inner-content h5::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 20px;
	height: 1px;
	transform: translateX(-50%);
	background: #486070;
}
.modal-inner-content .transparent-btn {
	color: var(--text-color);
	border: 3px solid var(--text-color);
	width: 100%;
	margin: 24px auto 0;
}
.modal-inner-content .transparent-btn:hover {
	background-color: rgba(222, 222, 222, 0.37);
}

/* Slider Section */
.slider-container {
	background: white;
	position: relative;
}
.slider-main {
	position: relative;
	width: 100%;
	min-height: 590px;
	user-select: none;
	cursor: grab;
}
.slider-main:active {
	cursor: grabbing;
}
.slider-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
	object-position: center;
	height: 100%;
	padding: 48px 32px 48px 127px;
}
.slider-item::after {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #3f3e3d;
	content: "";
	opacity: .55;
}
.slider-item.active {
	opacity: 1;
	visibility: visible;
	position: absolute;
}
.slider-title {
	font-size: 36px;
	line-height: 1.22;
	color: #fff;
	max-width: 550px;
	margin: 0 auto 40px;
	text-align: center;
	z-index: 99;
	position: relative;
}
.testimonial-card {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 54px 40px 48px 148px;
	background: #5b7ad4;
	color: #fff;
	max-width: 867px;
	margin: 0 auto;
	position: relative;
	z-index: 99;
}
.testimonial-card-image {
	position: absolute;
	left: -95px;
	height: 190px;
	width: 190px;
	border-radius: 50%;
	background-color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.testimonial-content {
	flex: 1;
}
.author-detials {
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: space-between;
}
.testimonial-message {
	font-size: 18px;
	line-height: 1.44;
	margin-bottom: 29px;
}
.testimonial-author {
	margin-bottom: 20px;
}
.author-name {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.11;
	margin: 0;
}
.author-position {
	font-size: 16px;
	line-height: 1.25;
}
.dot-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translate(-50%);
	z-index: 999;
}
.dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
}
.dot:hover {
	background: #999;
	transform: scale(1.2);
}
.dot.active {
	background: #5b7ad4;
}

/* Featured Section */
section.featured-section {
	padding: 66px 0;
	background-color: #ebebeb;
	text-align: center;
}
section.featured-section h2 {
	margin-bottom: 40px;
}
a.single-feature-link {
	height: 100%;
	width: 100%;
	text-align: center;
}
.single-feature {
	background: var(--white-color);
	border-bottom: 6px solid #ff5757;
	transition: background .4s cubic-bezier(.68,-.55,.265,1.55);
	padding: 32px 24px;
	display: flex;
	gap: 16px;
	flex-direction: column;
	cursor: pointer;
	height: 100%;
}
.single-feature h5 {
	transition: color .4s 
		cubic-bezier(.68, -.55, .265, 1.55);
	line-height: 1.35;
	font-weight: 400;
	flex: 1;
	align-content: center;
}
.single-feature:hover h5 {
	color: #ff5757;
}
.feature-img img {
	transform: scale(1);
	transition: transform 0.4s;
}
.single-feature:hover img {
	transform: scale(1.1);
}

/* Recent Post Section */
section.recent-post-section {
	padding: 67px 0 76px;
	background: var(--pastel-color);
	color: var(--white-color);
}
.recent-post-intro {
	margin-bottom: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.recent-post-intro .read-more {
	font-size: 18px;
	text-transform: uppercase;
	transition: color .4s;
	font-weight: 900;
	line-height: 1.5;
	color: var(--white-color);
	display: flex;
	align-items: center;
	gap: 7px;
}
.recent-post-intro .read-more i {
	font-size: 14px;
	line-height: 1.5;
}
.recent-post-intro .read-more:hover {
	color: var(--dark-blue);
}
.single-post {
	display: flex;
	gap: 16px;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.single-post h4 {
	font-size: 24px;
	line-height: 1.33;
}
.single-post p {
	margin-bottom: 10px;
}

/* Subscribe Section */
section.subscribe-section {
	padding: 48px 0 32px;
	text-align: center;
	border-top: 1px solid #e7eef3;
}
.subscribe-content h4 {
	font-size: 20px;
	color: #1b384d;
	font-weight: 400;
	margin: 0;
	padding-bottom: 24px;
	line-height: 1.5;
}
.input-box {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 484px;
	margin: 0 auto;
	height: 100%;
}
.input-box .input {
	background: #ebebeb;
	flex: 1;
	display: flex;
	align-items: center;
	position: relative;
}
.input-box span.input-icon {
	display: inline-block;
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
}
.input-box input[type="email"] {
	border: 1px solid transparent;
	outline: none;
	background: transparent;
	padding: 10px 10px 10px 55px;
	max-width: 100%;
	width: 100%;
}
.subscribe-newsletter .input-box input[type="email"] {
	width: 100%;
}
.input-box input[type="email"].wpcf7-not-valid{
	border: 1px solid red;
}
span.wpcf7-not-valid-tip {
	display: none;
}
.wpcf7 form .wpcf7-response-output {
	border-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}
.input-box .input span i {
	font-size: 31px;
	color: var(--red-color);
}
.input-box button {
	background: #ff5757;
	text-transform: uppercase;
	border: 0;
	font-weight: 900;
	color: #fff;
	width: 125px;
	margin: 0;
	font-size: 17px;
	transition: background .4s, color .4s;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0;
}
.input-box button:hover {
	background: #ed4922;
}
section.find-intro {
    background-color: #5170ff;
    padding: 0 0 70px;
    text-align: center;
}
section.find-intro h6 {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dark-blue);
}
section.find-intro h1 {
	color: var(--white-color);
	font-size: 36px;
	letter-spacing: 1px;
}
section.find-franchises {
	background: #e7eef3;
	padding-bottom: 60px;
}
section.find-franchises .main__head {
	background: var(--red-color);
	text-align: center;
	padding: 16px 0;
	position: relative;
	transform: translateY(-50%);
	margin-bottom: -10px;
	z-index: 5;
}
section.find-franchises .main__head h2 {
	font-size: 18px;
	color: var(--white-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}
section.find-franchises form {
	background: var(--white-color);
	padding: 17px 24px 27px;
	border-bottom: 6px solid var(--dark-blue);
	margin-bottom: 24px;
}
section.find-franchises form .form-field-group {
	display: flex;
	align-items: center;
	gap: 12px;
}
section.find-franchises form .form-field-group .single-filter-field {
	margin: 0;
	flex: 1;
	background: #e9eef1;
	border: none;
	padding: 7px 16px 6px;
}
section.find-franchises form .form-field-group .single-filter-field:not(.single-filter-field:first-child) {
	max-width: 300px;
}
section.find-franchises form .form-field-group .search-matches-franchise {
	flex: 0 0 60px;
}
section.find-franchises form .form-field-group .search-matches-franchise button {
	width: 100%;
	border: none;
	padding: 12px;
	color: var(--white-color);
	background: var(--dark-blue);
	font-weight: 800;
	letter-spacing: 0.5px;
	transition: all 0.33s;
}
section.find-franchises form .form-field-group .search-matches-franchise button:hover {
	background: #bacdf2;
	color: var(--dark-blue);
}

/* Single Franchise Section */
section.single-franchise-section {
	padding: 48px 0 60px;
}
.post-content-image {
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
}
.franchise-tab > ul.nav {
	list-style-type: none;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 32px;
	padding: 0;
}
.franchise-tab > ul.nav::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: #5b7ad4;
	content: "";
}
.franchise-tab > ul.nav > li {
	padding: 0;
}
.franchise-tab ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	font-size: 18px;
	transition: color .4s, background .4s;
	text-transform: uppercase;
	height: 53px;
	line-height: 53px;
	background: #f7f7f7;
	color: #1b384d;
	padding: 0 8px;
}
.franchise-tab ul li a:hover, .franchise-tab ul li a.active {
	color: #fff;
	background: #5b7ad4;
}
.franchise-tab p {
	line-height: 1.38;
	margin-bottom: 20px;
}
.franchise-tab h2 {
	margin-top: 30px;
	margin-bottom: 15px;
}
.franchise-tab h3 {
	font-size: 26px;
	margin-bottom: 11px;
}
.franchise-tab ul {
	list-style-type: disc;
	padding-left: 20px;
	padding-bottom: 20px;
}
.franchise-tab ul li {
	padding-left: 10px;
	padding-bottom: 10px;
}
.cta-block {
    padding: 20px 0;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.cta-block h4 {
	font-size: 23px;
	margin: 0;
}
.cta-block a.red-btn {
	min-width: 226px;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 900;00; */
}
.blogpost-media iframe {
	width: 100%;
}
.blogpost-media {
	padding-bottom: 48px;
}
.video-description {
	padding: 24px 0;
	border-bottom: 1px solid #e7e7e7;
}
.video-description h5 {
	font-weight: 400;
}
.testimonials {
	padding-bottom: 32px;
}
.testimonial:not(:first-child) {
	padding-top: 30px;
	border-top: 1px solid #e7e7e7;
	margin-top: 32px;
}
h2.widget-title {
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 900;
}
.widget-head {
	background: #1b384d;
	padding: 23px 8px;
	text-align: center;
}
h2.wp-block-heading.widget-title {
	background-color: var(--pastel-color);
	text-align: center;
	padding: 23px 8px;
}
.widget-body {
	padding: 24px 25px 25px;
	background: #f4f4f4;
	text-align: center;
}
.widget-image-container {
	background-color: #fff;
	padding: 16px 0;
}
.widget-image-and-request-info a.red-btn{
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 900;
	min-width: 100%;
	margin: 24px 0 28px;
}
.widget_categories a {
	padding: 15px 27px;
	display: block;
	font-size: 16px;
	font-weight: 900;
	text-decoration: none;
	background: #f4f4f4;
	-webkit-transition: background .2s,color .2s;
	-o-transition: background .2s,color .2s;
	transition: background .2s,color .2s
}
.widget_categories a:hover, .widget_categories .current-cat a{
	background: #fbfbfb;
	color: var(--pastel-color);
}

.single-info {
	padding-bottom: 14px;
	margin-bottom: 13px;
	border-bottom: 1px solid #dbdbdb;
}
.single-info:last-child {
	border: none;
}
.single-info h6 {
	margin: 0;
}


section.request-form-section {
	margin: 48px 0;
}
.request-form-area {
	background-color: #f4f4f4;
	padding: 48px 24px 32px;
}
.request-form-inner {
	max-width: 864px;
	margin: 0 auto;
}
.request-form-inner > h2 {
	color: #1b384d;
	text-align: center;
	margin-bottom: 30px;
}
.single-step .step {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}
.step span {
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid #000;
	border-radius: 50%;
	font-weight: 900;
	font-size: 30px;
}
.step p {
	line-height: 1.38;
	max-width: 320px;
}
.single-step h5 {
	text-align: left;
	padding: 17px 31px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 900;
	margin-bottom: 32px;
}
.single-field .single-filter-content button p {
	font-size: 16px;
}
.checkbox label span.remove {
	display: inline-block;
	color: #ff5757;
	pointer-events: all;
	vertical-align: bottom;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}
.checkbox input:checked+label:after {
	color: #ff5757;
}
ul.list-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 40px;
}
.checkbox input {
	position: absolute;
	top: -50px;
	left: -50px;
	visibility: hidden;
	opacity: 0;
}
.checkbox label span {
	font-weight: 700;
}
label strong, label span, label::after {
	font-family: var(--heading-font);
}
a.popup-open {
	color: #75a7ce;
	font-weight: 400;
}
a.popup-open:hover {
	opacity: 0.6;
}
button.clear-checkboxes {
	margin-top: 18px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	transition: color .4s;
	border: none;
	color: #ff5757;
	margin-left: 10px;
}
button.clear-checkboxes:hover {
	color: #679bc2;
}
.recommended-franchises label {
	position: relative;
	cursor: pointer;
}
.recommended-franchises label::before {
	position: absolute;
	top: 2px;
	left: -24px;
	display: block;
	width: 17px;
	height: 18px;
	border-radius: 4px;
	background: #fff;
	content: "";
}
.recommended-franchises label::after {
	opacity: 0;
	visibility: hidden;
	transition: all .4s;
	position: absolute;
	top: 5px;
	left: -18px;
	content: '';
	height: 10px;
	width: 6px;
	border-bottom: 3px solid #1b384d;
	border-right: 3px solid #1b384d;
	transform: rotate(45deg);
	border-radius: 1px;
}
.recommended-franchises .checkbox-checked label::after {
	opacity: 1;
	visibility: visible;
}
.all-fields label {
	font-weight: 700;
	font-family: var(--heading-font);
	line-height: 20px;
}
.single-field input + label {
	font-weight: 400;
	display: block;
	font-size: 13px;
	line-height: 16px;
	padding: 4px 0 8px;
}
.single-field input, .single-field select {
	padding: 0 27px;
	border: 1px solid #e1e1e1;
	width: 100%;
	height: 62px;
	line-height: 62px;
	background: #fff;
	outline: none;
	color: #000;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
	appearance: textfield;
}
.all-fields {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 38px;
}
span.small-text {
	font-size: 13px;
	padding: 4px 0 8px;
	line-height: 16px;
}
.single-field .single-filter-field {
	border: none;
	background: #fff;
	padding: 0;
}
.single-field .single-filter-field .single-filter-content {
	padding: 0;
}
.single-field .single-filter-field .single-filter-content button {
	line-height: 62px;
	padding: 0 27px;
	border: 1px solid transparent;
}
.single-field .single-filter-field .single-filter-content button:hover {
	border: 1px solid #e1e1e1;
}
.single-field input::placeholder {
	color: #000;
};
.single-field .single-filter-field .single-filter-content button p {
	font-size: 16px;
}
.single-field .single-filter-field .single-filter-content button img {
	max-width: 14px;
}
.single-field .single-checkbox select, .single-field .single-checkbox input {
	line-height: normal;
	height: 24px;
	width: initial;
}
.request-form-bottom-content p {
	font-size: 12px;
	line-height: 18px;
	padding: 32px 0;
}
.request-form-bottom-content p a {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.request-form-bottom-content p a:hover {
	text-decoration: none;
}
.request-form-bottom-content .button-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
button.back-btn {
	padding: 0 17px;
	height: 62px;
	line-height: 56px;
	color: #ff5757;
	border: 3px solid #ebebeb;
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-size: 16px;
	transition: border-color .4s;
	font-weight: 900;
}
button.back-btn:hover {
	border-color: #ff5757;
	color: #ff5757;
}
.button-group button.red-btn {
	padding: 17px 48px;
	font-size: 18px;
}
.popup-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 48px;
}
.subscribe-newsletter {
	text-align: right;
}
.subscribe-newsletter .input-box {
	justify-content: end;
	align-items: end;
	margin: 0 0 0 auto;
}
.subscribe-newsletter h5 {
	font-weight: 400;
	color: var(--white-color);
	font-size: 20px;
	margin-right: 0;
}
.single-franchise .franchise-tab .tab-about h2 {
	margin-top: 0;
}
.aligncenter {
	margin: 0 auto;
	display: block;
}
p.article-meta {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: .2em;
	font-family: var(--heading-font);
}
.video-container{
	position: relative;
	padding:56.25% 0 0 0;
}
.video-container iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-container > div {
	padding: 0 !important;
	position: absolute !important;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}


.blog-items h3.category-title {
	padding-bottom: 30px
}
.blog-items .result {
	padding-bottom: 36px;
	margin-bottom: 37px
}
.article-media {
	overflow: hidden;
	margin-bottom: 15px !important;
}
.blog-items .result-meta {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	padding: 12px 8px;
	background: #253356;
	text-align: center;
}
.blog-items .result-meta p {
	margin: 0;
	color: #75a8ce;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .2em;
}
.blog-items .result-meta h2 {
	margin-bottom: 6px;
	font-size: 36px;
	color: #fff;
	line-height: 1;
}
.blog-items .result__head {
	position: relative;
	min-height: 120px;
}
.blog-items .result__inner {
	overflow: hidden
}
.blog-items .result-entry {
	margin-bottom: 20px
}
.blog-items .article-media a img {
	-webkit-transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
	transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
	-o-transition: transform .6s cubic-bezier(.68,-.55,.265,1.55);
	transition: transform .6s cubic-bezier(.68,-.55,.265,1.55);
	transition: transform .6s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55)
}
.blog-items .article-media a:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}
.result-entry h5 a {
	line-height: 1.5;
}
.result-entry h5 a:hover {
	color: var(--pastel-color);
}
.blog-items {
	margin-bottom: 37px;
	padding-bottom: 36px;
	border-bottom: 1px solid #e5e5e5;
}
.blog-items a.read-more {
	font-weight: 900;
	font-size: 14px;
	color: var(--pastel-color);
}
.blog-items a.read-more i{
	font-size: 13px;
}
.blog-items a.read-more:hover {
	color: #000;
}

.filter-detail {
	padding: 18px 0 13px;
	background: #fff;
	border-bottom: 6px solid #1b384d;
	transform: translateY(-30px);
	margin-bottom: -28px;
}
.filter-detail-secondary ul {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style: none outside none
}

.filter-detail-secondary ul:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: #fff;
	content: ""
}

.filter-detail-secondary ul li {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 25%;
	flex: 0 1 25%;
	padding: 0 20px;
	border-right: 1px solid #e1e1e1;
	margin-bottom: 10px
}

.filter-detail-secondary a {
	display: block;
	padding: 10px 18px;
	color: #1b384d;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	-webkit-transition: color .4s,background .4s;
	-o-transition: color .4s,background .4s;
	transition: color .4s,background .4s
}

.filter-detail-secondary a.active,.filter-detail-secondary a:hover {
	background: var(--red-color);
	font-weight: 900;
	color: #fff
}

/* section aside  */
.read-more {
	color: var(--white-color);
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: color .4s;
	-o-transition: color .4s;
	transition: color .4s;
	font-family: var(--heading-font);
	font-weight: 900;
	line-height: 1.5;	
}
.read-more:hover {
	color: #1b384d;
}
.rich-text {
	background: #fff;
	color: #1b384d;
	padding: 28px 32px 25px 27px;
	border-bottom: 6px solid #1b384d;
	margin-bottom: 15px;
}
.rich-text h4 {
	margin: 0px 0px 14px;
}
.rich-text p {
	line-height: 1.25;
	color: #1b384d;
}

.aside-testimonials {
	background: #1b384d;
	color: #fff;
	margin-bottom: 15px;
}
.aside-testimonials .testimonial__head {
	position: relative;
	padding: 35px 0 82px;
	text-align: center;
	background-size: cover;
}
.aside-testimonials .testimonial__title {
	position: relative;
	z-index: 5;
	font-size: 30px;
}
.aside-testimonials .testimonial__image {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: #fff;
	z-index: 4;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translate(-50%,50%);
	-ms-transform: translate(-50%,50%);
	transform: translate(-50%,50%)
}

.aside-testimonials .testimonial__head:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:#1b384d;
	opacity: .7;
	content: ""
}

.aside-testimonials .testimonial__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 62.71%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin-top: -3px
}

.aside-testimonials .testimonial__body {
	padding: 79px 27px 25px
}

.aside-testimonials .testimonial__body p {
	margin-bottom: 17px;
	font-family: Avenir,Arial,Helvetica,sans-serif;
	line-height: 1.38
}

.aside-testimonials .testimonial__author p {
	font-size: 13px;
	line-height: 1.23
}
.section-aside .read-more:hover {
	color: #75a8ce;
}

.free-e-book {
	background: #fff;
	color: #1b384d;
}
.free-e-book  .widget__head {
	padding: 23px 8px;
	text-align: center;
	background-color: #ff5757;
}
.free-e-book  .widget__title {
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 900;
}
.free-e-book  .widget__image {
	padding: 24px 0 8px;
	text-align: center;
}
.free-e-book  .widget__entry {
	padding: 28px 15px 12px 27px;
}
.free-e-book .widget__entry h6 {
	font-size: 16px;
	line-height: 1.38;
	margin-bottom: 22px;
}
.free-e-book .widget__entry p {
	margin-bottom: 17px;
}
.free-e-book .read-more {
	color: #679bc2
}
.free-e-book .read-more:hover {
	color: #1b384d
}


.franchise-card.card-featured {
	flex-direction: row;
	margin: 24px 0;
}
.franchise-card.card-featured > a {
	flex: 0 0 282px;
}
.franchise-card.card-featured > a::after {
	content: "";
	border: none;
} 
h6.card__label {
	font-size: 12px;
	line-height: 2;
	font-weight: 900;
	letter-spacing: .2em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 23px;
}
.franchise-card.card-featured .card-image {
	height: calc(100% - 47px);
	max-height: 100%;
	position: relative;
}
.franchise-card.card-featured .card-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: 58.823%;
	-webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	-o-transition: transform .4s;
	transition: transform .4s;
	transition: transform .4s,-webkit-transform .4s;
}
.franchise-card.card-featured  a:hover img {
	-webkit-transform: translate(-50%,-50%) scale(1.1);
	-ms-transform: translate(-50%,-50%) scale(1.1);
	transform: translate(-50%,-50%) scale(1.1)
}
.franchise-card.card-featured .card-content {
	padding: 28px 21px 18px 37px;
	text-align: left;
}
.card-top-area {
	margin-bottom: 27px;
}
.franchise-card.card-featured .card-top-area h3 {
	display: inline-block;
	margin-bottom: 34px;
	text-align: left;
}
.card-featured .card-content h3.title::after {
	left: 0;
	transform: translate(0);
	bottom: -16px;
}
.franchise-card.card-featured p.content {
	line-height: 1.38;
	margin-bottom: 8px;
}
.card-bottom-area {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 21px;
}
.card-bottom-area button.card-action {
	flex: 0 0 240px;
}


ul.all-directory {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 25px 20px;
	background: #fff;
	border-bottom: 6px solid #1b384d;
	overflow: auto;
}
.filter-with-letter {
	transform: translateY(-30px);
	margin-bottom: -28px;
}
ul.all-directory a {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	font-family: var(--heading-font);
	text-transform: uppercase;
	color: #1b384d;
	font-size: 16px;
	letter-spacing: .018em;
	text-align: center;
	transition: background .4s;
	text-transform: uppercase;
}
ul.all-directory a:hover {
	background: #e7eef3
}

ul.all-directory li a.active {
	background: #d74a29;
	color: #fff;
	font-weight: 900
}
.for-recaptcha {
	margin-bottom: 32px;
}
p.error-message {
	padding: 8px 0 0 ;
	padding-top: 5px;
	color: #790000;
	font-weight: 700;
	letter-spacing: normal;
	font-size: 13px;
}
.section-list .section__columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 46px 12px 37px;
	background-color: #fff;
}
.section-list .col--1of4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 25%;
	flex: 0 1 25%;
}
.section-list .col {
	padding: 0 21px
}
.section-list .col+.col {
	border-left: 1px solid #e1e1e1
}
.section-list .col--1of4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 25%;
	flex: 0 1 25%
}
.section-list li {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.5
}
.section-list li a {
	display: block;
	text-decoration: none;
	padding: 1px 20px 1px 49px
}

.section-list .current-menu-item a,.section-list li:hover a {
	background: #bacdf2;
	color: #1b384d;
	font-weight: 900;
}

.section-list .section__columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 46px 12px 37px;
}
.section-list .section__columns ul {
	list-style: none outside none;
	padding-left: 0
}
.section-list--alt li a {
	padding-left: 13px;
	padding-right: 0
}
@media(max-width: 1200px) {
	.section-list li a {
		padding-left:15px;
		padding-right: 15px
	}
}

@media(max-width: 1023px) {
	.section-list .col {
		padding:0 10px
	}
	.section-list li a {
		padding-left: 0;
		padding-right: 0;
		font-size: 14px
	}
}

@media(max-width: 767px) {
	.section-list .section__columns {
		-ms-flex-wrap:wrap;
		flex-wrap: wrap;
		padding: 30px 15px
	}
	.section-list .col {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%
	}
	.section-list .col,.section-list .col+.col {
		border-left: 1px solid #e1e1e1
	}
}

section.learning-center-section {
	padding: 48px 0 60px;
}
.learning-intro {
	max-width: 790px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 32px;
}
.learning-item {
	background-color: #f4f4f4;
	padding: 32px 50px 48px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 294px;
	border: 1px solid transparent;
	transition: all 0.3s;
}
.learning-item:hover {
	background-color: #fafafa;
	border-color: #e1e1e1;
}
.learning-item h4 {
	margin: 0;
	font-size: 24px;
	line-height: 1;
}
.learning-item p {
	flex: 1;
	align-content: center;
	line-height: 1.25;
}
.learning-item a.red-btn {
	margin: 0 auto;
	padding: 11px 26px;
	font-size: 16px;
	line-height: 20px;
}

/* FAQs Section */
section.faqs-section {
	padding: 48px 0 60px;
}
.all-faqs-area > p {
	margin-bottom: 20px;
	font-family: var(--heading-font);
	line-height: 1.25;
}
.faq-category .accordion {
	margin-left: 42px;
	padding-bottom: 10px;
}
.faq-category {
	margin-bottom: 48px;
}
.faq-category h4 {
	margin-bottom: 32px;
}
button.faq-button {
	border: none;
	background: no-repeat;
	font-weight: 900;
	line-height: 28px;
	padding: 0;
	transition: all 0.3s;
	text-align: left;
}
.faq-header:hover .faq-button {
	color: #679bc2;
}
.faq-header:hover::before {
	border-color: #679bc2;
}
.faq-header:hover::after {
	color: #679bc2;
	transform: rotate(-45deg);
}
.faq-header:has(.faq-button:not(.collapsed)) .faq-button,
.faq-header:has(.faq-button:not(.collapsed)):hover .faq-button {
	color: #679bc2;
}
.faq-header:has(.faq-button:not(.collapsed))::before,
.faq-header:has(.faq-button:not(.collapsed)):hover::before {
	border-color: #679bc2;
}
.faq-header:has(.faq-button:not(.collapsed))::after,
.faq-header:has(.faq-button:not(.collapsed)):hover::after {
	color: #679bc2;
	transform: rotate(-45deg);
}
.faq-item:not(:first-child) {
	padding-top: 17px;
	border-top: 1px solid #e5e5e5;
}
.faq-header {
	position: relative;
	cursor: pointer;
	padding: 0;
}
.faq-header::before {
	position: absolute;
	top: 0;
	left: -42px;
	width: 24px;
	height: 24px;
	border: 2px solid #ccc;
	content: "";
	-webkit-transition: border-color .4s;
	-o-transition: border-color .4s;
	transition: border-color .4s;
}
.faq-header::after {
	position: absolute;
	top: 2px;
	left: -35px;
	content: "+";
	font-weight: 900;
	text-align: center;
	font-size: 16px;
	color: #ccc;
	-webkit-transition: color .4s, -webkit-transform .4s;
	transition: color .4s, -webkit-transform .4s;
	-o-transition: transform .4s,color .4s;
	transition: transform .4s, color .4s;
	transition: transform .4s, color .4s, -webkit-transform .4s;
}
.faq-body {
	padding-bottom: 20px;
}


/* Custom Pagination */
.pagination {
	margin: 50px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination ul {
	list-style: none outside none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.pagination li {
	margin: 0 8px;
}
.pagination li:not(.pagination-item) a, .pagination li.current:not(.pagination-item) span {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagination li a {
	transition: color .4s,background .4s
}
.pagination .current a,.pagination li:not(.pagination-item) a:hover, .pagination .current a,.pagination li.current:not(.pagination-item) span {
	color: #fff;
	background: #000;
}
.pagination .pagination-item--prev {
	margin-right: 35px;
}
.pagination .pagination-item--next {
	margin-left: 35px;
}
.pagination .pagination-item--next,.pagination .pagination-item--prev {
	font-family: var(--heading-font);
	font-weight: 900;
	text-transform: uppercase;
}
.pagination .pagination-item.pagination-item--next a:hover, .pagination .pagination-item.pagination-item--prev a:hover {
	color: #679bc2;
}
.pagination .pagination-item--next i,.pagination .pagination-item--prev i {
	font-size: 12px;
	vertical-align: top;
	padding-top: 4px;
}

.latest-video {
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 39px;
	margin-bottom: 39px;
}
.single-video {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.embed-video-here {
	max-width: 100%;
}
iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
.single-video h6 {
	margin: 0;
}
.content p {
	font-size: 14px;
}

/* helpful links */
.helpful-links .link-item {
	margin-top: 20px;
}
.helpful-links .link-item h4 {
	font-size: 23px;
	margin-bottom: 10px;
}
.helpful-links .link-item p {
	margin-bottom: 18px;
}
.helpful-links .link-item a {
	color: #679bc2;
}
.helpful-links .link-item a:hover {
	color: #1b384d;
	text-decoration: underline
}

.card-head {
	background: #1b384d;
	text-align: center;
	color: #fff;
	padding: 24px 10px
}
.card-head span {
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 900
}
.all-video-category .card-head {
    background-color: var(--pastel-color);
}
ul.video-cat-list a {
    padding: 15px 27px;
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: #f4f4f4;
    transition: background .2s, color .2s;
}
ul.video-cat-list a:hover, ul.video-cat-list li.current a {
    background: #fbfbfb;
    color: #679bc2
}
section.find-intro .container p {
    max-width: 828px;
    margin: 10px auto 0;
    text-align: left;
    color: #fff;
    font-weight: 500;
    line-height: 1.36;
}
h3.category-title{
    margin-bottom: 30px;
}

/* Sidebar Learning Center */
.learning-center {
    margin-bottom: 48px;
}
.sidebar-header {
    padding: 23px 8px;
    text-align: center;
	background-color: var(--red-color);
}
.sidebar-header h2{
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}
.menu-nav-container .has-children>a:after {
    display: inline-block;
    font-family: FontAwesome;
    vertical-align: middle;
    content: "\f078";
    font-size: 12px;
    font-weight: 500;
    margin-left: 5px;
}
.menu-nav-container .menu-item img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.menu-nav-container a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    background: #f4f4f4;
    transition: background .2s,color .2s;
}
.menu-nav-container .active>a,.menu-nav-container .current-menu-item>a,.menu-nav-container a:hover {
    background: #fbfbfb;
    color: #d74a29;
}
.menu-nav-container a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 100%;
    width: 4px;
    background: #d74a29;
    content: "";
    transition: bottom .2s;
}
.menu-nav-container .active>a:before,.menu-nav-container .current-menu-item>a:before,.menu-nav-container a:hover:before {
    bottom: 0;
}
.menu-nav-container>ul>li>a {
    padding: 15px 27px;
}
.menu-nav-container .current-menu-item ul, .menu-nav-container .current-page-ancestor ul {
    display: block;
}
.menu-nav-container .sub-menu {
    display: none;
}
.menu-nav-container .sub-menu a {
    padding: 17px 5px 17px 48px;
    font-size: 14px;
    background: #e9e9e9;
    font-weight: 400;
}
.menu-nav-container .sub-menu a:hover,.menu-nav-container .sub-menu li.current-menu-item a {
    background: #fbfbfb;
}

.franchise-rating {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.franchise-rating h4 {
    margin: 0;
}
.franchise-rating .star span {
    font-size: 28px;
    display: inline-block;
    color: #ffe01a;
}
.franchise-rating .red-btn {
    max-width: 100%;
    width: 100%;
}
div#fddModal .modal-close {
    right: 56px;
    top: 32px;
}
.fdd-form label {
    margin-bottom: 8px;
    font-weight: 600;
}
.fdd-form button.red-btn {
    max-width: 100%;
    width: 100%;
    margin-top: 24px;
}

.search-intro {
    position: relative;
    max-width: 472px;
    margin: 0 auto
}
.search-intro form, .search-intro form label {
    width: 100%
}
.fdd-form {
    padding-top: 32px;
}
.search-intro input[type=text] {
    padding: 0 20px;
    width: 100%;
    height: 61px;
    border: 3px solid #fff;
    background-color: transparent;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    transition: border-color .5s ease-out;
}
.search-intro input[type=text]:focus {
    border-color: #1b384d
}
.search-intro .search__btn {
    position: absolute;
    top: 50%;
    left: auto;
    right: 20px;
    opacity: 1;
    width: auto;
    height: auto;
    visibility: visible;
    transform: translateY(-50%);
    border: navajowhite;
    background: no-repeat;
}
.search-intro .search__btn:before {
    font-family: FontAwesome;
    content: "\f002";
    font-size: 18px;
    color: #fff
}
section.single-franchise-section .inner-page-content ul {
    list-style: inherit;
    padding-left: 20px;
}
.border-bottom-8 {
    border-bottom: 8px solid #1b384d !important;
}
.article-stats {
    padding: 5px 0 27px
}
.article-stats ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin-bottom: 12px;
}
.article-stats ul li:before {
    display: none
}
.article-stats .article-stats__entry {
    padding-left: 22px
}
.article-stats .article-stats__info {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 155px;
    flex: 0 0 155px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.article-stats .article-stats__info h5 {
    display: inline-block;
    margin: 0;
    font-size: 24px;
    line-height: 1;
    color: #5170ff;
}
.article-stats .article-stats__graph {
    position: relative;
    display: inline-block;
    width: 77px;
    background: #c9e3f7;
    height: 4px
}
.article-stats .article-stats__graph-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #5170ff;
    content: "";
    -webkit-transition: width 1s cubic-bezier(.68,-.55,.265,1.55);
    -o-transition: width 1s cubic-bezier(.68,-.55,.265,1.55);
    transition: width 1s cubic-bezier(.68,-.55,.265,1.55)
}


.list-features {
    max-width: 852px;
    margin: 0 auto
}

.list-features .list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 29px 0 0;
    margin-bottom: 27px
}

.list-features .list-item h5 {
    font-size: 18px;
    line-height: 1.35
}

.list-features .list-item p {
    font-family: Avenir Roman,sans-serif;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 0
}

.list-features .list-item p:last-child {
    margin-bottom: 0
}

.list-features .list-item~.list-item {
    border-top: 1px solid #e1e1e1
}

.list-features .list__head {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 278px;
    flex: 0 1 278px;
    padding-right: 20px
}

.list-features .list__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 573px;
    flex: 0 1 573px
}

.list-features .list__body p {
    margin-bottom: 20px
}

.list-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.list-buttons a {
    display: block;
    padding: 12px 24px;
    background: #1b384d;
    color: #fff;
    -webkit-transition: background .6s ease-out,color .6s ease-out;
    -o-transition: background .6s ease-out,color .6s ease-out;
    transition: background .6s ease-out,color .6s ease-out;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none
}

.list-buttons a:hover {
    background: #fff;
    color: #1b384d
}

.list-buttons li+li {
    margin-left: 15px
}

.list-features--alt {
    margin: 0
}

.list-features--alt .list-features__head {
    margin-bottom: 27px
}

.list-features--alt .list-features__head h4 {
    margin-bottom: 0
}

.list-features--alt .list-item {
    padding-top: 0;
    margin-bottom: 0
}

.list-features--alt .list-item~.list-item {
    padding-top: 16px
}

.list-features--alt .list__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 219px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.list-features--alt .list__head h4 {
    margin: 0 0 0 21px
}

.list-features--alt .list__head-image {
    position: relative;
    width: 58px;
    height: 58px;
    background: #5170ff;
    border-radius: 50%
}

.list-features--alt .list__head-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 70.689%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.list-features--alt .list__body {
    padding: 13px 0;
    font-family: Avenir Roman,sans-serif
}

.list-features--alt .list__body ul {
    margin-bottom: 0
}

.list-features--numbers {
    counter-reset: a
}

.list-features--numbers .list-item {
    padding-top: 32px;
    margin-bottom: 23px
}

.list-features--numbers .list-item~.list-item {
    padding-top: 26px
}

.list-features--numbers .list__head {
    position: relative;
    max-width: 194px;
    padding-left: 61px
}

.list-features--numbers .list__head:before {
    position: absolute;
    top: -9px;
    left: 2px;
    width: 40px;
    height: 40px;
    background: #5170ff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    counter-increment: a;
    content: counter(a);
    font-family: Avenir,Arial,Helvetica,sans-serif;
    font-size: 26px;
    font-weight: 900;
}

.list-features--numbers .list__body {
    padding-left: 34px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-family: Avenir Roman,sans-serif
}

.list-features--numbers .list__body p {
    line-height: 1.25
}

.list-features-secondary {
    margin-bottom: 50px
}

.list-features-secondary .list-item {
    margin-bottom: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.list-features-secondary .list-item~.list-item {
    padding-top: 25px
}
.post-content-image.news-thumnail img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}


@media(max-width: 1023px) {
    .list-features--alt .list__head-image {
        width:40px;
        height: 40px
    }

    .list-features--alt .list__head-image img {
        max-width: 50%
    }

    .list-features--alt .list__head h4 {
        margin-left: 10px;
        font-size: 22px
    }
}

@media(max-width: 767px) {
    .list-buttons {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .list-buttons li+li {
        margin: 0 0 10px
    }

    .list-buttons li {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        padding: 0 10px;
        margin-bottom: 10px;
        text-align: center
    }

    .list-features-secondary--alt .list__head,.list-features-secondary .list__head {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .list-features-secondary--alt .list__body,.list-features-secondary .list__body {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
	.wp-block-columns.is-not-stacked-on-mobile {
		grid-template-columns: auto;
	}	
}

@media (max-width: 444px) {
    .list-features--alt .list-item,.list-features--numbers .list-item {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .list-features--numbers .list__head {
        max-width: 100%;
        padding-left: 50px;
		margin-bottom: 10px;
    }

    .list-features--numbers .list__head:before {
        left: 0
    }

    .list-features--numbers .list__body {
        padding-left: 47px
    }

    .list-features--alt .list__body {
        margin-left: 30px
    }

    .list-features-secondary .list-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .list-features-secondary .list__head {
        padding-left: 0
    }

    .list-features-secondary--alt .list__body,.list-features-secondary--alt .list__head,.list-features-secondary .list__body,.list-features-secondary .list__head {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }	
}

@media(max-width: 374px) {
    .list-features .list-item {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
        padding-top: 15px;
        margin-bottom: 20px
    }

    .list-features .list__head {
        margin-bottom: 10px
    }

    .list-buttons li {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}