/*-------------------------------------------
    Fonts
-------------------------------------------*/

/**
Declaring fonts as variables here, so that we only have to
update this section if/when the brand fonts changes.
 */
/**
 */


@font-face {
    font-family: 'PjFontBold';
    src: url('/static-assets/franchise/fonts/papa-sans/PapaSans-Bold-202303011605.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/PapaSans-Bold-202303011605.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'PjFontMediumCondensed';
    src: url('/static-assets/franchise/fonts/papa-sans/PapaSans-MediumCondensed-202303011605.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/PapaSans-MediumCondensed-202303011605.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'PjFontRegular';
    src: url('/static-assets/franchise/fonts/papa-sans/PapaSans-Regular-202303011605.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/PapaSans-Regular-202303011605.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PjFontHeavy';
    src: url('/static-assets/franchise/fonts/papa-sans/PapaSans-Heavy-202303011605.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/PapaSans-Heavy-202303011605.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'PjFontItalic';
    src: url('/static-assets/franchise/fonts/papa-sans/PapaSans-Italic-202303011605.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/PapaSans-Italic-202303011605.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'PjFontGlyph';
    /* prettier-ignore */
    src: url('/static-assets/franchise/fonts/papa-sans/pjiGlyphs.woff2') format('woff2'),
    url('/static-assets/franchise/fonts/papa-sans/pjiGlyphs.woff') format('woff');
    font-style: normal;
    font-weight: normal;
}


/* ========================================================================== */
/** Moved the confirmation page check mark animate styles to the top of the css for IE11 */

.confirmation-section .checkmark-animate .checkmark__circle {
    stroke-dasharray: 216; /* ORIGINALLY 166px */
    stroke-dashoffset: 216; /* ORIGINALLY 166px */
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #007A53;
    fill: none;
    -ms-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    -moz-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    -o-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.confirmation-section .checkmark-animate .checkmark {
    width: 106px; /* ORIGINALLY 56px */
    height: 106px; /* ORIGINALLY 56px */
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #007A53;
    -ms-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    -webkit-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    -moz-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    -o-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.confirmation-section .checkmark-animate .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 98; /* ORIGINALLY 48px */
    stroke-dashoffset: 98; /* ORIGINALLY 48px*/
    -ms-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    -moz-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    -o-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        -ms-stroke-dashoffset: 0;
        -webkit-stroke-dashoffset: 0;
        -moz-stroke-dashoffset: 0;
        -o-stroke-dashoffset: 0;
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        -ms-transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
    }
    50% {
        -ms-transform: scale3d(1.1, 1.1, 1);
        -webkit-transform: scale3d(1.1, 1.1, 1);
        -moz-transform: scale3d(1.1, 1.1, 1);
        -o-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        -ms-box-shadow: inset 0px 0px 0px 80px #007A53;
        -webkit-box-shadow: inset 0px 0px 0px 80px #007A53;
        -moz-box-shadow: inset 0px 0px 0px 80px #007A53;
        -o-box-shadow: inset 0px 0px 0px 80px #007A53;
        box-shadow: inset 0px 0px 0px 80px #007A53;
    }
}

body {
    font-family: 'PjFontRegular', 'Arial', sans-serif;
}

/* HTML5 display definitions
       ========================================================================== */
/**
     * Correct `block` display not defined for any HTML5 element in IE 8/9.
     * Correct `block` display not defined for `details` or `summary` in IE 10/11
     * and Firefox.
     * Correct `block` display not defined for `main` in IE 11.
     */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block; }

/**
     * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
     */
template {
    display: none; }

/* Links
       ========================================================================== */
/**
       * Remove the gray background color from active links in IE 10.
       */
a {
    color: #000000; }


/* Embedded content
       ========================================================================== */
/**
       * Remove border when inside `a` element in IE 8/9/10.
       */
img {
    border: 0;
    /* Improve image quality when scaled in IE 7. */
    -ms-interpolation-mode: bicubic; }

/**
     * Correct overflow not hidden in IE 9/10/11.
     */
svg:not(:root) {
    overflow: hidden; }

/* Main Web Content Styles
       ========================================================================== */
* {
    margin: 0;
    padding: 0;
}

iframe {
    height: 1765px;
}

button,
.button {
    font-family: 'PjFontMediumCondensed',"HelveticaNeue-CondensedBold","Arial Narrow",Arial,sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: normal;
    padding: 8px 16px;
    line-height: 1em;
    border-radius: 30px;
    width: auto;
    letter-spacing: 0;
    transition: background-color 0.2s ease-out;
    margin: 0 10px 0 0;
}

.button-green {
    background-color: #2D5D2A;
    border-color: #2D5D2A;
    color: #FFFFFF;
}

.button-green:hover {
    color: #FFFFFF;
    background-color: #333333;
}

.nodisplay {
    display: none;
}

.site-header {
    width: 100%;
    float: left;
}

.centered {
    text-align: center;
}

.lg-text {
    font-size: 3em;
    line-height: 1em;
}

.md-text {
    font-size: 2em;
}

.container-item {
    max-width: 960px;
    margin: 0 auto;
}

.no-border {
    border: none !important;
}

.grey-light-2-bg {
    background-color: #d1d1d1;
}

.salmon-light-bg {
    background-color: #f5e8dc;
}

.site-header .site-header-section .site-header-logo-section {
    float: left;
}

.site-header .site-header-section {
    width: 100%;
    float: left;
    position: relative;
    background: #ffffff;
}

.site-header-logo-section .logo-section-inner {
    margin: 0 auto;
}

.site-header-section .site-header-logo-section img {
    width: 100%;
}

.hero-section,
.confirmation-hero-section {
    width: 100%;
    float: left;
}

.hero-section .main-hero img {
    width: 100%;
}

.main-hero,
.confirmation-hero-section .main-hero-confirmation {
    background-image: url('/static-assets/franchise/images/franchise_home_hero.jpg');
    background-repeat: no-repeat;
    height: 500px;
    background-size: cover;
    position: relative;
}

.hero-2 {
    background-image: url('/static-assets/franchise/images/pj-dough-show.jpg');
    background-size: cover;
}

.hero-3 {
    background-image: url('/static-assets/franchise/images/hero-hands-grabbing-pizza.jpg');
    background-size: cover;
}

.hero-4 {
    background-image: url('/static-assets/franchise/images/hero-glass-pj-logo.jpg');
    background-size: cover;
}

.bg-driver-img {
    background-image: url('/static-assets/franchise/images/papa_pairings_photo_compressed.jpg');
    background-size: cover;
}

.bg-pizza-lovers {
    background-image: url('/static-assets/franchise/images/pizza-lovers.jpg');
    background-position: center left;
    background-size: cover;
}

.page-section .history-section {
    position: relative;
    background-color: #2d5d2a;
}

.page-section .history-section .overlay {
    filter: opacity(0.7);
}

.page-section .history-section .container-item {
    color: white;
    z-index: 10;
    position: relative;
}

.page-section .container-item .icon {
    position: relative;
    background-repeat: no-repeat;
    width: 90px;
    float: left;
    height: 140px;
    margin-right: 25px;
    background-size: 80px;
}

.page-section .container-item .store-icon {
    background-image: url('/static-assets/franchise/images/pj-store-square-trans.png');
}

.page-section .container-item .delivery-icon {
    background-image: url('/static-assets/franchise/images/delivery-icon.svg');
}

.page-section .container-item .receipt-icon {
    background-image: url(' /static-assets/franchise/images/receipt-icon.svg');
}

.page-section .container-item .papatrack-icon {
    background-image: url(' /static-assets/franchise/images/papatrack-icon.svg');
}

.page-section .container-item .pizza-icon {
    background-image: url(' /static-assets/franchise/images/pizza-icon.svg');
}

.page-section .split-section {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: none;
    border-bottom: 1px solid #e6e6e6;
}

.close-sticky-footer {
    background-image: url('/static-assets/franchise/images/close.svg');
}

.page-section .split-section .split-item {
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #000000;
    z-index: 0;
    filter: opacity(0.4);
}

.f500-details {
    position: relative;
    z-index: 1;
    margin: -80px auto 10px auto;
}

.image--f500-botb,
.image--f500-tg {
    width: 120px;
    height: 160px;
    display: inline-block;
    margin: 0 7px;
}

.confirmation-hero-section .main-hero-confirmation {
    height: 150px;
}

.us-canada-hero-section,
.international-hero-section {
    background-image: url('/static-assets/franchise/images/international-hero-no-text.png');
    background-position: center;
    background-repeat: no-repeat;
    height: 186px;
    background-size: cover;
}

.hero-section .main-hero .big-text-section {
    overflow: auto;
    position: relative;
    z-index: 5;
}

.us-canada-hero-section .big-text-section,
.international-hero-section .big-text-section {
    overflow: auto;
    position: relative;
}

.us-canada-hero-section .big-text-section .big-text-inner,
.international-hero-section .big-text-section .big-text-inner {
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    color: #ffffff;
    text-align: center;
}

.us-canada-hero-section .big-text-section .big-text-inner .big-text,
.international-hero-section .big-text-section .big-text-inner .big-text {
    display: flex;
    justify-content: center;
}

.hero-section .main-hero .big-text-section .sub-text {
    display: flex;
    justify-content: center;
    color: #ffffff;
}

.hero-section .main-hero .big-text-section .sub-text::before,
.hero-section .main-hero .big-text-section .sub-text::after {
    content: '';
    background: #fff;
    width: 72px;
    height: 2px;
    display: block;
    position: relative;
    margin: 0.7em 0.7em;
}

.hero-section .main-hero .big-text-section .sub-text span.copy-right {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    margin: 2px;
    position: absolute;
    top: -10px;
    right: -11px;
}

.hero-section .main-hero .big-text-inner {
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    width: 400px;
}

.hero-section .main-hero .big-text-section ul {
    list-style-type: none;
    padding: 0;
}

.hero-section .main-hero .big-text-section ul li {
    line-height: normal;
}

.hero-section .main-hero .big-text-section p {
    margin: 0;
    position: relative;
}

.nav-main {
    float: left;
}

.nav-main nav ul.flex {
    margin: 0;
    flex-direction: row;
}

.nav-main nav ul li a {
    text-decoration: none;
    font-size: 20px;
}

.nav-main nav ul li {
    list-style: none;
    display: inline-block;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    padding: 2em;
    color: #000000;
    text-transform: uppercase;
}

.nav-main nav ul li.nav-main-link:hover {
    border-bottom: 4px solid #2D5D2A;
    padding-bottom: 4px;
}

.nav-main nav ul li.nav-main-link:hover a {
    color: #000000;
}

.nav-main nav ul li p {
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.nav-main nav ul li p.nav-usa-option,
.nav-main nav ul li p.nav-territory-option {
    float: left;
    color: #000000 !important;
}

.nav-main nav ul li p.nav-application-option {
    color: #ffffff !important;
}

.nav-main nav ul li.application-section {
    background-color: #007A53;
}

.nav-main nav ul li.usa-section {
    border-left: solid;
    border-color: #d6d6d6;
    border-width: 1px;
    position: relative;
}

.nav-main nav ul li.usa-section a.usa-canada-link,
.nav-main nav ul li.application-section a.application-link {
    float: left;
}

.nav-main nav ul li span.home-nav-chevron {
    float: right;
}

.nav-main nav ul li span.home-nav-chevron img {
}

.select-territory-section {
    background-color: #ffffff;
    min-width: 13.2em;
    display: block;
    position: absolute;
    left: 0;
    z-index: 100;
    top: 6.4em;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}

.select-territory-section p {
    min-width: 12em;
}

#main-content {
    float: left;
    width: 100%;
    min-height: 220px;
}

.page-section {
    padding: 3em;
}

.page-section h2, .h2-class {
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    font-size: 1.5em;
    text-transform: uppercase;
}

.opportunities-section {
    background-color: #2d5d2b;
    transition: bottom .9s;
    float: left;
    width: 100%;
    bottom: -50px;
    border-top: 2px solid #929292;
}

.opportunities-section-expanded {
    position: fixed;
    z-index: 50;
    bottom: 0;
    right: 0;
}

.opportunities-section .section-options {
    display: flex;
    margin: 0 5em;
    justify-content: center;
}

.opportunities-section .section-options a {
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    width: 22em;
    max-width: 22em;
    font-size: 1em;
    padding: 0.8em 0;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
}

.opportunities-section .section-options a.us-opportunities {
    background-color: #000000;
    color: #ffffff;
}

.opportunities-section .section-options a.international-opportunities {
    border: 1px solid #000000;
    color: #000000;
}

.close-sticky-footer {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 23px;
    top: 13px;
}

.site-footer {
    float: left;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-bottom: 80px;
}

.site-footer .footer-section {
    margin: 0 3em;
    /*position: absolute;*/
}

.site-footer .footer-section .legal-footer-section {
    max-width: 960px;
    margin: 0 auto;
}

.site-footer .footer-section .legal-footer-section p {
    font-size: 0.87em;
    padding: 2em 0;
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

.bold {
    font-weight: bold;
}

.page-us-canada-franchise .description-section h1,
.page-international-franchise .description-section h1 {
    font-size: 1.6em;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
}

.page-us-canada-franchise .description-section h2,
.page-international-franchise .description-section h2 {
    font-size: 1.5em;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
}

.page-us-canada-franchise .description-section h3,
.page-international-franchise .description-section h3 {
    font-size: 1.3em;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
}

.description-section .description-header,
.description-section .us-canada-requirements-section,
.description-section .international-requirements-section {
    padding-bottom: 1em;
}

.description-section .us-canada-requirements-section ul li,
.description-section .international-requirements-section ul li {
    line-height: 1.5em;
}

.contact-information-section .contact-information-section-inner img {
    width: 100%;
}


/*--- Styles For Form Validation ---*/

form label[class="error"],
.add-another-field-error,
.max-add-city-limit-error {
    color: #DF2241 !important;
    display: block;
    float: right !important;
    text-align: right;
    font-size: 0.87em;
}

form .select-options .input-section label[class="error"] {
    position: absolute;
    top: 1em;
    right: 0;
}

form .privacy-statement-section .checkbox-section label[class="error"] {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.87em;
}

form .input[class="error"] {
    border-color: #ff0000 !important
}

/*--- Styles For Form Validation ---*/
/*- -------------------------------*/

.confirmation-section .confirmation-msg {
    /*margin-top: 2em;*/
}

.confirmation-section .back-home-section {
    text-align: center;
    margin-top: 2em;
}

.confirmation-section .back-home-section a {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

.confirmation-section .back-home-section label span {
    text-decoration: underline;
}

.confirmation-section .back-home-section label.arrow::before {
    content: ' \2190';
    color: #007A53;
    padding-right: 0.1em;
}

.contact-information-section .contact-information-section-inner form .select-state-territory-section .added-area-section {
    margin-top: 1em;
    padding-left: 1em;
}

.contact-information-section .contact-information-section-inner form .select-state-territory-section li {
    float: left;
    width: 90%;
    padding-top: 0.8em;
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    border-radius: 5px;
}

.contact-information-section .contact-information-section-inner form .select-state-territory-section li .remove-city {
    background-image: url('/static-assets/franchise/images/remove-icon.png');
    background-position: center;
    background-repeat: no-repeat;
    float: right;
    width: 30px;
    height: 30px;
    background-size: 30px;
    cursor: pointer;
    margin-right: 15px;
    border: none;
}

.contact-information-section .contact-information-section-inner form .select-state-territory-section li:nth-child(odd) {
    background: #ececec;
}

.contact-information-section .contact-information-section-inner form .select-state-territory-section li label {
    padding-top: 5px;
    display: block;
    float: left;
    color: #007A53;
}

/*--- Styles For Mobile Navigation ----*/

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidenav a {
    padding: 0.5em 0.2em;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
    font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidenav ul {
    padding: 0.5em 1em;
    overflow-x: hidden;
    overflow-y: auto;
    list-style-type: none;
}

.sidenav ul li {
    border-bottom: 1px solid #1c1c1c;
    padding: 1em 0;
}

.sidenav ul li .button {
    text-align: center;
    background-color: #E60000;
    max-width: 130px;
    min-width: 130px;
}

#main {
    transition: transform .5s;
    /*padding: 16px;*/
}

.sidenav-expanded {
    width: 250px;
}

.main-collapsed {
    transform: translateX(-250px);
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
}

.nav-hamburger-menu {
    float: right;
}

.nav-hamburger-menu .open-btn {
    font-size:30px;
    cursor:pointer;
}

.nav-hamburger-menu li {
    list-style-type: none;
}


/*--- Styles For Animated Number Counter ----*/

.counter-section .counter .count {
    color: #000000;
}

.counter-section .counter .count-header {
    width: 100%;
}

.counter-section .counter .range-number-md {
    font-size: 2.8em;
    width: 100%;
    float: left;
}

.counter-section .counter .count-item {
    padding: 15px 0;
    border-bottom: 1.5px solid #d1d1d1;
}

.linker
{
    font-size : 20px;
    color: black;
}


/*-------------------------------------------------------
    Media Queries Implementation For Franchise Site
--------------------------------------------------------- */

/*-------------------------------------------
    Media Queries and Screen Sizes

narrow:     em(320); // 20em, 320px
small:      em(480); // 30em, 480px
medium:     em(700); // 43.750em, 700px
ipad:       em(768); // 48em, 768px
large:      em(960); // 60em, 960px
wide:       em(1080); // 67.500em, 1080px
wider:      em(1200); // 75em, 1200px
huge:       em(1600); // 100em, 1600px

-------------------------------------------*/
@media screen and (min-width: 20em) {  /*----- Narrow | 320px -----*/
    .site-header .site-header-section {
        position: fixed;
        z-index: 40;
        border-bottom: 2px solid #e6e6e6;
    }

    .site-header-logo-section {
        width: 6em;
        margin: 1em;
    }

    .nav-hamburger-menu {
        padding: 0.5em 1em;
    }

    .nav-main {
        display: none;
    }

    .nav-main nav ul li.usa-section a.usa-canada-link,
    .nav-main nav ul li.application-section a.application-link {
        padding: 1.4em 0.8em;
    }

    .nav-main nav ul li p {
        font-size: 13px;
    }

    .nav-usa-option {
        width: 5.5em;
    }

    .nav-main nav ul li p.nav-application-option {
        padding-top: 0.5em;
    }

    .nav-main nav ul li span.home-nav-chevron {
        margin-left: 4px;
        margin-top: 3px;
    }

    .nav-main nav ul li p.nav-territory-option {
        text-align: center;
    }

    .select-territory-section {
        min-width: 6em;
        padding: 29px 10px;
        top: 4.3em;
    }

    .hero-section {
        margin-top: 4em;
    }

    .hero-section .main-hero {
        height: 370px;
        background-position: 65%;
    }

    .us-canada-hero-section,
    .international-hero-section {
        height: 15.5em;
    }

    .hero-section .main-hero .big-text-section .sub-text {
        text-align: center;
        font-size: 12px;
    }

    .hero-section .main-hero .big-text-section .sub-text::before,
    .hero-section .main-hero .big-text-section .sub-text::after {
        width: 30px;
    }

    .hero-section .main-hero .big-text-section {
        transform: translate(0px, -50%);
        -webkit-transform: translate(0px, -50%);
        -ms-transform: translate(0px, -50%);
        top: 50%;
    }

    .hero-section .main-hero .big-text-inner {
        width: 300px;
    }

    .hero-section .main-hero .big-text-inner .lg-text {
        font-size: 4em;
        line-height: 1em;
    }

    .page-section,
    .confirmation-section {
        padding: 0;
    }

    .page-section .section-item {
        padding: 2.5em 2em;
        border-bottom: 1px solid #e6e6e6;
        max-width: 100%;
    }

    .counter-section {
        padding: 1em 2em;
        background-color: #ffffff;
    }

    .page-section .container-item .icon {
        display: none;
    }

    .opportunities-section .section-options a {
        margin: 1.3em;
        background-color: #ffffff;
        color: #2d5d2a;
    }

    .opportunities-section .section-options a.international-opportunities {
        margin-top: 1.5em;
    }

    .us-canada-hero-section .big-text-section,
    .international-hero-section .big-text-section {
        padding: calc(1.5rem + 20vmin) 0 calc(3.5rem + 10vmin);
    }

    .us-canada-hero-section .big-text-section .big-text-inner .big-text,
    .international-hero-section .big-text-section .big-text-inner .big-text {
        flex-direction: column;
    }

    .us-canada-hero-section .big-text-section .big-text-inner .big-text p,
    .international-hero-section .big-text-section .big-text-inner .big-text p {
        font-size: 34px;
        line-height: 32px;
    }

    #us-canada-main-content,
    #international-main-content {
        float: left;
        width: 100%;
        min-height: 270px;
    }

    #us-canada-main-content .description-section,
    #international-main-content .description-section {
        padding: 1.5em;
        max-width: 35em;
        margin: 0 auto;
    }

    #us-canada-main-content .description-section .description-header p,
    #international-main-content .description-section  .description-headerp p {
        font-size: 1em;
        line-height: 1.37em;
    }

    .description-section .description-header {
        padding-bottom: 1em;
        border-bottom: 1px solid #dedede;
    }

    #international-main-content .description-section .description-header p {
        padding-bottom: 1em;
    }

    .description-section .us-canada-requirements-section,
    .description-section .international-requirements-section,
    .description-section .contact-information-section,
    .contact-information-section .contact-information-section-inner form section {
        padding: 2em 0;
        border-bottom: 1px solid #dedede;
        float: left;
        width: 100%;
    }

    /*    .description-section .us-canada-requirements-section h1,
        .description-section .international-requirements-section  h1,
        .contact-information-section .contact-information-header {
            padding-bottom: 1em;
        }*/

    .description-section .us-canada-requirements-section .sub-header,
    .description-section .international-requirements-section .sub-header,
    .description-section .us-canada-requirements-section p,
    .description-section .international-requirements-section p {
        padding-bottom: 1em;
    }

    .description-section .us-canada-requirements-section ul,
    .description-section .international-requirements-section ul {
        padding-left: 1em;
        padding-bottom: 1em;
    }

    .site-footer .footer-section {
        margin: 0 1em;
    }

    /*--- Styles For Forms ---*/

    input[type=text],
    input[type=textarea] {
        width: 100%;
        border: 1px solid #d4d4d4;
        height: 40px;
        margin-bottom: 1.12em;
        border-radius: 5px;
        padding-left: 1em;
        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
        -moz-box-sizing: border-box;    /* Firefox, other Gecko */
        box-sizing: border-box;         /* Opera/IE 8+ */
    }

    input[type=checkbox] {
        margin-right: 0.6em;
    }

    form label[class="error"],
    .add-another-field-error,
    .max-add-city-limit-error {
        width: 17em !important;
    }

    .contact-information-section .contact-information-section-inner form select {
        width: 100%;
        height: 4em;
        padding: 1em 1em;
        background-color: #ffffff;
        border: 1px solid #D0D0D0;
        background: url('/static-assets/franchise/images/chevron.svg') no-repeat right;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-position: top 1.6em right 2em;
    }

    /* For IE10 */
    .contact-information-section .contact-information-section-inner form select::-ms-expand {
        display: none;
    }

    .contact-information-section .contact-information-section-inner form p {
        font-size: 0.87em;
    }

    .contact-information-section .contact-information-section-inner form .form-address-section label,
    .contact-information-section .contact-information-section-inner form .preference-section label {
        font-family: 'PjFontRegular', 'Arial', sans-serif;
        color: #626262;
        font-size: 0.87em;
        float: left;
        width: 100%;
        padding-bottom: 5px;
    }

    .contact-information-section .contact-information-section-inner form .form-address-section label::after {
        content: "*";
    }

    .contact-information-section .contact-information-section-inner form .form-address-section input {

    }

    .contact-information-section .contact-information-section-inner form .compensation-section p {
        padding-bottom: 2em;
    }

    .contact-information-section .contact-information-section-inner form .preference-section .preference-fields {
        padding-top: 2em;
    }

    .contact-information-section .contact-information-section-inner form .select-options {
        position: relative;
        display: flex;
        flex-direction: row;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section {
        margin: 4px;
        background-color: #ffffff;
        border-radius: 4px;
        border:1px solid #D0D0D0;
        overflow: hidden;
        float: left;
        border-radius: 30px;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section label {
        float:left;
        width: 8em;
        height: 3em;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section label span {
        text-align: center;
        display: block;
        padding: 1em 0;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section label input[type="radio"] {
        position:absolute;
        top:-20px;
        visibility: hidden;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section input:checked + span {
        background-color: #007A53;
        color:#fff;
    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section {

    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section .territory-options {
        margin-top: 1em;
    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section .territory-options .select-territory-header,
    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .liquid-assets-amounts-options .select-liquid-assets-amounts-header {
        font-weight: bold;
    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section .add-city-province-options input {
        width: 100%;
        height: 4em;
    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section .add-city-province-options {
        margin-top: 1em;
    }

    .contact-information-section .contact-information-section-inner form .select-state-territory-section .add-another-area-section-btn {
        float: left;
        background-color: #2D5D2A;
        color: #ffffff;
        border: none;
    }


    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section,
    .contact-information-section .contact-information-section-inner .submit-section,
    .contact-information-section {
        padding: 0;
        border: none !important;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section p {
        padding-bottom: 2em;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section p:first-child {
        padding-top: 2em;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section ul {
        list-style-type: none;
        margin-bottom: 1em;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section ul {
        margin: 0;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section ul li {
        padding-bottom: 0.8em;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section ul li label {
        font-weight: bold;
        font-family: 'PjFontRegular', 'Arial', sans-serif;
        font-size: 0.87em;
    }

    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .liquid-assets-amounts-options,
    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .multi-unit-franchise-section,
    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .qsr-experience-section,
    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .retail-section,
    .contact-information-section .contact-information-section-inner form .inquiry-and-experience-section .development-venue-options {
        padding-bottom: 2em;
    }

    .contact-information-section .contact-information-section-inner form .privacy-statement-section {
        border-top: 1px solid #dedede;
        padding-top: 2em;
        flex-direction: row;
        display: flex;
        position: relative;
    }

    .contact-information-section .contact-information-section-inner form .privacy-statement-section label.privacy-label {
        font-weight: normal;
        line-height: 1.5em;
        font-size: 0.87em;
        padding-left: 1em;
    }

    .contact-information-section .contact-information-section-inner form .submit-section {
        float: left;
        clear: both;
        margin-top: 3em;
        width: 100%;
    }

    .contact-information-section .contact-information-section-inner form .submit-section input[type="submit"] {
        width: 20em;
        height: 3.13em;
        background-color: #007A53;
        color: #ffffff;
        border-radius: 30px;
        border: 2px solid #007a53;
        margin: 0 auto;
        display: block;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section label[class="error"] {
        top: -18px;
        height: auto;
        font-size: 0.87em;
    }

    .contact-information-section .contact-information-section-inner form .privacy-statement-section .checkbox-section label[class="error"] {
        bottom: -25px;
    }

    /*---  Sytles for confirmation page ----*/
    .page-confirmation .confirmation-section {
        flex-direction: column;
        display: flex;
        padding: 2.5em;
    }

    .confirmation-section .checkmark-animate .checkmark {
        margin: 0% auto;
    }

    .confirmation-section .confirmation-msg {
        margin-top: 2em;
        text-align: center;
    }

    .confirmation-section .confirmation-msg * {
        margin-bottom: 1em;
    }

    .confirmation-section .confirmation-msg h2 {
        font-family: 'PjFontMediumCondensed', 'Arial', sans-serif;
    }

    .confirmation-section .confirmation-msg p {
        font-family: 'PjFontRegular', 'Arial', sans-serif;
        font-size: 18px
    }

    .confirmation-hero-section .main-hero-confirmation {
        height: 245px;
        background-position: 76% 31px;
    }

    .checkmark_img_ie {
        position: relative;
        height: auto;
        width: 100%;
        display: none;
    }

    .checkmark_img_ie img {
        display: block;
        width: 105px;
        margin: 0 auto;
    }

    .bg-driver-img {
        display: none;
    }

    .bg-pizza-lovers {
        display: none;
    }

    .page-section .split-section {
        padding: 2.5em 2em;
    }

    .hero-3 {
        height: 320px !important;
    }

    .hero-3-text {
        font-size: 2.6em;
    }

}


@media screen and (min-width: 30em) {
    /*----- Small | 480px -----*/
    
    iframe {
        height: 1573px;
    }
    
    .nav-main nav ul li.usa-section a.usa-canada-link,
    .nav-main nav ul li.application-section a.application-link {
        padding: 22px;
    }

    /*    a.usa-canada-link,
        a.select-territory-section {
            width: 9em;
        }*/

    .nav-usa-option {
        width: 6em;
    }

    .nav-main nav ul li p {
        font-size: 18px;
    }

    .nav-main nav ul li span.home-nav-chevron {
        margin-left: 0px;
        margin-top: 8px;
    }

    .select-territory-section {
        min-width: 9em;
        padding: 30px 20px;
        top: 5em;
    }

    .site-header-logo-section .logo-section-inner {
        width: 6em;
    }

    .hero-section .main-hero {
        height: 350px;
    }

    .hero-section .main-hero .big-text-section .sub-text::before,
    .hero-section .main-hero .big-text-section .sub-text::after {
        height: 2px;
    }

    .hero-section .main-hero .big-text-section .sub-text {
        font-size: 14px;
    }

    .hero-section .main-hero .big-text-section ul li.lg-text {
        font-size: 6em;
    }

    .us-canada-hero-section,
    .international-hero-section {
        height: 18.5em;
    }

    .us-canada-hero-section .big-text-section,
    .international-hero-section .big-text-section {
        padding: calc(2rem + 20vmin) 0 calc(1.2rem + 10vmin);
    }

    #us-canada-main-content .description-section,
    #international-main-content .description-section {
        padding: 2.5em;
    }

    /*--- Styles For Forms ---*/

    .contact-information-section .contact-information-section-inner form .privacy-statement-section p span {
        width: 30em;
    }

    .contact-information-section .contact-information-section-inner form .submit-section input[type="submit"] {
        width: 22em;
    }

    .page-section .history-section {
        height: 320px;
    }
}

@media screen and (min-width: 43.750em) {  /*----- Medium | 700px -----*/

    iframe {
        height: 1575px;
    }

    .us-canada-hero-section .big-text-section,
    .international-hero-section .big-text-section {
        padding: calc(0rem + 20vmin) 0 calc(3rem + 10vmin);
    }

    .us-canada-hero-section .big-text-section .big-text-inner .big-text p,
    .international-hero-section .big-text-section .big-text-inner .big-text p {
        font-size: 3.1em;
        line-height: 1em;
    }

    .hero-section .main-hero {
        background-position: 50% 35%;
    }

    /*--- Styles For Forms ---*/

    form label[class="error"],
    .add-another-field-error,
    .max-add-city-limit-error {
        width: 30em !important;
    }

    .contact-information-section .contact-information-section-inner form .privacy-statement-section p span {
        width: 43em;
    }

    .contact-information-section .contact-information-section-inner form .select-options .input-section label[class="error"] {
        top: 1em;
    }

    /*---  Sytles for confirmation page ----*/

    .confirmation-hero-section .main-hero-confirmation {
        height: 270px;
    }

    .confirmation-section .confirmation-msg p {
        font-size: 1em;
    }

    .confirmation-hero-section .main-hero-confirmation {
        background-position: 26% 58px;
    }

    .page-section .container-item .icon {
        display: block;
    }

    .page-section .split-section .split-item {
        min-height: 300px;
        max-width: 960px;
        margin: 0 auto;
    }

    .page-section .split-section {
        padding: 0;
    }

    .page-section .split-section .split-item .content {
        padding: 2.5em 2em;
    }

    .bg-driver-img {
        display: block;
    }

    .bg-pizza-lovers {
        display: block;
    }
}

@media screen and (min-width: 48em) {  /*----- ipad | 768px -----*/
    .f500-details {
        margin-top: -110px;
    }
    .nav-main {
        display: none;
    }

    .hero-section .main-hero .big-text-inner {
        width: 600px;
    }

    .counter-section .counter .count-header {
        font-size: 1.7em;
    }

    .counter-section .counter .range-number-md {
        font-size: 1.7em;
    }

    .counter-section .counter .count-item {
        border-bottom: none;
    }

    .page-section .section-item {
        padding: 2em 5em;
    }

    .page-section .split-section .split-item .content {
        padding: 2.5em 1.5em;
    }
    
    .hero-3-text {
        font-size: 3em;
    }
}


@media screen and (min-width: 60em) {  /*----- Large | 960px -----*/

    /*iframe {*/
    /*    height: 1455px;*/
    /*}*/

    .site-header .site-header-section {
        position: relative;
        border-bottom: none;
    }

    .site-header-logo-section .logo-section-inner {
        width: 8.5em;
    }

    .site-header-logo-section {
        margin: 2em;
    }

    .nav-main nav ul li.usa-section a.usa-canada-link,
    .nav-main nav ul li.application-section a.application-link {
        padding: 43px 40px;
    }

    .nav-usa-option {
        width: auto;
    }

    .select-territory-section {
        min-width: 9em;
        padding: 45px 35px;
        top: 6em;
    }

    .nav-hamburger-menu {
        display: none;
    }

    .nav-main {
        display: block;
    }

    .nav-main nav ul li p.nav-application-option {
        padding: 0;
    }

    .nav-main nav ul li span.home-nav-chevron {
        margin: 0 0 0 8px;
    }

    .hero-section {
        margin: 0;
    }

    .counter-section {
        padding: 1em 4em;
    }

    .page-section .history-section {
        height: 250px;
    }

    .us-canada-hero-section,
    .international-hero-section {
        height: 23.7em;
    }

    .us-canada-hero-section .big-text-section,
    .international-hero-section .big-text-section {
        padding: calc(2rem + 20vmin) 0 calc(6rem + 10vmin);
    }

    .us-canada-hero-section .big-text-section .big-text-inner .big-text,
    .international-hero-section .big-text-section .big-text-inner .big-text {
        flex-direction: row;
        padding: 0 0.1em;
    }

    .us-canada-hero-section .big-text-section .big-text-inner .big-text p,
    .international-hero-section .big-text-section .big-text-inner .big-text p {
        padding: 0 0.1em;
        font-size: 4em;
    }

    #us-canada-main-content .description-section,
    #international-main-content .description-section {
        padding: 4em;
        max-width: 50em;
    }

    .description-section .description-header {
        padding-bottom: 2em;
    }

    .description-section .us-canada-requirements-section,
    .description-section .international-requirements-section,
    .description-section .contact-information-section {
        padding: 2em 0;
    }

    .site-footer .footer-section {
        margin: 0 3em;
    }

    /*--- Styles For Forms ---*/

    .contact-information-section .contact-information-section-inner form .privacy-statement-section p span {
        width: 53em;
    }

    .contact-information-section .contact-information-section-inner form .privacy-statement-section p {
        font-size: 1em;
        float: left;
    }

    /*--- Styles For Confirmation Page ----*/

    .confirmation-hero-section .main-hero-confirmation {
        background-position: 26% 0;
    }
}

@media screen and (min-width: 85.375em) {
    /*----- Super Large | 1366px -----*/
    .counter-section {
        padding: 1em 15em;
    }

}
/*--- patch for IE11 for confirmation page checkmark animation only  ---*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .checkmark-animation-svg {
        display: none;
    }

    .checkmark_img_ie {
        display: block;
    }
}
