@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

html {
	overflow-x: hidden;
}
/* Typography */
.h1, .h2, .h3, h1, h2, h3 {
    margin-bottom: .5rem;
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Nunito Sans', sans-serif;
	color: #0054A4;
}
.h4, .h5, .h6, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Nunito Sans', sans-serif;
	color: #0054A4;
}
h1 {
	font-size: 44px;
}
body, p, li, a {
    font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #818181
}
a {
    color: #0054A4;
}
ul {
    padding-left: 15px;
}
li {
    margin-bottom: 15px;
}
.blue-text {
	color: #0054A4;
}
.orange-text {
	color: #F79727;
}
.btn {
    font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	padding: .5rem 1rem;
	border-radius: .1rem;
}
.btn-primary {
    color: #fff;
    background-color: #0055A3;
    border-color: #0055A3;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0055A3;
    border-color: #0055A3;
}
.btn-secondary {
    color: #fff;
    background-color: #BED630;
    border-color: #BED630;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #9EB225;
    border-color: #9EB225;
}
.pre-heading {
	font-weight: 700;
	color: #767676;
	text-transform: uppercase;
}

body {
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
}
section {
	position: relative;
	scroll-snap-align: start;
}
img {
    max-width: 100%;
}
svg {
    overflow: hidden;
    vertical-align: middle;
    max-width: 100%;
}
.line-behind-divider {

}
.line-behind-divider {
  position: relative;
  z-index: 1;
}
.line-behind-divider:before {
  border-top: 2px solid #dfdfdf;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
.line-behind-divider span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}
section .container {
	position: relative;
}
.no-js #loader {
	display: none;
}
.js #loader {
	display: block;
	position: absolute;
	left: 100px;
	top: 0;
}
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #f7f7f7;
}

/* Sticky Header */
nav.sticky-header {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    position: fixed;
    top: -200px;
    z-index: 99999;
    box-shadow: 0px 0px 10px rgba(0,0,0,.09);
	opacity: 0;
    transition: all 0.75s ease-in-out;
}
nav.sticky-header.show {
    top: 0px;
	opacity: 1;
}
nav.sticky-header .item {
	display: flex;
	align-items: center;
	font-size: 14px;
}
nav.sticky-header .item .logo {
    max-width: 160px;
}
nav.sticky-header .item:nth-child(2) {
    display: inline-block;
    align-items: center;
    justify-content: right;
	margin-top: 9px;
}
nav.sticky-header .item .btn {
    margin-left: 15px;
}

/* Header Banner */
.header-banner {
    padding-top: 40px;
    padding-bottom: 200px;
    background-color: #F7F7F7;
    position: relative;
    background-image: url(../../../assets/img/footprint-oval.svg);
    background-size: 200%;
    background-position: bottom 140px center;
    background-repeat: no-repeat;
}
.header-banner .container {
    position: relative;
	z-index: 5;
}
.header-banner .top-bar {
	margin-bottom: 25px;
	font-size: 14px;
}
/*
.header-banner::after {
    content: "";
    display: block;
    background-color: #fff;
    border-radius: 50%;
    height: 140%;
    width: 110%;
    position: absolute;
    top: -60%;
    left: -5%;
    z-index: 1;
}
*/
.header-banner .top-bar .btn {
	margin-left: 15px;
}
.header-banner .banner-intro-text {
	max-width: 500px;
	width: 100%;
	margin: 40px auto 60px;
}
.header-banner .banner-intro-text p {
	font-size: 14px;
}
.header-banner .scroll-to-learn {
	margin: 40px auto 10px;
}
.header-banner .scroll-to-learn p {
	font-size: 14px;
}
/***** Floating Elements *****/
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 2;
}
.floating-elements .floating-element.zoomInUp {
    transition: all 1s ease-in-out;
}
.floating-elements .guitar.zoomInUp {
    transition: all 1s ease-in-out;
}
.floating-elements .headphones.zoomInUp {
    transition: all 3s ease-in-out;
}
.floating-elements .iPhone.zoomInUp {
    transition: all 2s ease-in-out;
}
.floating-elements .television.zoomInUp {
    transition: all 4s ease-in-out;
}
/* Guitar */
.floating-elements .guitar {
    position: absolute;
    top: -80px;
    left: 30%;
    z-index: 1;
}
.circle-dotted.circle-01 {
    width: 200px;
    height: 260px;
    left: -55%;
    top: 10%;
}
/* Headphones */
.floating-elements .headphones {
    position: absolute;
    top: 48%;
    left: 15%;
}
.circle-dotted.circle-02 {
    width: 180px;
    height: 180px;
    left: -35%;
    top: -15%;
}
.circle-dotted.circle-02 circle {
    stroke-width: .5;
    stroke-dasharray: .2,2;
}
/* iPhone */
.floating-elements .iPhone {
    position: absolute;
    top: 130px;
    right: 23%;
    line-height: 0;
}
.circle-dotted.circle-03 {
    width: 200px;
    height: 141px;
    left: -100%;
    top: 15%;
}
.circle-dotted.circle-03 circle {
    stroke-width: .5;
    stroke-dasharray: .2,2;
}
/* Television */
.floating-elements .television {
    position: absolute;
    top: 60%;
    left: 70%;
}
.circle-dotted.circle-04 {
    width: 325px;
    height: 325px;
    left: -5%;
    top: -31%;
}
/* Circle Dotted */

.floating-elements .television .circle-dotted svg circle {
  stroke-width: .3!important;
  stroke-dasharray: 1.2,1.2!important;
}
.floating-elements .iPhone .circle-dotted svg circle {
  stroke-width: .5!important;
  stroke-dasharray: 3,2!important;
}
.floating-elements .circle-dotted circle {
    stroke-width: .5;
    stroke-dasharray: .2,2;
}
.floating-elements .circle-dotted svg circle {
    fill: transparent;
    stroke: #F79727;
    stroke-width: .4;
    stroke-dasharray: 2,2;
    stroke-linecap: round;
}
.floating-elements .circle-dotted {
    position: absolute;
}
.circle-dotted {
    position: absolute;
}
.circle-dotted svg {
    width: 100%;
    height: 100%;
}

/* Why Franchise */
section.why-franchise {
    background-color: #F7F7F7;
    padding-top: 350px;
    padding-bottom: 350px;
    background-image: url(../../../assets/img/profit-margin-oval.svg);
    background-repeat: no-repeat;
    background-position: center right -80px;
}
section.why-franchise .content-col {
	padding: 0px 0 0 80px;
}
section .content-col h1 {
	margin-bottom: 50px;
}
section.why-franchise .sticky-number-wrapper {
    position: relative;
    top: 80px;
    height: unset;
    z-index: 2;
}
section.why-franchise .section-number-wrapper {
    width: unset !important;
    will-change: transform;
    pointer-events: none;
    position: relative;
    top: unset;
    left: unset;
}
section.why-franchise .section-number-wrapper .section-number {
    position: relative;
    display: flex;
    align-items: center;
}
section.why-franchise .section-number-wrapper .section-number .progress-line {
    position: relative;
    width: 87px;
    height: 1px;
    background-color: #f79727;
    overflow: hidden;
}
section.why-franchise .section-number-wrapper .section-number .number {
    position: relative;
    top: unset;
    font-weight: 600;
    font-size: .8571428571rem;
    line-height: 1;
    letter-spacing: .2857142857rem;
    color: #f79727;
    -webkit-transform: unset;
    transform: none;
}
section.why-franchise #whyFranchise.carousel.fade:not(.show) {
    opacity: 1;
}
section.why-franchise #whyFranchise.carousel.fade .carousel-item {
    opacity: 0;
    display: block !important;
    transition: all 1.2s;
}
section.why-franchise #whyFranchise.carousel.fade .carousel-item img {
    margin: 80px auto 0;
    max-height: 400px;
}
section.why-franchise #whyFranchise.carousel.fade .carousel-item.active {
    opacity: 1;
}
section.why-franchise #whyFranchise.carousel.fade .carousel-item .wrappity-wrap {
	display: block;
	max-width: 375px;
	width: 100%;
}
section.why-franchise #whyFranchise {
    transform: scale(1);
    opacity: 1;
}
.logo-icon.opening img {
  max-width: 115px!important;
  height: auto!important;
}

/* Footprint */
section.footprint {
    background-color: #F7F7F7;
    padding-top: 250px;
    padding-bottom: 250px;
    background-image: url(../../../assets/img/footprint-oval.svg);
    background-repeat: no-repeat;
    background-position: center left -350px;
    background-size: contain;
}
section.footprint .content-col {
    padding: 120px 30px 120px 0;
}
section.footprint .content-col h1 {
	text-transform: none;
}
section.footprint .sticky-number-wrapper {
    position: absolute;
    top: -160px;
    right: 0;
}

/* Training */
section.training {
    background-color: #F7F7F7;
    padding-top: 200px;
    padding-bottom: 200px;
}
section.training .col-md-6:first-child::after {
    content: "";
    display: block;
    background-color: #f7f7f7;
    height: 30px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
section.training .sticky-number-wrapper {
    position: relative;
    top: 80px;
    height: unset;
    z-index: 2;
}
section.training .section-number-wrapper {
    width: unset !important;
    will-change: transform;
    pointer-events: none;
    position: relative;
    top: unset;
    left: unset;
}
section.training .section-number-wrapper .section-number {
    position: relative;
    display: flex;
    align-items: center;
}
section.training .section-number-wrapper .section-number .progress-line {
    position: relative;
    width: 87px;
    height: 1px;
    background-color: #f79727;
    overflow: hidden;
}
section.training .section-number-wrapper .section-number .number {
    position: relative;
    top: unset;
    font-weight: 600;
    font-size: .8571428571rem;
    line-height: 1;
    letter-spacing: .2857142857rem;
    color: #f79727;
    -webkit-transform: unset;
    transform: none;
	margin-left: 10px;
}

/* Success Stories */
section.testimonials {
    background-color: #F7F7F7;
    padding-top: 200px;
    padding-bottom: 100px;
}
section.testimonials .content-col {
	padding-right: 60px;
}
section.testimonials .author {
    font-size: 14px;
    color: #175FB1;
    margin: 2rem 0;
}
section.testimonials .sticky-number-wrapper {
    position: absolute;
    top: -140px;
    right: 0;
    height: unset;
    z-index: 2;
}
section.testimonials .content-col h1 {
	text-transform: none;
}

/* Technology */
section.technology {
    background-color: #F7F7F7;
    padding-top: 350px;
    padding-bottom: 0px;
    background-image: url(../../../assets/img/profit-margin-oval.svg), url(../../../assets/img/support-oval.svg), url(../../../assets/img/profit-margin-oval.svg), url(../../../assets/img/support-oval.svg);
    background-repeat: no-repeat;
    background-position: top 1150px right -500px, top right -100px, bottom 50px left -1300px, top 2300px center;
    background-size: auto, auto , 85%;
		position: relative;
}
section.technology .support .content-col  {
    padding: 100px 0;
}
section.technology .support .sticky-number-wrapper {
    position: relative;
    top: -80px;
    height: unset;
    z-index: 2;
}
section.technology .support .section-number-wrapper {
    width: unset !important;
    will-change: transform;
    pointer-events: none;
    position: relative;
    top: unset;
    left: unset;
}
section.technology .support .section-number-wrapper .section-number {
    position: relative;
    display: flex;
    align-items: center;
}
section.technology .support .section-number-wrapper .section-number .progress-line {
    position: relative;
    width: 87px;
    height: 1px;
    background-color: #f79727;
    overflow: hidden;
}
section.technology .support .section-number-wrapper .section-number .number {
    position: relative;
    top: unset;
    font-weight: 600;
    font-size: .8571428571rem;
    line-height: 1;
    letter-spacing: .2857142857rem;
    color: #f79727;
    -webkit-transform: unset;
    transform: none;
	margin-left: 10px;
}
/* FAQ */
section.technology .faq {
	position: relative;
}
section.technology .faq .content-col {
    padding: 400px 0 100px;
}

section.technology .faq .sticky-number-wrapper {
    position: relative;
    top: -80px;
    height: unset;
    z-index: 2;
}
section.technology .faq .section-number-wrapper {
    width: unset !important;
    will-change: transform;
    pointer-events: none;
    position: relative;
    top: unset;
    left: unset;
}
section.technology .faq .section-number-wrapper .section-number {
    position: relative;
    display: flex;
    align-items: center;
}
section.technology .faq .section-number-wrapper .section-number .progress-line {
    position: relative;
    width: 87px;
    height: 1px;
    background-color: #f79727;
    overflow: hidden;
}
section.technology .faq .section-number-wrapper .section-number .number {
    position: relative;
    top: unset;
    font-weight: 600;
    font-size: .8571428571rem;
    line-height: 1;
    letter-spacing: .2857142857rem;
    color: #f79727;
    -webkit-transform: unset;
    transform: none;
	margin-left: 10px;
}

/* Partner Stores */
section.technology .partner-stores {
	position: relative;
    padding-top: 150px;
}
section.technology .partner-stores .col-6 img {
    width: 100%;
	margin-bottom: 30px;
	transition: all 1s ease-in-out;

}
section.technology .partner-stores .col-6 img:hover {
	cursor: pointer;
}
section.technology .partner-stores .col-md-6 img:hover {
	cursor: pointer;
	transform: scale(1.1);
}
section.technology .partner-stores .col-6.col-md-3 {
    height: 170px;
    margin-bottom: 30px;
}
section.technology .partner-stores .col-6.col-md-3 img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* Partner Store Modal */
section.technology .partner-stores .modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
}
section.technology .partner-stores .modal img {
    margin: 0;
}
section.technology .partner-stores .modal-content {
  position: relative;
  margin: auto auto 40px;
  padding: 0;
  width: 100%;
  max-width: 820px;
  background-color: transparent;
  border: none;
}
section.technology .partner-stores .close {
    color: #fff !important;
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    opacity: 1;
}
section.technology .partner-stores .close:hover,
section.technology .partner-stores .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
section.technology .partner-stores .mySlides {
    display: none;
    height: 540px;
    width: 820px;
}
section.technology .partner-stores .mySlides img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
section.technology .partner-stores .cursor {
  cursor: pointer;
}
section.technology .partner-stores .prev,
section.technology .partner-stores .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
section.technology .partner-stores .prev {
    left: -50px;
}
section.technology .partner-stores .next {
  right: -50px;
  border-radius: 3px 0 0 3px;
}
section.technology .partner-stores .prev:hover,
section.technology .partner-stores .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
section.technology .partner-stores .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
section.technology .partner-stores .caption-container {
  text-align: center;
  background-color: rgba(0,0,0,0.75);
  padding: 10px 16px;
  color: white;
  line-height: 1;
  position: relative;
  top: -35px;
}
section.technology .partner-stores .caption-container p {
	line-height: 1;
	margin: 0;
	color: #fff;
}
section.technology .partner-stores .demo {
  opacity: 0.6;
}
section.technology .partner-stores .active,
section.technology .partner-stores .demo:hover {
  opacity: 1;
}
section.technology .partner-stores img.hover-shadow {
  transition: 0.3s;
}
section.technology .partner-stores .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
section.technology .partner-stores .modal .col.column {
    padding: 0 2px;
    height: 50px;
		margin-bottom: 5px;
}
section.technology .partner-stores .modal .col.column img {
    object-fit: cover;
		object-position: center;
		height: 100%;
		width: 100%;
}

section.technology .application-form {
	position: relative;
    padding-top: 300px;
    padding-bottom: 100px;
}
section.technology .application-form .container {
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}
section.technology .application-form .content-col > p {
	margin-bottom: 50px;
}
section.technology .application-form .form-group {
    margin-bottom: 35px;
}
.application-form .form-control {
	height: unset;
    padding: .75rem 1rem;
    font-size: 16px;
    color: #B0B0B0;
    background-color: #fff;
    border: 1px solid #B0B0B0;
    border-radius: 0;
}
.application-form .custom-select {
	height: unset;
    padding: .75rem 1.75rem .75rem .75rem;
    font-size: 16px;
    color: #B0B0B0;
    border: 1px solid #B0B0B0;
    border-radius: 0;
}
.numbers {
	color: #0054a4;
	font-weight: 600;
}

section.technology .application-form .checbox-input {
    display: inline-flex;
    margin: 15px auto 30px;
    flex-wrap: wrap;
	justify-content: center;
}
section.technology .application-form .checbox-input #error_accept_tcs {
	display: block;
}
section.technology .application-form .checbox-input label.terms-checkbox {
    margin: 0 10px 0 0;
}
/* Base for label styling */
section form [type="checkbox"]:not(:checked),
section form [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
section form [type="checkbox"]:not(:checked) + label,
section form [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 2.5em;
  cursor: pointer;
}

/* checkbox aspect */
section form [type="checkbox"]:not(:checked) + label:before,
section form [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.6em; height: 1.6em;
  border: 1px solid #0054a4;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
section form [type="checkbox"]:not(:checked) + label::after, section form [type="checkbox"]:checked + label::after {
    content: '\2713\0020';
    position: absolute;
    top: .18em;
    left: .18em;
    font-size: 1.5em;
    line-height: 0.8;
    color: #0054a4;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
section form [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
section form [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
section form [type="checkbox"]:disabled:not(:checked) + label:before,
section form [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #0054a4;
  background-color: #ddd;
}
section form [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
section form [type="checkbox"]:disabled + label {
  color: #aaa;
}
section.technology .application-form .tab-content {
    display: block;
    width: 100%;
}
section .application-form .sticky-number-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
}
section .application-form .message {
  position: absolute;
  z-index: 9;
  display: none;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #D9585C;
  color: #fff;
  text-align: center;
}
section .application-form .message:after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  display: block;
  margin-left: -10px;
  border: solid;
  border-color: #D9585C transparent #D9585C;
  border-width: 0 10px 10px;
}
section .application-form .is-valid {
  border-color: #AAD661 !important;
  -webkit-transition: 0;
  transition: 0;
}
section .application-form .not-valid {
  border-color: #D7595F;
  -webkit-transition: 0;
  transition: 0;
}
#application_form_error {
	padding-top: 45px;
}
section .application-form .not-valid + .message {
  display: block !important;
}
section.technology .application-form .application-question-row {
    display: flex;
    align-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    min-height: 75px;
    padding: 10px 15px;
    margin-bottom: 20px;
	opacity: 0.3;
	pointer-events: none;
	transition: opacity 0.5s ease;
	position: relative;
}
section.technology .application-form .application-question-row.active{
	opacity: 1;
	pointer-events: all;
}
section.technology .application-form .application-question-row .application-question-label {
    width: 100%;
    max-width: calc(100% - 150px);
	font-size: 16px;
    line-height: 1.4;
		position: relative;
		padding-left: 30px;
}
section.technology .application-form .application-question-row .application-question-label .numbers {
    position: absolute;
    left: 0;
}
section.technology .application-form .application-question-row .application-question-option {
    display: flex;
    width: 50px;
    align-content: center;
    margin-left: 25px;
    justify-content: center;
    align-items: center;
}
section.technology .application-form .application-question-row .application-question-row label {
    display: flex;
    align-content: center;
	margin: 0;
}
section.technology .application-form .application-question-row .application-question-row label span {
    margin-left: 5px;
}
section.technology .application-form .application-questiontextarea-option {
    display: block;
    width: 100%;
	margin: 10px auto 0;
}
section.technology .application-form .application-questiontextarea-option textarea {
    overflow: auto;
    resize: vertical;
    width: 100%;
    border: 1px solid #818181;
    padding: 10px;
    max-height: 95px;
	color: #818181;
}
section.technology .application-form .application-question-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
section.technology .application-form .application-question-option input[type="radio"]  ~ .radio-control {
    display: flex;
	align-items: center;
	font-size: 18px;
}
section.technology .application-form .application-question-option input[type="radio"]:checked  ~ .radio-control {
	color: #0054a4;
}
section.technology .application-form .application-question-option input[type="radio"]  ~ .radio-control::before {
    content: "";
    height: 25px;
    width: 25px;
    display: block;
    border: 1px solid #818181;
    border-radius: 50%;
    line-height: 16px;
    font-size: 30px;
    text-align: center;
    margin-right: 8px;
	transition: 0.5s all;
}
section.technology .application-form .application-question-option input[type="radio"]:checked  ~ .radio-control::before {
    content: "•";
    height: 25px;
    width: 25px;
    display: block;
    border: 1px solid #0054a4;
    border-radius: 50%;
    line-height: 19px;
    font-size: 41px;
    text-align: center;
    margin-right: 8px;
	color: #0054a4;
}

section.technology .application-form .application-question-row.wronganswer {
	border: 2px solid #dc3545;
}
section.technology .application-form .application-question-row.wronganswer::after {
	content: "This does not meet our minimum requirement. Please revise your answer.";
	display: block;
	position: absolute;
	bottom: -25px;
	color: #dc3545;
	font-weight: 700;
	z-index: 2;
}
section.technology .application-form .application-question-row.wronganswer .application-question-label .numbers {
    color: #dc3545;
}
section.technology .application-form .application-question-row.wronganswer .application-question-option input[type="radio"]:checked  ~ .radio-control::before {
    border: 1px solid #dc3545;
	color: #dc3545;
}
section.technology .application-form .application-question-row.wronganswer .application-question-option input[type="radio"]:checked  ~ .radio-control {
	color: #dc3545;
}
section.technology .application-form .panel.panel-default {
	width: 100%;
}
section.technology .application-form .form-buttons-row {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 30px;
}
section.technology .application-form .form-buttons-row div {
	margin: 10px 15px;
}
section.technology .application-form .personal-details-form {
	display: block;
	width: 100%;
  max-width: 615px;
  margin: 0 auto;
}
section.technology .application-form .document-support {
	font-weight: 700;
}
section.technology .application-form .document-support li {
    font-weight: 700;
}
section.technology .application-form .document-support li::marker {
    color: #818181;
    font-weight: 700;
}
section.technology .application-form .document-support li a {
	font-weight: 700;
}
.download-doc {
	text-transform: uppercase;
	color: #BED630;
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.inputfile + label {
    max-width: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 40px;
    text-align: center;
		border: 1px dashed #818181
}
.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}
.inputfile-1 + label {
    color: #818181;
    background-color: #ffffff;
}
section.technology .application-form #application_form_error h3 {
	display: block;
	max-width: 1200px;
	margin: 0 auto 20px;
	font-weight: 900;
	line-height: 1.1;
	font-family: 'Nunito Sans', sans-serif;
	color: #0054A4;
	text-align: center;
}


/* More Questions */
section.more-questions {
		display: none;
    background-color: #F7F7F7;
    padding-top: 0px;
    padding-bottom: 100px;
}
body.thank-you section.more-questions {
    display: block;
}
section.more-questions .container {
    max-width: 960px;
	width: 100%;
}
section.more-questions img {
	margin-bottom: 15px;
	height: 35px;
}
section.more-questions p {
	font-size: 18px;
	margin-bottom: 5px;
}
section.more-questions a {
	font-size: 18px;
	color: #0054A4;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #D8D8D8;
}
.nav-tabs .nav-link {
    font-size: 16px;
    border: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: transparent;
    border: 2px solid transparent;
    outline: none;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
    margin-right: 15px;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: none;
	color: #F79727;
}
.nav-tabs .nav-link.active {
    color: #F79727;
    border-bottom: 2px solid #F79727;
    outline: none;
}
.nav-tabs .nav-link.active:hover {
    border-bottom: 2px solid #F79727;
    outline: none;
}
#myTabContent {
    padding: 80px 0;
}
section .sticky-number-wrapper {
    position: absolute;
    top: 0;
    height: 800px;
	z-index: 2;
}
.section-number-wrapper {
    position: absolute;
    top: 0;
    left: 110px;
    width: calc(100% - 110px - 110px) !important;
    will-change: transform;
    pointer-events: none;
}
.section-number-wrapper .section-number {
    position: absolute;
    top: 0;
    left: 4px;
}
.section-number-wrapper .section-number .number {
    position: absolute;
    top: 110px;
    font-weight: 600;
    font-size: .8571428571rem;
    line-height: 1;
    letter-spacing: .2857142857rem;
    color: #f79727;
    -webkit-transform: rotate(90deg) translateY(4px);
    transform: rotate(90deg) translateY(4px);
    -webkit-transform-origin: top center;
    transform-origin: top center;
}
.section-number-wrapper .section-number .progress-line {
    position: relative;
    width: 1px;
    height: 87px;
    background-color: #f79727;
    overflow: hidden;
}
.section-number-wrapper .section-number .progress-line .progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background-color: #F79727;
}
.section-number-wrapper .section-number.align-right {
    left: auto;
    right: 4px;
}


/* Sticky Footer Contact */
.sticky-mobi-contact {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
	z-index: 9999;
}
.sticky-mobi-contact a {
    display: flex;
    align-items: center;
    background-color: #BED630;
	border: 1px solid #ffffff;
    color: #ffffff;
    padding: 14px 10px;
	line-height: 1.2;
    width: 100%;
    justify-content: center;
}
.sticky-mobi-contact a:hover {
	background-color: #9EB225;
	text-decoration: none;

}
.sticky-mobi-contact .fa {
    margin-right: 5px;
}

/* Form */
.error-message, .sent-message {
    display: none;
}

/* Footer */
footer {
    background-color: #FFFFFF;
    padding: 60px 0 60px;
    background-image: url(../../../assets/img/footer-bg.png);
    background-size: 100% auto;
    background-position: top center;
	background-repeat: no-repeat;
}
footer .main-footer {
    max-width: 720px;
	width: 100%;
    margin: 0 auto;
}
footer .main-footer p {
	margin-bottom: 50px;
}
footer .logo {
	margin-bottom: 50px;
}
footer p, footer a {
	font-size: 14px;
}
footer .footer-bottom {
	padding: 60px 0 0;
}
footer .footer-bottom .row {
	align-items: center;
}
footer .footer-menu {
	padding: 0;
	display: flex;
	justify-content: flex-end;
}
footer .footer-menu li {
	list-style: none;
	margin-right: 10px;
}

footer .footer-menu li a {
	color: #818181;
}

.social-icons {
	padding: 0;
	display: flex;
	justify-content: center;
}
.social-icons li {
	list-style: none;
	margin-right: 15px;
}
.social-icons li:last-child {
	margin-right: 0;
}
.social-icons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: #0055A3;
	border: 1px solid #0055A3;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	color: #ffffff;
	transition: all 0.2s ease-in-out;
}
.social-icons li a:hover {
	background-color: #ffffff;
	color: #0055A3;
	text-decoration: none;
}


/* Responsive Styles */


@media only screen and (max-width: 1450px) {
	.floating-elements .guitar {
		top: -80px;
		left: 25%;
	}
	.floating-elements .headphones {
		top: 48%;
		left: 5%;
	}
	.floating-elements .iPhone {
		top: 130px;
		right: 15%;
	}
	.floating-elements .television {
		top: 60%;
		left: unset;
		right: 5%;
	}
}

@media only screen and (max-width: 992px) {
	.header-banner::after {
		width: 200%;
		top: -60%;
		left: -50%;
	}
	.floating-elements .guitar {
		display: none;
	}
	.floating-elements .headphones {
		display: none;
	}
	.floating-elements .iPhone {
		right: unset;
		left: -30px;
	}
	.floating-elements .television {
		left: unset;
		right: -50px;
		max-width: 125px;
	}
	.circle-dotted.circle-04 {
		width: 150px;
		height: 150px;
	}
}

@media only screen and (max-width: 767px) {
	h1 {
		font-size: 30px;
	}
	.top-bar .col-md-6 {
		text-align: center;
	}
	.top-bar .col-md-6 span span {
		display: block;
		margin: 0 auto 15px;
	}
	.header-banner .top-bar .btn {
		margin-left: 0;
	}
	.header-banner h1, .header-banner p {
		max-width: 73%;
		margin: 0 auto;
	}
	section.why-franchise {
		padding-top: 170px;
		padding-bottom: 120px;
	}
	section.why-franchise .content-col {
		padding: 40px 0 0 0;
	}
	section.footprint .content-col {
		padding: 0;
	}
	section.footprint {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	section.training {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#myTabContent {
		padding: 40px 0;
	}
	section.testimonials .content-col {
		padding: 0 0 60px;
	}
	section.technology {
		padding-top: 100px;
	}
	section.technology .faq .content-col {
		padding: 100px 0 0px;
	}
	section.technology .partner-stores {
		position: relative;
		padding-top: 60px;
	}
	section.technology .application-form {
		padding-top: 150px;
		padding-bottom: 100px;
	}
	section.more-questions .partner-stores .col-md-4 {
		margin-bottom: 40px;
	}
	footer p, footer a {
		text-align: center;
	}
	footer .footer-menu {
		justify-content: center;
	}
	footer .footer-bottom .row:nth-child(2) .copyright {
		order: 3;
	}
	footer .footer-bottom .row:nth-child(2) .footer-social-icons {
		order: 1;
	}
	footer .footer-bottom .row:nth-child(2) .footer-menu-wrapper {
		order: 2;
	}
	.social-icons {
		margin: 0px 0 30px;
	}
	section.why-franchise .sticky-number-wrapper {
		position: relative;
		top: 20px;
	}
	section.footprint {
		padding-top: 120px;
		padding-bottom: 0px;
		background-size: 150%;
		background-position: top left 112%;
	}
	section.footprint .sticky-number-wrapper {
		position: absolute;
		top: -150px;
		right: unset;
		left: -95px;
	}
	section.training .sticky-number-wrapper {
		position: absolute;
		top: -80px;
		height: unset;
		z-index: 2;
	}
	.nav-tabs {
		border-bottom: none;
	}
	.nav-tabs .nav-item {
		margin-right: 15px;
		width: calc(50% - 15px);
		border-bottom: 1px solid #D8D8D8
	}
	section.testimonials {
		padding-top: 0;
		padding-bottom: 60px;
	}
	section.testimonials .row .col-md-5 {
		order: 2;
	}
	section.testimonials .row .col-md-7 {
		order: 1;
	}
	#testimonial_img {
		height: auto;
	}
	section.testimonials .testimonial-quote-wrapper {
		left: 60px;
		top: 20%;
	}
	section.testimonials .testimonial-quote-wrapper .quote p {
		margin: 0 0 0.5rem;
		font-size: 13px;
	}
	section.technology {
		background-position: top 1150px right -500px, top right -100px, bottom 50px left -1000px, top 2400px center;
		background-size: auto, auto , 85%, contain;
	}
	section.technology .faq .sticky-number-wrapper {
		position: relative;
		top: 0;
		height: unset;
		z-index: 2;
	}
	section.more-questions .contact-row .col-md-4 {
		margin-bottom: 40px;
	}
	.why-franchise .logo-icon img {
		top: 205px !important;
		left: -190%;
	}
	.faq .logo-icon img {
		top: -1550px;
	}
	section.technology .partner-stores .next {
		right: -35px;
	}
	section.technology .partner-stores .previous {
		left: -35px;
	}
	.header-banner.thank-you h1 {
		margin-top: 60px !important;
		margin-bottom: 60px;
	}

}

@media only screen and (max-width: 600px) {
	nav.sticky-header {
		padding: 10px 20px;
	}
	nav.sticky-header .item {
		max-width: 100%;
	}
	nav.sticky-header .item:first-child {
		display: none;
	}
	nav.sticky-header .item span span {
		display: none;
	}
	nav.sticky-header .item .btn {
		margin-left: 0px;
	}
	nav.sticky-header .item:nth-child(2) {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sticky-mobi-contact {
		display: flex;
	}
	section.technology .application-form .application-question-row .application-question-label {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto 10px;
	}
	section.technology .application-form .application-question-row {
    justify-content: space-evenly;
	}
}

@media only screen and (max-width: 450px) {
  .why-franchise .logo-icon img {
    margin-left: -185px!important;
    max-width: 85px!important;
    top: 160px!important;

  }
  nav.sticky-header .item:nth-child(2) {
	  margin-top: 0px!important;
  }

  section.why-franchise .sticky-number-wrapper {
    top: 18px!important;
  }
  .training .logo-icon img {
    margin-left: 63px!important;
    max-width: 85px!important;
  }
  .testimonials .logo-icon img {
    max-width: 101px!important;
    margin-left: -36px!important;
    top: 39px!important;
  }
  .faq .logo-icon img {
    max-width: 85px!important;
    top: -505px!important;
  }
  .nav-link {
    padding: .5rem!important;
  }
  .testimonials .logo-icon img {
    top: -188px !important;
  }
  section.training {
    margin-top: -201px;
    padding-top: 0px!important;
  }
  section.why-franchise {
    padding-top: 0px!important;
    margin-top: -90px!important;
  }
  .testimonial-quote-wrapper {
    height: 432px!important;
  }
  section.technology .faq .content-col {
    padding: 0px!important;
  }
  .faq .logo-icon img {
    margin-left: 293px;
  }
  section.more-questions {
    padding-bottom: 39px;
  }
  footer .footer-bottom {
    padding: 25px!important;
  }
  .header-banner {
    padding-top: 12px!important;
    padding-bottom: 129px!important;
  }
  section.footprint p {
    max-width: 300px!important;
  }
  section.technology .support .content-col {
    padding: 20px 0px 60px 0px;
  }
  section .content-col h1 {
    margin-bottom: 30px;
  }
  .faq .logo-icon img {
    margin-left: 290px;
  }
  section.technology .faq {
    margin-bottom: 29px;
  }
  .faq .logo-icon img {
    margin-left: 291px!important;
  }
}
/* Animation */

.why-franchise .logo-icon {
    position: absolute;
    top: -560px;
    right: -30px;
    z-index: 99999;
    width: 130px;
}
.why-franchise .logo-icon img {
    position: absolute;
    margin-left: 25px;
    max-width: 140px;
    width: 100%;
    top: 16px;
	transform-style: preserve-3d;
}
.training .logo-icon {
    position: absolute;
    top: -280px;
    right: -30px;
    z-index: 999;
    width: 170px;
}
.training .logo-icon img {
    position: absolute;
    margin-left: 0;
    opacity: 0;
    max-width: 160px;
    width: 100%;
}
.testimonials .logo-icon {
    position: absolute;
    top: -300px;
    left: -300px;
    z-index: 999;
    width: 170px;
}
.testimonials .logo-icon img {
    position: absolute;
    margin-left: 36px;
    opacity: 0;
    max-width: 160px;
    width: 100%;
}
.faq .logo-icon {
    position: absolute;
    top: 550px;
    left: 30%;
    z-index: 999;
    width: 170px;
}
.faq .logo-icon img {
    position: absolute;
    margin-left: 250px;
    opacity: 0;
    max-width: 160px;
    width: 100%;
    top: -600px;
}
section.technology .support .hover-elem {
    -webkit-animation: iPhone-floating 12s ease-in-out infinite;
    animation: iPhone-floating 12s ease-in-out infinite;
    will-change: transform;
}
section.technology .support .orange-circle {
	position: absolute;
	top: 25px;
	right: 15%;
}
.fadeInUp {
    opacity: 0;
    transform: translate(0px, 10px);
}
.zoomInUp {
	transform: scale(0.5);
	opacity: 0;
}
.headphones img {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}
@-webkit-keyframes inner-circle-1-animation {
 0% {
  -webkit-transform:scale(0);
  transform:scale(0)
 }
 to {
  -webkit-transform:scale(1.32);
  transform:scale(1.32)
 }
}
@keyframes inner-circle-1-animation {
 0% {
  -webkit-transform:scale(0);
  transform:scale(0)
 }
 to {
  -webkit-transform:scale(1.32);
  transform:scale(1.32)
 }
}
@-webkit-keyframes inner-circle-1-animation-fade {
 0% {
  opacity:1
 }
 88% {
  opacity:1
 }
 98% {
  opacity:0
 }
 to {
  opacity:0
 }
}
@keyframes inner-circle-1-animation-fade {
 0% {
  opacity:1
 }
 88% {
  opacity:1
 }
 98% {
  opacity:0
 }
 to {
  opacity:0
 }
}
.floating-elements .guitar .circle-dotted, .floating-elements .headphones .circle-dotted, .floating-elements .television .circle-dotted, .floating-elements .iPhone .circle-dotted {
 -webkit-animation:circle-rotate 6s ease-in-out infinite;
 animation:circle-rotate 6s ease-in-out infinite;
 will-change:transform
}
@-webkit-keyframes circle-rotate {
 0% {
  -webkit-transform:rotate(6deg);
  transform:rotate(6deg)
 }
 65% {
  -webkit-transform:rotate(-6deg);
  transform:rotate(-6deg)
 }
 to {
  -webkit-transform:rotate(6deg);
  transform:rotate(6deg)
 }
}
@keyframes circle-rotate {
 0% {
  -webkit-transform:rotate(6deg);
  transform:rotate(6deg)
 }
 65% {
  -webkit-transform:rotate(-6deg);
  transform:rotate(-6deg)
 }
 to {
  -webkit-transform:rotate(6deg);
  transform:rotate(6deg)
 }
}
.floating-elements .headphones figure {
 -webkit-animation:headphones-floating 12s ease-in-out infinite;
 animation:headphones-floating 12s ease-in-out infinite;
 will-change:transform
}
@-webkit-keyframes headphones-floating {
 0% {
  -webkit-transform:translate(5%,-5%) rotate(5deg);
  transform:translate(5%,-5%) rotate(5deg)
 }
 35% {
  -webkit-transform:translate(-5%,5%) rotate(-6deg);
  transform:translate(-5%,5%) rotate(-6deg)
 }
 65% {
  -webkit-transform:translate(5%,8%) rotate(-2deg);
  transform:translate(5%,8%) rotate(-2deg)
 }
 to {
  -webkit-transform:translate(5%,-5%) rotate(5deg);
  transform:translate(5%,-5%) rotate(5deg)
 }
}
@keyframes headphones-floating {
 0% {
  -webkit-transform:translate(5%,-5%) rotate(5deg);
  transform:translate(5%,-5%) rotate(5deg)
 }
 35% {
  -webkit-transform:translate(-5%,5%) rotate(-6deg);
  transform:translate(-5%,5%) rotate(-6deg)
 }
 65% {
  -webkit-transform:translate(5%,8%) rotate(-2deg);
  transform:translate(5%,8%) rotate(-2deg)
 }
 to {
  -webkit-transform:translate(5%,-5%) rotate(5deg);
  transform:translate(5%,-5%) rotate(5deg)
 }
}

.floating-elements .television figure {
 -webkit-animation:television-floating 10s ease-in-out infinite;
 animation:television-floating 10s ease-in-out infinite;
 will-change:transform
}
@-webkit-keyframes television-floating {
 0% {
  -webkit-transform:translate(-1%,-3%) rotate(3deg);
  transform:translate(-1%,-3%) rotate(3deg)
 }
 60% {
  -webkit-transform:translate(1%,3%) rotate(-3deg);
  transform:translate(1%,3%) rotate(-3deg)
 }
 to {
  -webkit-transform:translate(-1%,-3%) rotate(3deg);
  transform:translate(-1%,-3%) rotate(3deg)
 }
}
@keyframes television-floating {
 0% {
  -webkit-transform:translate(-1%,-3%) rotate(3deg);
  transform:translate(-1%,-3%) rotate(3deg)
 }
 60% {
  -webkit-transform:translate(1%,3%) rotate(-3deg);
  transform:translate(1%,3%) rotate(-3deg)
 }
 to {
  -webkit-transform:translate(-1%,-3%) rotate(3deg);
  transform:translate(-1%,-3%) rotate(3deg)
 }
}
.floating-elements .iPhone figure {
 -webkit-animation:iPhone-floating 12s ease-in-out infinite;
 animation:iPhone-floating 12s ease-in-out infinite;
 will-change:transform
}
@-webkit-keyframes iPhone-floating {
 0% {
  -webkit-transform:translateY(-5%) rotate(3deg);
  transform:translateY(-5%) rotate(3deg)
 }
 65% {
  -webkit-transform:translateY(5%) rotate(-3deg);
  transform:translateY(5%) rotate(-3deg)
 }
 to {
  -webkit-transform:translateY(-5%) rotate(3deg);
  transform:translateY(-5%) rotate(3deg)
 }
}
@keyframes iPhone-floating {
 0% {
  -webkit-transform:translateY(-5%) rotate(3deg);
  transform:translateY(-5%) rotate(3deg)
 }
 65% {
  -webkit-transform:translateY(5%) rotate(-3deg);
  transform:translateY(5%) rotate(-3deg)
 }
 to {
  -webkit-transform:translateY(-5%) rotate(3deg);
  transform:translateY(-5%) rotate(3deg)
 }
}

section.technology .partner-stores .col-6:nth-child(1) img {
	transition: all 0.5s ease-in-out;
}
section.technology .partner-stores .col-6:nth-child(2) img {
	transition: all 1s ease-in-out;
}
section.technology .partner-stores .col-6:nth-child(3) img {
	transition: all 1.5s ease-in-out;
}
section.technology .partner-stores .col-6:nth-child(4) img {
	transition: all 2s ease-in-out;
}
section.technology .partner-stores .col-6:nth-child(5) img {
	transition: all 2.5s ease-in-out;
}
section.technology .partner-stores .col-6:nth-child(6) img {
	transition: all 3s ease-in-out;
}

section.more-questions .contact-row .col-md-4:nth-child(1) {
	transition: all 0.5s ease-in-out;
}
section.more-questions .contact-row .col-md-4:nth-child(2) {
	transition: all 1s ease-in-out;
}
section.more-questions .contact-row .col-md-4:nth-child(3) {
	transition: all 1.5s ease-in-out;
}
section.technology .support .rotateIn {
	-webkit-transform:scale(0);
	transform:scale(0);
	opacity: 0;
}

#profit_margin_per_sale, #target_per_sale_rep, #to_previous_period, #graph_y_axis {
	-webkit-transform:scale(0);
	transform:scale(0);
	opacity: 0;
}
#Oval_Group g {
	-webkit-transform:scale(0);
	transform:scale(0);
	opacity: 0;
}
#Team image {

}
#Team image:nth-child(1) {
	transition: all 0.6s;
}
#Team image:nth-child(2) {
	transition: all 1.2s;
}
#Team image:nth-child(3) {
	transition: all 1.8s;
}

#testimonial_img {
	position: relative;
	z-index: 9999;
}
#testimonial_img .quote-button:hover {
	cursor: pointer;
}

#testimonial_img .quote-button .active-testimonial {
	opacity: 0;
	transition: all 1s;
}
#testimonial_img .quote-button.active .active-testimonial {
	opacity: 1;
}

.testimonial-quote-wrapper {
    display: block;
    width: 100%;
    height: 590px;
    overflow: hidden;
    z-index: 999;
}
.testimonial-quote-wrapper .quote {
    display: block;
    width: 100%;
    visibility: hidden;
    position: absolute;
	background-color: #f7f7f7;
}
section {
  scroll-behavior: smooth;
}
section svg {
    transition: all 0.75s ease-in-out;
}
section svg:hover {
    transform: scale(1.025);
}
.header-banner.thank-you h1 {
    margin-top: 100px !important;
}
ol li::marker {
    color: #0054a4;
    font-weight: 600;
}
