:root {
    --white-color: #fff;
    --off-white: #F1F3F3;
    --pink-red: #FF007A;
    --yellowish-orange: #CC8400;
    --meteor-color: #CD8401;
    --black-color: #000;
    --dark-blue: #0A2139;
    --text-color: #00284E;
    --top-bg: linear-gradient(97deg,#f25fd0 30%,#ff007a);
    --header-gradient-bg: linear-gradient(97deg, #18416a 10%, #092138);

    --heading-font: "Oswald", sans-serif;
    --body-font: "Host Grotesk", sans-serif; 
    --roboto-font: "Roboto", sans-serif;
    --Metropolis-font: "Roboto", sans-serif;
    --montserrat: "Montserrat", sans-serif;

}
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--white-color);
    color: var(--black-color);
}
body *:last-child {
    margin-bottom: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}
img {
    max-width: 100%;
    height: auto;
}
p, p:last-child {
    margin-bottom: 0;
}
h1, h2, h4 {
    font-family: var(--heading-font);
    font-weight: 800;
    margin: 0;
}
h1 {
    color: var(--text-color);
    font-size: 45px;
    line-height: 1.12;
}
h2, h3 {
    color: var(--text-color);
    font-size: 40px;
    line-height: 46px;
    margin: 0;
    text-transform: capitalize;
}
h3 {
    font-size: 36px;
    line-height: 1.16667;
}
h4 {
    /* font-family: ; */
    color: #4F4F4F;
    font-size: 24px;
    line-height: 1.3333;
    font-weight: 400;
}
h5 {
    color: var(--dark-blue);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333;
}
h6 {
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}
.yellow-btn, .pink-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    max-width: max-content;
    border: none;
    transition: all 0.3s;
}
.yellow-btn {
    font-size: 12.8px;
    line-height: 15.36px;
    font-family: var(--heading-font);
    color: var(--white-color);
    background: var(--yellowish-orange);
    padding: 12px 18px;
    border-radius: 57px;
}
.yellow-btn:hover {
    color: var(--dark-blue);
}
.pink-btn {
    background-color: #F25FD0;
    color: var(--off-white);
    padding: 10.25px 8px;
    border-radius: 10px;
    min-width: 148px;
    font-size: 16px;
    line-height: 31px;
    font-weight: 700;
    font-family: var(--body-font);
    text-transform: uppercase;
}
.pink-btn:hover {
    color: var(--dark-blue);
}
.transparent-btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    font-family: var(--heading-font);
    background-color: transparent;
    color: var(--yellowish-orange);
    border: 1px solid var(--yellowish-orange);
    max-width: max-content;
    border-radius: 57px;
    padding: 11px 14px 12px 15px;
    text-align: center;
}
.container {
    padding: 0 16px;
}
.div-800 {
    max-width: 860px;
    margin: 0 auto;
}
html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* tip trending area style */
header.site-header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}
.top-trending-area {
    background: var(--top-bg);
    padding: 4px 0 5px;
}
.trending-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 14px;
    line-height: 1.5;
}
.tag-with-img {
    display: flex;
    align-items: center;
    gap: 6px;
}
.titles a {
    text-transform: capitalize;
    color: var(--white-color);
    height: 20px;
}
.navigate-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.navigate-links span {
    display: block;
    border-left: 1px solid var(--white-color);
    border-top: 1px solid var(--white-color);
    height: 5px;
    width: 5px;
    transform: rotate(45deg);
    cursor: pointer;
}
.navigate-links span:last-child {
    transform: rotate(224deg);
}
.top-menu-area {
    background-color: var(--dark-blue);
    padding-top: 6px;
}
.top-menu ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-menu ul li:first-child a{
    background-color: #18416A;
    padding: 0 8px;
}
header.site-header a {
    color: var(--white-color);
}
.top-menu ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    min-height: 50px;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
}
.main-menu-wrapper {
    background: var(--header-gradient-bg);
    min-height: 82px;
    border-radius: 0 0 30px 30px;
    transition: all 0.3s;
}
.active-menu .main-menu-wrapper {
    border-radius: 0 0 0 30px;
}
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 12px 32px 12px 28px;
}
.site-logo a {
    width: 100%;
}
.site-logo img {
    width: 44px;
}
nav.navmenu ul {
    display: flex;
    align-items: center;
    height: 100%;
}
.main-menu {
    height: 100%;
}
.main-menu nav.navmenu {
    height: 100%;
}
nav.navmenu > ul > li > a {
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 0 32px 0 12px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}
nav.navmenu > ul > li > a::after {
    content: '';
    position: absolute;
    right: 11px;
    top: 50%;
    border-right: 1px solid var(--pink-red);
    border-bottom: 1px solid var(--pink-red);
    height: 8px;
    width: 8px;
    transform: translateY(-75%) rotate(45deg);
}
li.menu-item-has-children {
    position: relative;
    padding: 8px 0;
}
li.menu-item-has-children .submenu {
    position: absolute;
    top: 86%;
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 240px;
    max-width: max-content;
    padding: 28px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
nav.navmenu > ul > li.menu-item-has-children:hover > a + .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
li.menu-item-has-children .submenu ul {
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}
li.menu-item-has-children .submenu ul li {
    width: 100%;
}
li.menu-item-has-children .submenu ul li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    padding: 0 16px;
    min-width: max-content;
    width: 100%;
    display: block;
    max-width: 100%;
    transition: all 0.2s;
}
li.menu-item-has-children .submenu ul li a img {
    margin-right: 8px;
}
li.menu-item-has-children .submenu ul li a:hover {
    color: var(--dark-blue);
    background-color: var(--white-color);
}
.hamburger-menu-area {
    margin-left: 24px;
}
.hamburger-menu-area, .search-and-subscribe {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.search-something {
    background: var(--white-color);
    padding: 8px 14px 7px 14px;
    position: relative;
    border-radius: 10px;
}
.search-something button {
    border: none;
    padding: 0;
    background: no-repeat;
    max-width: 18px;
    margin-right: 4px;
}
.search-something input[type="search"] {
    border: none;
    outline: none;
    background: var(--white-color);
    font-size: 14px;
    line-height: 19px;
    color: #050e3c;
    max-width: 106px;
    padding: 0;
}
.search-something input[type="search"]::-webkit-search-decoration,
.search-something input[type="search"]::-webkit-search-cancel-button,
.search-something input[type="search"]::-webkit-search-results-button,
.search-something input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.search-something input[type="search"]::-moz-search-clear {
    display: none;
}
.hamburger-menu {
    position: relative;
}
.hamburger-menu button.hamburger {
    width: 92px;
    border: none;
    background: no-repeat;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 26px;
    height: 100%;
    align-items: center;
    background: var(--pink-red);
    border-radius: 0 0 30px 0;
        position: relative;
}
.hamburger-menu button.hamburger span {
    width: 100%;
    height: 4px;
    background-color: var(--white-color);
    position: relative;
    transition: all 0.3s;
    display: block;
    top: 0;
}
.active-menu button.hamburger span:first-child {
    transform: rotate(45deg);
    top: 8px;
    width: 30px;
}
.active-menu button.hamburger span:nth-child(2) {
    width: 0;
}
.active-menu button.hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: -12px;
    width: 30px;
}
.hamburger-menu button.hamburger p.menu-icon {
    font-size: 10px;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.active-menu .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--black-color);
    opacity: 0.3;
}
.menu-lists {
    position: absolute;
    right: 0;
    background: var(--header-gradient-bg);
    width: 320px;
    padding: 0 16px;
    height: 562px;
    overflow: auto;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}
.active-menu .menu-lists {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.all-menu-list {
    padding: 16px 0 80px;
}
.menu-lists::-webkit-scrollbar, .options-container::-webkit-scrollbar {
  width: 5px;
  height: 70%;
}
.menu-lists::-webkit-scrollbar-track, .options-container::-webkit-scrollbar-track {
  background:transparent;
}
.menu-lists::-webkit-scrollbar-thumb, .options-container::-webkit-scrollbar-thumb {
  background: #555555;
  background-clip: padding-box;
}
.menu-lists::-webkit-scrollbar-thumb:hover, .options-container::-webkit-scrollbar-thumb:hover {
  background: #444;
}
.menu-lists::-webkit-scrollbar {
  background: transparent;
}
.search-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-area .search-something {
    border-radius: 0;
}
.search-area .search-something form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-area .search-something input[type="search"] {
    max-width: 100%;
    width: 100%;
}
.search-area .search-something button {
    margin-right: 8px;
}
.search-area a {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}
.custom-hr {
    background-image: var(--top-bg);
    height: 1px;
    width: 100%;
    margin: 8px 0;
    border: none;
    opacity: 1;
}
.all-menu-list a {
    font-size: 14px;
    font-weight: 400;
    padding: 0 4px;
    display: block;
    line-height: 20px;
    transition: none;
}
.all-menu-list a:hover {
    background-color: var(--white-color);
    color: var(--dark-blue);
}
.all-menu-list .image-area {
    max-width: 100px;
}
.all-menu-list .image-area a:hover {
    background: none;
}
.all-menu-list .image-area img {
    margin-bottom: 4px;
}
.awards-links a {
    margin-left: 16px;
}
.all-menu-list  h6 {
    font-family: var(--heading-font);
    font-weight: 400;
} 
.main-menu-on-mobile > ul > li > a {
    position: relative;
    text-transform: uppercase;
    font-family: var(--heading-font);
}
.main-menu-on-mobile > ul > li > a:hover {
    background-color: transparent;
    color: var(--white-color);
}
.main-menu-on-mobile > ul > li > a::after {
    content: '';
    position: absolute;
    right: 11px;
    top: 50%;
    border-right: 1px solid var(--pink-red);
    border-bottom: 1px solid var(--pink-red);
    height: 8px;
    width: 8px;
    transform: translateY(-75%) rotate(45deg)
}
.main-menu-on-mobile > ul > li .submenu {
    padding-left: 16px;
}
.all-menu-list .about a, .all-menu-list .extra-links a {
    font-family: var(--heading-font);
    text-transform: uppercase;
}

/* site footer style */
footer.site-footer {
    background: var(--header-gradient-bg);
    padding: 16px 0 48px;
    text-align: center;
}
footer.site-footer h1 {
    font-size: 80px;
    text-transform: uppercase;
    opacity: 0.1;
    line-height: 115px;
    color: var(--white-color);
}
.footer-brand-logos {
    padding: 24px 0;
}
.footer-brand-logos img {
    max-width: 145px;
}
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.footer-menu {
    max-width: 1080px;
    margin: 32px auto;
    padding-left: 24px;
}
.single-menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.single-menu-item p, .single-menu-item a {
    font-size: 14px;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--pink-red);
    text-align: left;
}
.single-menu-item a {
    color: var(--white-color);
}
.single-menu-item a:hover {
    color: rgb(242 95 208);
}
.social-link-area {
    padding: 16px 0;
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.social-links a {
    height: 28px;
    width: 28px;
    background-color: var(--pink-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
}
.social-links a i {
    color: var(--white-color);
    font-size: 12px;
}
footer.site-footer p.large-text {
    color: var(--white-color);
    line-height: 1.5;
    font-size: 14px;
    opacity: 0.6;
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* hero section  */
.hero-section {
    background-image: url(../img/hero-bg.webp);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    height: 100%;
    padding: 190px 0 48px;
    border-bottom: 1px solid var(--text-color);
}
.hero-content {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-content h1 span {
    display: block;
    color: #CD8401;
}
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-content .btn-group a.yellow-btn {
    padding: 12px 31px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--heading-font);
    text-transform: uppercase;
}
.hero-img {
    width: 100%;
    position: relative;
}
.hero-img a.watch-video {
    position: absolute;
    right: 30px;
    bottom: 75px;
}
.hero-img a.watch-video .play-icon {
    background-color: #FEE462;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    border: 1px solid var(--text-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.hero-img a.watch-video .play-icon img {
    max-width: 40px;
    margin-left: 10px;
}
.hero-img a.watch-video span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--heading-font);
    padding: 9px 16px 9px 87px;
    border: 1px solid var(--text-color);
    border-radius: 100px;
    background-color: #F0A703;
    color: var(--white-color);
}

/* franchise-opportunity-section */
section.franchise-opportunity-section {
   background: linear-gradient( to bottom, var(--white-color) 0%, var(--white-color) calc(100% - 280px), var(--off-white) calc(100% - 280px), var(--off-white) 100%); 
}
.match-filter-area h4 {
    color: var(--text-color);
    display: inline-block;
    padding-bottom: 4px;
    font-weight: 800;
}
.filter-franchise {
    display: flex;
    border: 1px solid var(--text-color);
    background-color: #F9F7F3;
}
.single-filter-field {
    flex: 1;
    display: flex;
    padding: 8px 0 8px 8px;
    border-right: 1px solid #E5E7EB;
}
.single-filter-field:nth-child(3) {
  border-right: none;
}
.serial-number {
    padding-left: 4px;
}
.serial-number span {
    font-size: 64px;
    line-height: 72px;
    font-weight: 500;
    font-family: var(--heading-font);
    color: #00284e30;
}
.single-filter-content {
    flex: 1;
    position: relative;
}
.single-filter-content h6 {
    font-family: var(--roboto-font);
    color: var(--yellowish-orange);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.6px;
    padding: 0 16px;
    max-width: 215px;
}
.single-filter-content button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: no-repeat;
    padding: 0 16px 6px;
}
.single-filter-content button span {
    display: inline-block;
    color: #4f4f4f;
    font-weight: 700;
    font-family: var(--roboto-font);
    font-size: 16px;
    line-height: 19.6px;
}
.single-filter-content button svg {
    max-width: 16px;
}
.options-container {
    position: absolute;
    top: 100%;
    left: 0px;
    background: rgb(241, 243, 243);
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border-radius: 0px 0px 12px 12px;
    display: none;
    z-index: 1500;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.single-checkbox {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.single-checkbox input {
    width: 18px;
    height: 18px;
}
.single-checkbox span {
    font-family: var(--robot-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #4f4f4f;
}
.single-checkbox:hover {
    background-color: #C9CFD4;
    cursor: pointer;
}
.search-matches-franchise {
    flex: 0 0 94px;
}
.search-matches-franchise button {
    border: none;
    background-color: var(--text-color);
    height: 100%;
    font-size: 18px;
    line-height: normal;
    color: var(--white-color);
    font-family: var(--heading-font);
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.single-franchise-opportunity {
    box-shadow: -3px 2px 10px 0 rgba(0,0,0,.11);
    border: 1px solid var(--text-color);
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white-color);
}
.ribbon {
    position: absolute;
    top: 0;
    right: 20px;
}
.ribbon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 10;
    color: #f1f1f1;
    font-size: 8px;
    text-align: center;
    padding: 8px;
}
.single-franchise-opportunity .top-image-area {
    padding: 8px;
    max-width: 257px;
    min-height: 130px;
}
.single-franchise-opportunity .top-image-area .image-wrapper {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.single-franchise-opportunity .top-image-area img {
    max-height: 115px;
}
.content-area {
    margin: 16px 12px 8px;
    background-color: var(--off-white);
    padding: 12px 16px 14px;
}
.content-area h4 {
    font-size: 18px;
    line-height: 20.8px;
    margin-bottom: 16px;
}
.content-area .content-details {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.content-area .content-details p {
    display: flex;
    align-items: center;
    gap: 8px;
}
.content-area .content-details p span {
    font-size: 12px;
    color: var(--black-color);
}
.content-area .content-details p img {
    max-width: 27px;
}
a.details-link {
    display: flex;
    gap: 0;
    border: 1px solid var(--text-color);
    min-height: 62px;
}
a.details-link p {
    flex: 1;
    padding: 10px 24px;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--yellowish-orange);
    line-height: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
}
a.details-link span {
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ccc;
}
a.details-link span img {
    max-width: 20px;
}
a.details-link span.blue-bg {
    background-color: var(--text-color);
}
.bg-off-white {
    background-color: var(--off-white);
    position: relative;
}
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-pagination span svg {
    height: 20px;
    width: 20px;
    line-height: 10px;
}
.custom-pagination span {
    color: rgb(117 139 159 );
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    font-weight: 800;
    font-family: var(--montserrat);
}
.custom-pagination span:first-child, .custom-pagination span:last-child {
    padding: 8px 4px;
}
.custom-pagination span:nth-child(2) {
    padding: 8px 24px 8px 4px;
}
.custom-pagination span:nth-last-child(2) {
    padding: 8px 8px 8px 24px;
}
.custom-pagination span.active {
    color: rgb(204 132 0)!important;
}

/* join-growth-club-section */
section.join-growth-club-section {
    padding: 40px 0;
    text-align: center;
}
.single-brand-logo {
  width: 167px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-logo-carousel .owl-carousel .item {
  margin: 0;
  padding: 0;
}
.growth-club-content h2 {
    margin-bottom: 24px;
}
.growth-club-content p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 18.5px;
    color: #4f4f4f;
}
.brand-logo-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.carousel-bottom-link a.yellow-btn {
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    font-family: var(--heading-font);
    padding: 13px 51px 12px;
    border: 1px solid var(--text-color);
}
.carousel-bottom-link a.yellow-btn:hover {
    background: transparent;
}

/* video-library-section */
section.video-library-section {
    padding: 32px 0;
}
h2.styling-heading {
    margin-bottom: 32px;
    display: flex;
    gap: 9px;
}
h2.styling-heading img {
    max-height: 37px;
    margin-top: 7px;
    max-width: 30px;
}
h2.styling-heading span.custom-vr {
    width: 2px;
    height: 19px;
    color: #9D9C9C;
    background-color: #4E4E4E;
    font-size: 21px;
    margin-left: 8px;
    margin-right: 14px;
    margin-top: 11px;
}
h2.styling-heading span.top-text {
    color: #4F4F4F;
    font-size: 24px;
    line-height: 32px;
}
.video-library-content p {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 16px;
    color: #4F4F4F;
}
.main-video-library {
    padding: 24px 0;
}
.intro {
    padding-bottom: 16px;
}
.intro h2.styling-heading {
    margin: 0;
}
.intro > a {
    display: block;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 1px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: var(--text-color);
}
.library-videos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.library-videos .single-video {
    position: relative;
}
.library-videos .single-video :is(a, img) {
    width: 100%;
}
.library-videos .single-video .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 45px;
    cursor: pointer;
    background-color: rgba(0,0,0,.4);
}
.fancybox-is-open .fancybox-bg{
    background: rgb(107 114 128);
    opacity: 0.75!important;
}
.video-library-content .custom-pagination span {
    color: var(--text-color);
}

/* buy-franchise-section */
section.buy-franchise-section {
    padding: 24px 0 300px;
}
.franchise-tab-area ul.custom-tab {
    display: flex;
    margin-bottom: 24px;
}
.franchise-tab-area ul.custom-tab li {
    flex: 1 1 33%;
}
.franchise-tab-area ul.custom-tab li button {
    width: 100%;
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    line-height: 21.6px;
    padding: 12px 0;
    color: #B6B6B6;
    border: 2px solid #b6b6b6;
    background-color: var(--white-color);
}
.franchise-tab-area ul.custom-tab li button.active {
    color: var(--text-color);
    border: 2px solid var(--text-color);
}
.single-article img {
    width: 100%;
}
.list-articles a {
    width: 100%;
}
.single-article div.title {
    padding: 8px 12px;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 0 0 11px 11px;
    min-height: 70px;
}
.single-article div.title h4 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #4F4F4F;
}

/* why-growth-club-section */
section.why-growth-club-section {
    position: absolute;
    bottom: -235px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 20;
}
.why-growth-club {
    background: #F9F7F3;
    border: 1px solid var(--text-color);
    padding: 28px 24px;
    position: relative;
}
.section-title {
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 32px;
    text-transform: capitalize;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}
.single-benefit {
    text-align: center;
    position: relative;
    padding: 28px;
}
.single-benefit::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    border-right: 1px solid var(--text-color);
}
.single-benefit:last-child::before {
  border: none;
}
.single-benefit img {
  width: 85px;
  height: 85px;
  display: block;
  margin: 0 auto 1rem;
}
.single-benefit h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    font-family: var(--heading-font);
    text-transform: capitalize;
    margin-bottom: 8px;
}
.single-benefit p {
    font-family: 'Metropolis', sans-serif;
    font-size: 14px;
    color: #4E4E4E;
    line-height: 20px;
}
@media (max-width: 992px) {
    .benefits {
        grid-template-columns: 1fr;
    }
    .single-benefit::before {
        display: none;
    }
}

/* franchises-featured-section */
section.franchises-featured-section {
    padding: 300px 0 32px;
}
.featured-content-area {
    position: relative;
}
h2.featured-title {
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
}
.featured-carousel .single-franchise-opportunity {
    margin: 0 4px;
}
.featured-carousel .single-franchise-opportunity .top-image-area {
    width: 100%;
    max-width: 100%;
}
.featured-carousel .single-franchise-opportunity .top-image-area .image-wrapper {
    max-width: 100%;
    justify-content: center;
}
.featured-carousel .single-franchise-opportunity .top-image-area img {
    max-width: 180px;
}
.featured-carousel {
    max-width: 1215px;
    margin: 0 auto;
    padding: 0 90px;
}
.featured-navigation {
    position: absolute;
    left: 0;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 90px;
}
.featured-navigation button {
    border: none;
    background: no-repeat;
    max-width: max-content;
    padding: 0;
}
.featured-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
}
.featured-carousel .owl-dots button.owl-dot span {
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #ebebeb;
    border-radius: 12px;
    opacity: 0.5;
    transition: all 0.3s;
}
.featured-carousel .owl-dots button.owl-dot.active span {
    background-color: #d9d9d9;
}


/* testimonial-section */
section.testimonial-section {
    padding: 32px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-img {
    max-width: 400px;
}
.testimonial-content p.message {
    font-family: var(--robot-font);
    font-weight: 700;
    color: #4f4f4f;
    margin-bottom: 16px;
}
.testimonial-content h2 {
    margin-bottom: 16px;
}
.testimonial-content h5.name {
    font-family: var(--Metropolis-font);
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--text-color);
}
p.c-label {
    color: #CD8401;
    font-family: var(--roboto-font);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

/* contact-section */
section.contact-section {
    padding: 0 0 32px;
}
.contact-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 56px;
    background-color: var(--text-color);
}
.contact-area h4 {
    font-family: var(--Metropolis-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 20px;
}
.input-fields {
    display: flex;
    gap: 0;
}
.input-fields * {
    flex: 1;
    border: none;
    outline: none;
}
.input-fields button {
    max-width: max-content;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    color: var(--white-color);
    background-color: var(--yellowish-orange);
    padding: 15px 55px;
    border: none;
}
.input-fields input {
    font-family: var(--roboto-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    padding: 15px 8px 15px 40px;
    background: var(--white-color);
}
.input-fields input[type="text"] {
    border-right: 1px solid #e5e7eb;
}