$monitor: 1440px; $laptop: 1024px; $tablet: 992px; $mobile: 768px;

@mixin breakpoint($point) { @if $point == monitor { @media (max-width: $monitor - 1px) { @content; } } @else if $point == laptop { @media (max-width: $laptop - 1px) { @content; } } @else if $point == tablet { @media (max-width: $tablet - 1px) { @content; } } @else if $point == mobile { @media (max-width: $mobile - 1px) { @content; } } }

// https://wizardry-technique.webflow.io/ body { font-size: 1.1111111111111112vw; } /\* Max Font Size */ @media screen and (min-width:1440px) { body { font-size: 16px; } }

/\* Min Font Size */ @media screen and (max-width:991px) { body { font-size: 1em; } } // https://wizardry-technique.webflow.io/

body { font-family: GT-America; font-style: normal; font-weight: 275; line-height: 150%; color: var(--forest); background-color: var(--page-bg); }

h1, .h1 { font-size: 5em; font-style: normal; font-weight: 500; line-height: 110%; letter-spacing: -0.8px; margin: 0.25em 0 0.75em;

@include breakpoint(tablet) { font-size: 3.125em; } } h2, .h2 { font-size: 3.125em; font-style: normal; font-weight: 500; line-height: 120%; letter-spacing: -1px; margin: 0.25em 0 0.75em;

@include breakpoint(tablet) { font-size: 2.1875em; } } h3, .h3 { font-size: 2.8125em; font-style: normal; font-weight: 500; line-height: 125%; letter-spacing: -0.9px; margin: 0.25em 0 0.75em;

@include breakpoint(tablet) { font-size: 1.75em; } } h4, .h4 { font-size: 1.875em; font-style: normal; font-weight: 500; line-height: 105%; letter-spacing: -0.6px; margin: 0.25em 0 0.75em;

@include breakpoint(tablet) { font-size: 1.25em; } } p { font-style: normal; font-size: 16px; font-weight: 275; line-height: 150%; // color: var(--forest); } .eyebrow { font-size: 15px; font-style: normal; font-weight: 500; line-height: 123%; letter-spacing: 1.5px; text-transform: uppercase;

@include breakpoint(tablet) { font-size: 12px; } }

// LARGE BUTTON .button-large { display: inline-block; text-align: center; font-size: 18px; font-style: normal; font-weight: 400; line-height: 105.687%; text-transform: capitalize; text-decoration: none; color: inherit; padding: 0.82em 2em; min-width: 212px; border: 1px solid var(--forest); border-radius: 25px; transition: 0.3s background-color;

&:hover { background-color: var(--evergreen); border-color: var(--evergreen); color: var(--neutral); }

&--white-line { @extend .button-large; color: var(--white); border: 1px solid var(--white);

&:hover { color: var(--black); background-color: var(--white); } }

&--evergreen { @extend .button-large; background-color: var(--evergreen); color: var(--neutral); border: none;

&:hover { background-color: var(--forest); } } }

// SMALL BUTTON .button-small { .button-small-href { display: flex; padding: 20px 0; color: inherit; text-decoration: none;

.button-small-line-right { position: relative; margin-left: 10px; width: 35px; height: 2px; background-color: #06443c; border-radius: 2px; transition: 200ms width;

&:before, &:after { content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV8/pCJVETuIOGRoO9lFRRy1CkWoEGqFVh1MLv2CJg1Jiouj4Fpw8GOx6uDirKuDqyAIfoA4OzgpukiJ/0sKLWI8OO7Hu3uPu3eAv1llqhmcBVTNMjKppJDLrwqhVwQxhAHEEJeYqc+JYhqe4+sePr7eJXiW97k/R79SMBngE4hnmW5YxBvE05uWznmfOMLKkkJ8Tjxu0AWJH7kuu/zGueSwn2dGjGxmnjhCLJS6WO5iVjZU4iniqKJqlO/Puaxw3uKsVuusfU/+wnBBW1nmOs0xpLCIJYgQIKOOCqqwkKBVI8VEhvaTHv5Rxy+SSyZXBYwcC6hBheT4wf/gd7dmcXLCTQongZ4X2/6IAaFdoNWw7e9j226dAIFn4Err+GtNYOaT9EZHix4Bg9vAxXVHk/eAyx1g5EmXDMmRAjT9xSLwfkbflAeGb4G+Nbe39j5OH4AsdZW+AQ4OgXiJstc93t3b3du/Z9r9/QCwaXK/e5hOFQAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+gEEQ4nOaS4shIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=); display: block; position: absolute; width: 10px; height: 2px; background-color: #06443c; transform: rotate(45deg); right: -1px; top: -3px; border-radius: 2px; }

&:after { transform: rotate(-45deg); top: 3px; } }

.button-small-line-left { position: relative; margin-right: 10px; width: 35px; height: 2px; background-color: #06443c; border-radius: 2px; transition: 200ms width;

&:after { transform: rotate(45deg); top: 3px; } }

&:hover { .button-small-line-right { width: 50px; }

.button-small-line-left { width: 50px; } } }

&--white { @extend .button-small;

.button-small-href { color: var(--white);

.button-small-line-right, .button-small-line-left { background-color: var(--white);

&:before, &:after { background-color: var(--white); } } }

&:hover { .button-small-line-right { width: 50px; }

.button-small-line-left { width: 50px; } } } }

// DARK NAV .nav-dark { position: absolute; background-color: var(--page-bg); width: 100%; height: 82px; z-index: 1001;

@media screen and (max-width:991px) { top: 0px; height: 54px; }

.nav-outside { position: absolute; background-image: none;

@media screen and (max-width:991px) { background-color: var(--page-bg); }

.nav-inside { .nav-logo-image-white { display: none; } .nav-logo-image-dark { display: block; } .nav-menu { .nav-linklist-label { color: var(--forest); } .nav-linklist { .nav-linklist-item { .nav-linklist-item-link { color: var(--forest); } } } .nav-button { color: var(--forest); border-color: var(--forest); } }

.nav-burger-btn { .nav-burger-btn-bar { background-color: var(--forest); } } } } }

News & Insights

Find articles related to...

.text-header-dropdown { .text-header-dropdown-toggle {

&.w--open { .text-header-dropdown-icon { transform: translateY(-50%) rotate(180deg); } }

.text-header-dropdown-icon { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE2IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjI0NjA5IDAuOTgzMzk3TDcuODMwMDggNy4wMTU2M0wxNC40MTQxIDAuOTgzNCIgc3Ryb2tlPSIjMDA2NjVBIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==); background-repeat: no-repeat; transform: translateY(-50%); transition: 0.25s transform; } }

.text-header-dropdown-list { width: 100% !important;

&.w--open { padding-bottom: 10px; }

.text-header-dropdown-link { transition: 0.2s padding;

&:hover { padding-left: 5px; } } } }

(Choose an option)

.w-dyn-item { &.featured-item { grid-column: 1/3 !important; } } .image-card-cta { .image-card-cta-image { &:before { content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV8/pCJVETuIOGRoO9lFRRy1CkWoEGqFVh1MLv2CJg1Jiouj4Fpw8GOx6uDirKuDqyAIfoA4OzgpukiJ/0sKLWI8OO7Hu3uPu3eAv1llqhmcBVTNMjKppJDLrwqhVwQxhAHEEJeYqc+JYhqe4+sePr7eJXiW97k/R79SMBngE4hnmW5YxBvE05uWznmfOMLKkkJ8Tjxu0AWJH7kuu/zGueSwn2dGjGxmnjhCLJS6WO5iVjZU4iniqKJqlO/Puaxw3uKsVuusfU/+wnBBW1nmOs0xpLCIJYgQIKOOCqqwkKBVI8VEhvaTHv5Rxy+SSyZXBYwcC6hBheT4wf/gd7dmcXLCTQongZ4X2/6IAaFdoNWw7e9j226dAIFn4Err+GtNYOaT9EZHix4Bg9vAxXVHk/eAyx1g5EmXDMmRAjT9xSLwfkbflAeGb4G+Nbe39j5OH4AsdZW+AQ4OgXiJstc93t3b3du/Z9r9/QCwaXK/e5hOFQAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+gEEQ4nOaS4shIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=); display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(53, 53, 53, 0.00) 0%, rgba(53, 53, 53, 0.73) 100%); z-index: 1; }

&:after { content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV8/pCJVETuIOGRoO9lFRRy1CkWoEGqFVh1MLv2CJg1Jiouj4Fpw8GOx6uDirKuDqyAIfoA4OzgpukiJ/0sKLWI8OO7Hu3uPu3eAv1llqhmcBVTNMjKppJDLrwqhVwQxhAHEEJeYqc+JYhqe4+sePr7eJXiW97k/R79SMBngE4hnmW5YxBvE05uWznmfOMLKkkJ8Tjxu0AWJH7kuu/zGueSwn2dGjGxmnjhCLJS6WO5iVjZU4iniqKJqlO/Puaxw3uKsVuusfU/+wnBBW1nmOs0xpLCIJYgQIKOOCqqwkKBVI8VEhvaTHv5Rxy+SSyZXBYwcC6hBheT4wf/gd7dmcXLCTQongZ4X2/6IAaFdoNWw7e9j226dAIFn4Err+GtNYOaT9EZHix4Bg9vAxXVHk/eAyx1g5EmXDMmRAjT9xSLwfkbflAeGb4G+Nbe39j5OH4AsdZW+AQ4OgXiJstc93t3b3du/Z9r9/QCwaXK/e5hOFQAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+gEEQ4nOaS4shIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=); display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--sage); z-index: 2; opacity: 0; transition: 0.3s opacity; } }

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Opens New Franchise in North Idaho Region

CPA Invests in Award-Winning Franchise That Also Covers Hayden, Post Falls

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Opens New Franchise in Finger Lakes

Upstate New York Entrepreneurs Invest In Award-Winning Franchise

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Opens New Franchise in Castle Rock

Colorado Family Invests In Award-Winning Franchise

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Crisp & Green Expands to 15 States With First Indiana Location

Minnesota-Based Healthy Restaurant Chain Enters Indiana with Evansville Location Set To Open This Week

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Expands Services in Colorado

Payroll Vault announced today it has recently expanded in Denver, signing a local entrepreneur as its latest franchisee.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Opens New Franchise in Wake Forest, Raleigh

Payroll Vault announced it has expanded in Wake Forest and Raleigh, signing a couple with financial services expertise as its newest franchisee.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Payroll Vault Opens 7th Franchise Location in Texas

Payroll Vault announced it has expanded in Texas, opening a new site to help small and medium-sized entrepreneurs in Frisco, Texas.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Crisp & Green Expands Midwest Presence With Additional Territories In Iowa

Crisp & Green announced today that it has signed a 5-unit development deal with new franchisee group, Evergreen Eateries LLC. The deal has solidified the brand’s continued expansion throughout the Midwest with the 5-units to open in Iowa.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Yes

Brand News

Crisp & Green Named One of the Top 5 Fastest-Growing Restaurant Chains

Crisp & Green has been included on the annual Technomic 500 List, the industry’s leading performance tracker, as the No. 5 fastest-growing restaurant chain, growing sales nearly 44% year over year.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Fantasy Franchise

How reading the morning news became a national pet care franchise

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Yes

Brand News

Xpresso Delight Franchise Ranked in Franchise Help's Top 20 Franchises

Australian-based office-coffee distributor Xpresso Delight has been named one of FranchiseHelp’s 2019 Franchise Award Winners. Xpresso Delight was ranked 13th for its general franchise profitability. FranchiseHelp is the largest source of franchisee leads in the franchising industry. It ranked brands in four categories: fastest growing franchises, top performing emerging brands, top performing established franchises and general franchise profitability.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Xpresso Delights Nigell Lee On The Air With Zack Fishman

Nigell Lee, President of Xpresso Delight USA, joined the Millennial Monthly podcast to discuss how the Australian coffee service franchise is approaching franchising as an emerging brand in the U.S.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

No items found.

XD Coffee franchise raises money to help health care heroes during COVID

The Xpresso Delight franchise donates cold brew to healthcare heroes during covid.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Franchise Basics

Why You Can't Open A Starbucks Coffee Franchise

Learn why you cannot open a Starbucks franchise in the United States regardless of how much money you have.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Brand News

Why Buying A Lash Franchise Is The Next Big Opportunity

Why buying a lash business is the next big thing.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

Yes

No items found.

Why An Emerging Franchise Could Be Your Best Bet

We all know the successful franchise brands that have grown like wildfire across the U.S. McDonald’s, Subway, Burger King, just to name a few. While the thought of buying into one of these enormously successful franchise brands may be alluring, there is often a lack of upside. In other words, the opportunity to build one of these mature franchises and continue growing the business with additional locations in your area has likely passed. That doesn’t mean it’s a bad investment, it’s just an investment with limited room for growth.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

No items found.

Why a Technology Based Franchise Could Be Your Best Bet Right Now

If you connect the dots with everything that’s been happening in 2020, technology based franchises are becoming more highly lucrative investment opportunities each day.

Read

.image-card-cta-play-icon { .circle, .triangle { transition: 0.3s all; } }

.button-small { .button-small-line-right { background-color: var(--white); &:before, &:after { background-color: var(--white); } } }

&:hover { color: var(--forest);

.image-card-cta-image { &:after { opacity: 1; } }

.image-card-cta-play-icon { .circle { fill: var(--moss); } .triangle { fill: var(--moss); } }

.button-small { .button-small-line-right { background-color: var(--forest); width: 50px; &:before, &:after { background-color: var(--forest); } } } } }

No items found.

Who's freezing hiring from coronavirus within the franchise industry?

With the coronavirus crisis resulting in millions of layoffs on a scale that the country has never seen before, the teams at Oakscale, FranchiseHelp and FranFunnel are rallying together to be helpful during these turbulent times.

Read

Previous Load More

.contact-modal { .contact-modal-form { .w-richtext, .w-embed { width: 100%; }

fieldset { margin-bottom: 20px; max-width: none;

&.form-columns-2 { display: flex; gap: 20px;

.field { width: calc(50% - 10px); flex-shrink: 0; } } } label { font-size: 14px; font-weight: 400; color: var(--evergreen); margin-bottom: 1em; } select { width: 100% !important; position: relative; font-size: 16px; color: var(--evergreen); appearance: none; border: none; outline: none; background-color: var(--white); background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE2IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjI0NjA5IDAuOTgzMzk3TDcuODMwMDggNy4wMTU2M0wxNC40MTQxIDAuOTgzNCIgc3Ryb2tlPSIjMDA2NjVBIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==); background-repeat: no-repeat; background-position: center right 20px; border-radius: 20px; padding: 0.75em 1em;

} input[type="text"], input[type="email"] { font-size: 16px; appearance: none; border: none; outline: none; background: transparent; border-bottom: 1px solid var(--moss); width: 100%; color: var(--evergreen); padding: 0 1em 0.5em; } textarea { font-size: 16px; appearance: none; border: none; outline: none; background: var(--white); width: 100% !important; border-radius: 20px; min-height: 100px; color: var(--evergreen); padding: 1em; } .inputs-list { list-style: none; padding: 0; margin: 0;

&.hs-error-msgs { label { color: red; } }

.hs-error-msg { color: red; font-weight: bold; }

.hs-form-booleancheckbox {

label { cursor: pointer; display: flex; align-content: center;

&:hover { span:after { opacity: 0.5; } }

input { display: none; }

input:checked + span:after { opacity: 1; }

span { position: relative; display: flex; align-items: center; margin-left: 0.5em;

&:before { display: inline-block; content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV8/pCJVETuIOGRoO9lFRRy1CkWoEGqFVh1MLv2CJg1Jiouj4Fpw8GOx6uDirKuDqyAIfoA4OzgpukiJ/0sKLWI8OO7Hu3uPu3eAv1llqhmcBVTNMjKppJDLrwqhVwQxhAHEEJeYqc+JYhqe4+sePr7eJXiW97k/R79SMBngE4hnmW5YxBvE05uWznmfOMLKkkJ8Tjxu0AWJH7kuu/zGueSwn2dGjGxmnjhCLJS6WO5iVjZU4iniqKJqlO/Puaxw3uKsVuusfU/+wnBBW1nmOs0xpLCIJYgQIKOOCqqwkKBVI8VEhvaTHv5Rxy+SSyZXBYwcC6hBheT4wf/gd7dmcXLCTQongZ4X2/6IAaFdoNWw7e9j226dAIFn4Err+GtNYOaT9EZHix4Bg9vAxXVHk/eAyx1g5EmXDMmRAjT9xSLwfkbflAeGb4G+Nbe39j5OH4AsdZW+AQ4OgXiJstc93t3b3du/Z9r9/QCwaXK/e5hOFQAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAAd0SU1FB+gEEQ4nOaS4shIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAC0lEQVQI12NgAAIAAAUAAeImBZsAAAAASUVORK5CYII=); position: relative; width: 18px; height: 18px; background-color: var(--moss); border-radius: 100%; margin-right: 10px; }

&:after { display: inline-block; content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuMTY0MDYgNi4xOTA1NEwzLjU2ODI5IDguNTA0MzdMOS45OTI1NSAxLjA5MTgiIHN0cm9rZT0iI0U5RTdERSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=); position: absolute; width: 9px; height: 8px; top: -2px; left: 4px; opacity: 0; transition: 0.2s opacity; }

p { display: inline-block; font-size: 14px; font-style: italic; } } } } } input[type="submit"] { appearance: none; border: none; outline: none; background: transparent; width: 100%; display: inline-block; text-align: center; font-size: 18px; font-style: normal; font-weight: 400; line-height: 105.687%; text-transform: capitalize; text-decoration: none; color: inherit; padding: 0.82em 2em; min-width: 212px; border: 1px solid var(--evergreen); border-radius: 25px; transition: 0.3s background-color; background-color: var(--evergreen); color: var(--neutral);

&:hover { background-color: var(--forest); } } } }

connect with our team

Ready to partner with us? Let’s talk.

Brand Interest (Active)

Please SelectBreak CoffeeGreenLightPayroll VaultSea Love

First name*

Last name*

Email*

Message

Lead source

  • Send me franchise news and insights

reCAPTCHA

Recaptcha requires verification.

protected by reCAPTCHA

.contact-modal { .contact-modal-form { .w-richtext, .w-embed { width: 100%; }

fieldset { margin-bottom: 20px; max-width: none;

&.form-columns-2 { display: flex; gap: 20px;

&.hs-error-msgs { label { color: red; } }

.hs-error-msg { color: red; font-weight: bold; }

.hs-form-booleancheckbox {

label { cursor: pointer; display: flex; align-content: center;

&:hover { span:after { opacity: 0.5; } }

input { display: none; }

input:checked + span:after { opacity: 1; }

span { position: relative; display: flex; align-items: center; margin-left: 0.5em;

&:hover { background-color: var(--forest); } } } }

Contact US

Your next franchise partner is here

Ready to partner with us? Let’s talk.

Brand Interest (Active)

Please SelectBreak CoffeeGreenLightPayroll VaultSea Love

First name*

Last name*

Email*

Message

Lead source

  • Send me franchise news and insights

reCAPTCHA

Recaptcha requires verification.

protected by reCAPTCHA

reCAPTCHA

Select all images with crosswalks Click verify once there are none left.

Please try again.

Please select all matching images.

Please also check the new images.

Please select around the object, or reload if there are none.

Verify

reCAPTCHA

Select all squares with traffic lights If there are none, click skip

Please try again.

Please select all matching images.

Please also check the new images.

Please select around the object, or reload if there are none.

Skip