/* CSS Document */

br.desktop, span.desktop {display: inline;}
br.mobile, span.mobile {display: none !important;}
br.tablet, span.tablet {display: none !important;}
.hamburger-wrapper {display: none;}

body, html {
	padding: 0;
	margin: 0;
    font-family: "Bebas Neue Pro", sans-serif;
	font-size: 22px;
}
button {font-size: 20px;}

/* CONTAINERS */
section {
	padding: 75px 0;
}
.menu-container, .hero-container, .cta-container, .what-container {
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}
.section-container {
	max-width: 800px;
	margin: 0 auto;
}
 
h1, h2, h3 {
	text-align: center;
	font-weight: 600;
    text-shadow: -0.025em 3px 0px #000000;
	-webkit-text-fill-color: white;
	-webkit-text-stroke-width: 0.75px;
	-webkit-text-stroke-color: black;
	font-family: BobbyJonesRegular;
}
h1 {
	font-size: clamp(2.5rem, 3vw, 2.5rem);  /* Responsive size */
	margin: 25px 0 35px;
}
h1 span {
    font-size: clamp(4.25rem, 3vw, 2.5rem);  /* Responsive size */
    -webkit-text-fill-color: red;
    -webkit-text-stroke-color: white;
}
h2 {
	font-size: clamp(2.15rem, 3vw, 2.15rem);  /* Responsive size */
	margin: 0 0 45px;
    -webkit-text-fill-color: gold;
}
h2 span.underline {
    text-underline-offset: 8px;
 
    text-decoration-thickness: 5px;	
}
h2 span.white {
    -webkit-text-fill-color: white;
}
p {
    line-height: 1.35;
    margin: 0 0 35px;
}
p:last-child, ul:last-child {
    margin-bottom: 0;
}
p.quotes {
    display: block;
    padding-left: 25px;
    border-left: solid darkgrey 7px;
    font-style: italic;
}
a {
    color: #1a63f8;
    font-weight: bold;
}
ul, p.quotes {
    margin-bottom: 35px;
}
li {
    margin-bottom: 11px;
    list-style: inside;
}
li:last-child {margin-bottom: 0;}

ul.custom-bullets li {
    list-style: none;
}
ul.not-text, ul.not-text li {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.three li {
    width: 32%;
    margin-right: 2%;
    float: left;
}
ul.three li:last-of-type {
    margin-right: 0;
}
ul.two li {
    width: 49%;
    float: left;
    margin-top: 15px;
}
ul.two li:nth-child(even) {
    float: right;
}
ul.two li:nth-child(-n+2) {
  margin-top: 0;
}

@media (max-width: 1023px) {
    br.desktop, span.desktop {display: none !important;}
    br.mobile, span.mobile {display: inline !important;}
    section {
        padding: 50px 15px;
    }
    h1 {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        margin: 25px 0 25px;
    }
    h1 span {
        display: block;
        font-size: clamp(3.25rem, 3vw, 3.25rem);  /* Responsive size */
        line-height: 1;
        margin-top: 25px;
        -webkit-text-stroke-width: 2px;
    }
    h2 {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        margin: 0 0 35px;
    }
    p.quotes span {
        display: inline-block;
        margin-bottom: 15px;
    }
    p.quotes span:last-child {
        margin-bottom: 0;
    }
    ul {
        padding-left: 0;
    }
}


.check {
    color: #00cc66; /* Modern green, or change to match your brand */
    font-weight: bold;
    font-size: 1.35em;
    display: inline-block;
    transform: translateY(-1px); /* slight vertical adjustment */
}

img {
	max-width: 100%;
	height: auto;
}
section.yellow, div.yellow {background-color: gold;}
section.blue {background-color: #1a63f8;}
section.grey {background-color: #f5f5f5;}
section.white {background-color: white;}
section.green {background-color: #2ecc71;}
span.underline {text-decoration: underline;}


/* BUTTONS */
.gopremium-button-wrapper {
	text-align: center;
}
.gopremium-button-wrapper.final {
    margin-top: 75px;
}
.gopremium-button {
    display: inline-block;
    padding: 12px 24px;
  	background-color: #2ecc71;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}
.gopremium-button:hover {
	background-color: gold;
	color: black;
	transform: translateY(-2px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}
.gopremium-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


/* MENU */
#menu {
	padding: 15px 0 10px;
}
#menu a {
	color: black;
	text-decoration: none;
}
#menu a:hover {
	text-decoration: underline;
}
#menu .logo {
	width: 100px;
	float: left;
}
#menu .logo.circle {
	float: right;
}
#menu ul {
	display: inline-block;
	padding: 0;
	margin: 32px 0 0;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
#menu li {
	display: inline;
	list-style: none;
	padding: 0 35px;
}
#menu li:first-child {
	padding-left: 0;
}
#menu li:last-child {
	padding-right: 0;
}

.hamburger-menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: white;
}

.hamburger-logo img {
  height: 60px;
}

.hamburger-toggle {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px 10px;
}

.hamburger-dropdown {
  display: none;
  background-color: white;
  padding: 0;
  text-align: center;
}

.hamburger-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hamburger-dropdown ul li {
  margin: 0;
  background-color: #dcdcdc;
  padding: 12px 0;
}
.hamburger-dropdown ul li:nth-child(even) {
  background-color: #f5f5f5; 
}

.hamburger-dropdown ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.hamburger-dropdown.show {
  display: block;
}


/* SECTION: HERO */

.hero .banner-container {text-align: center;}
.hero .banner {
	display: inline-block;
	padding: 7px 10px;
	text-transform: uppercase;
	font-size: 23px;
}
.hero .video {
	max-width: 900px; /* same as section-container */
	margin: 0 auto;
	background: white;
}
.hero .description {
	text-align: center;
	margin: 25px 0 35px;
	color: white;
    filter: drop-shadow(1px 1px 1px black);
    line-height: 1.35;
}

/* SECTION: JORDAN */

.jordan .image {
    max-width: 250px;
    margin: 10px 35px 22px 0;
    float: left;
}
.jordan p:first-of-type {
    padding-top: 15px;
}
.jordan p.clear-image {
    clear: both;
}


/* SECTION: INTRODUCE */

.introduce h2 {
    font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
    filter: drop-shadow(1px 1px 2px black);
    text-shadow: none;
    -webkit-text-fill-color: white;    
}
.introduce h2 span {
    -webkit-text-fill-color: red;
    -webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 0.35px;
    font-size: clamp(3rem, 3vw, 3rem);  /* Responsive size */
}
.introduce .intro {
    text-align: center;
    margin-bottom: 20px;
}
.introduce .intro p {
    
}
.introduce .logos {
    overflow: hidden;
    margin-bottom: 25px;
    filter: drop-shadow(1px 1px 3px black);
}
.introduce .logo {
    max-width: 275px;
}
.introduce .logo.elite {
    float: left;
    margin-left: 75px;
}
.introduce .logo.circle {
    float: right;
    margin-right: 75px;
}
.introduce .warning {
    font-weight: bold;
    text-align: center;
    font-size: 120%;
}
.introduce .warning .icon {
    filter: drop-shadow(1px 1px 2px black);
}

@media (max-width: 1023px) {
    .jordan .image {
        margin: 0 auto 25px;
        float: none;
    }
    .introduce .logos {
        margin-bottom: 15px;
    }
    .introduce h2 {
        font-size: clamp(1.5rem, 3vw, 1.5rem);  /* Responsive size */
    }
    .introduce h2 span {
        -webkit-text-stroke-width: 2px;
        font-size: clamp(3rem, 3vw, 3rem) !important;  /* Responsive size */
    }
}
/* SECTION:  WHAT (OLD) */

.membership-container {
    text-align: left;
    float: left;
}
.membership-container ul {
    margin-bottom: 0;
}
.membership-card {
    width: 48.5%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    float: left;
    margin-right: 3%;
    overflow:hidden;
}
.v2 .membership-container {
    float: none;
}
.v2 .membership-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* ← start same height */
}
.v2 .membership-card {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Each card shares row height */
.v2 .feature-card {    
      flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 360px; /* ← adjust this! */
  transition: all 0.3s ease; /* ← for smooth height change */
    
}

/* This ensures consistent height within each card */
.v2 .feature-card-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

/* Optional: Equal heights across rows */
.v2 .feature-card-container p {
    flex-grow: 1;
}

/* Responsive layout: 3/2/1 per row */
@media (min-width: 1024px) {
    .v2 .feature-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}

@media (max-width: 1023px) and (min-width: 600px) {
    .v2 .feature-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 599px) {
    .v2 .feature-card {
        flex: 1 1 100%;
    }
}

.membership-card.inner-circle {
    margin-right: 0;
}
.membership-card-container {
    padding: 20px;
}
.membership-card .logo {
    max-width: 125px;
    margin: 0 auto;
}
.membership-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.feature-card {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 18px;
    margin: 0 0 15px;
}
.feature-card:last-of-type {
    margin-bottom: 0;
}
.feature-title {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.feature-icon {
    margin-right: 10px;
}
.feature-card .logo {
    max-width: 135px;
    margin-left: 15px;
    margin-top: 20px;
    float: right;
}
.feature-card.conversation .logo {
    margin-top: -27px;
}
.feature-card p {
    margin-bottom: 0;
    font-size: 18px;
}
.feature-card p.clubs {
    float: left;
    display: inline-block;
}
.membership-container .accordion {
    margin-top: 10px;
}
.membership-container .accordion-button {
    background: none;
    border: none;
    font-size: 75%;
    cursor: pointer;
    padding: 4px 0;
    color: #1a63f8;
    font-weight: bold;
    margin-top: 18px;
}
.membership-container .accordion-content {
    display: none;
    font-size: 75%;
    margin-top: 10px;
    overflow: hidden;
}

/* SECTION:  WHAT V2 FINAL */

.v2 h2 {
    margin-bottom: 0;
    font-size: clamp(2.75rem, 3vw, 2.75rem);  /* Responsive size */
    -webkit-text-fill-color: white;
}
.v2 h3 {
    -webkit-text-stroke-color: black;
    -webkit-text-fill-color: gold;
	font-size: clamp(1.75rem, 3vw, 1.75rem);  /* Responsive size */
    margin: 0;
}
.v2 h3 span.plus {
    -webkit-text-fill-color: white;
}
.v2 .top {
    overflow: hidden;
    display: inline-block;
    margin: 0 auto 20px;
    color: white;
    font-weight: bold;
    line-height: 1.5;
}
.v2 .logo {
    width: 150px;
    margin: 0 auto;
}

.v2 .top p {
    text-transform: uppercase;
    margin: 0;
    font-size: 150%;
}

.v2 .whats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
    text-align: left;
}

@media (min-width: 700px) {
    .v2 .whats {
        grid-template-columns: 1fr 1fr;
    }
}

.v2 div.what {
    background: #fff;
    border-radius: 16px;
    border: solid black 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 0 25px;
    display: flex;
    flex-direction: column;

}
.v2 .what .benefit {
    font-size: 85%;
    margin-bottom: 15px;
}
.v2 .what .toggle-btn {
    background: none;
    border: none;
    color: #1a63f8;
    font-size: 95%;
    cursor: pointer;
    text-align: center;
    
    text-transform:  lowercase;
}
.v2 .what .toggle-btn:hover {
    text-decoration: underline;
}
.v2 .accordion {
    margin-top: 10px;
}
.v2 .accordion-button {
    background: none;
    border: none;
    font-size: 75%;
    cursor: pointer;
    color: #1a63f8;
    font-weight: bold;
    margin-top: auto; /* 🔥 This pushes the button to the bottom */
    text-align: left;
}
.v2 .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 15px;
}
.v2 .accordion-content p {
    font-size: 75%;
    margin-bottom: 15px;
}

.v2 .what.expanded .accordion-content {
  max-height: 1000px;
    padding-bottom: 18px;
}

.v2 .feature-icon {
    margin-right: 15px;
    font-size: 2em;
}
.v2 .feature-title {
    margin-bottom: 18px;
    padding-top: 17px;
}
.v2.inner-circle .feature-title {
    padding-top: 12px;
}
.v2 .what .price {
    display: block;
    text-align: center;
    font-size: 75%;
    font-style: italic;
    text-transform: lowercase;
}
.v2 .what.office-hours .price {
    margin-top: 20px;
}
.v2 .what.community .price {
    margin-top: 25px;
}
.v2 .what.conversation .logo, .v2 .what.comprehension .logo  {
    float: left;
    margin: -15px 18px 0 0;
    padding: 0;
    max-width: 140px;
}
.v2 .what.conversation .price, .v2 .what.comprehension .price  {
    font-size: 65%;
}
.video {
    margin: 0 auto;
    max-width: 1000px;
}

/* TESTIMONIALS */

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
    margin: 0 auto;
    align-items: start; /* ⬅️ This is the key */
}

@media (min-width: 700px) {
    .testimonials {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .testimonials {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    border: solid black 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 1.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial .logo {
    max-width: 75px;
    margin: 0 auto;
}
.testimonial p {
    font-style: italic;
    font-size: 95%;
    margin-bottom: 15px;
}
.testimonial span {
    display: block;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.35;
}
.testimonial-body {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.testimonial.expanded .testimonial-body {
    max-height: 2000px;
}
.testimonial .toggle-btn {
    background: none;
    border: none;
    color: #1a63f8;
    font-size: 95%;
    cursor: pointer;
    text-align: center;
    padding-top: 20px;
    text-transform:  lowercase;
}
.testimonial .toggle-btn:hover {
    text-decoration: underline;
}


/* SECTION:  WHO & WHO NOT */

.who li, .who-not li {
    margin-bottom: 35px
}


/* SECTION:  ORDER */

.order-box h2 {
    margin-bottom: 25px;
    -webkit-text-fill-color: white;
}
.order-box h2.founding {
    font-size: clamp(2.5rem, 3vw, 2.5rem);  /* Responsive size */
}
.order-box .message {
    color: white;
    margin: 50px 0 0;
    filter: drop-shadow(1px 1px 1px black);

}
.order-box .message h3 {
    font-size: clamp(2.25rem, 3vw, 2rem);  /* Responsive size */
    margin: 0 0 25px; 
    -webkit-text-fill-color: gold;
}
.order-box .message p {
    margin-bottom: 12px;
}
.order-box .message p:last-child {
    margin-bottom: 0;
}

.order-box .flex-container {
	display: flex;
	gap: 1.5em;
	flex-wrap: wrap;
}
.order-box .cta-box {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
    background: #fff;
    border-radius: 16px;
    border: solid black 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 1.2rem;
}
.order-box .cta-box h3 {
	font-size: clamp(2.75rem, 3vw, 2.5rem);  /* Responsive size */
}
.order-box .cta-container .logo {
	max-width: 150px;
	margin: 0 auto;
}
.order-box .price {
	text-align: center;
	font-size: 2rem;
    font-family: BobbyJonesRegular;
    -webkit-text-fill-color: black;
	-webkit-text-stroke-color: black;
    text-decoration-thickness: 0;
    margin: 10px 0 25px 0;
    line-height: 1;
}
.order-box .price .dollar {
    font-size: 50%;
}
.order-box .price small {
	display: block;
	font-size: 1.5rem;
    -webkit-text-fill-color: red;
    font-style: italic;
}
.order-box .price smaller {
	display: block;
	font-size: .875rem;
    margin: 2px 0 0 25px;   
    font-style: italic;
    -webkit-text-fill-color: #1a63f8;
}
.order-box ul, .order-box li {
    margin: 0;
    padding: 0;
}
.order-box ul {
    margin: 10px 0 20px;
}
.order-box li {
    padding: 17px 0;
    background-color: #dcdcdc;
}
.order-box li:nth-child(even) {
    background-color: #f5f5f5;   
}
.order-box li span {
    margin-right: 10px;
}
.order-box .secure {
    width: 95%;
    margin: 10px auto 0;
}
.order-box .gopremium-button {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1023px) {
    .v2 .whats, .testimonials, .order-box .flex-container {
        gap: 1rem;
    }
    .v2 .logo {
        width: 100px;
    }
    .v2 h2 {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        line-height: 1.15;
        margin-bottom: 25px;
    }
    .v2 h3 {
        font-size: clamp(1.5rem, 3vw, 1.5rem);  /* Responsive size */
        line-height: 1.15;
    }
    .v2 .what .price {
        font-size: 65%;
    }    
    .v2 .feature-title {
        font-size: 19px;
    }
    .v2 .feature-icon {
        font-size: 1.65em;
    }
    .v2 .what.conversation .logo, .v2 .what.comprehension .logo  {
        float: none;
        margin: 0 auto 5px;
        padding: 0;
    }
    .v2 .what.conversation p, .v2 .what.comprehension p {
        margin-bottom: 15px;
    }
    .v2 .what.comprehension .price.mobile, .v2 .what.conversation .price.mobile  {
        display: block !important;
        margin: 0 auto 0;
        padding: 0;
    }
    .v2 .what.comprehension .feature-title, .v2 .what.conversation .feature-title {
        margin-bottom: 0;
    }
    .order-box h2.founding {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        line-height: 1.35;
    }
    .order-box span.sirens {
        font-size: 300%;
    }
    .order-box .message p {
        text-align: left;
    }
    .order-box .cta-container .logo {
        max-width: 100px;
    }
    .order-box .cta-box {
        padding: .8rem;
    }
    .order-box li {
        font-size: 78%;
    }
    .order-box li span {
        margin-right: 5px;
    }
    .order-box .gopremium-button {
        font-size: 22px;
    }
    .faq .panel {
        padding: 20px 18px 18px;
    }
}


/* SECTION: GUARANTEE */

.guarantee .image {
	max-width: 150px;
	margin: 0 auto 5px;
}


/* SECTTION:  FAQ (ACCORDIAN) */
.faq .accordion {
	background: #f5f5f5;
	border-radius: 16px;
    border: solid 5px black;
	cursor: pointer;
	padding: 17px 18px 10px;
	width: 100%;
	text-align: left;
	outline: none;
	transition: 0.4s;
	font-family: BobbyJonesRegular;
    color: black;
}
.faq .accordion-case:nth-child(even) .accordion {
    background: black;
    color: white;
}
.faq .accordion-case {
	margin-top: 20px;
}
.faq .accordion-case:first-of-type {
	margin-top: 0;
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.faq .active, .accordion:hover {
	background: green !important;
    color: white !important;
}

/* Style the accordion panel. Note: hidden by default */
.faq .panel {
	padding: 20px 18px 18px;
	background: none;
	display: none;
	overflow: hidden;
}

.faq .accordion:after {
	content: '+'; /* Unicode character for "plus" sign (+) */
	font-size: 28px;
	float: right;
	margin-left: 5px;
	margin-top: -5px;
}
.faq .active:after {
	content: '-'; /* Unicode character for "minus" sign (-) */
	font-size: 28px;
}
/* ENDS FAQ ACCORDIAN STYLING */


@media (max-width: 1023px) {
    #menu {display: none;}
    .hamburger-wrapper {display: block;}
    .v2 .whats, .testimonials, .order-box .flex-container {
        gap: 1rem;
    }
    .v2 .logo {
        width: 100px;
    }
    .v2 h2 {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        line-height: 1.15;
        margin-bottom: 25px;
    }
    .v2 h3 {
        font-size: clamp(1.5rem, 3vw, 1.5rem);  /* Responsive size */
        line-height: 1.15;
    }
    .v2 .what .price {
        font-size: 65%;
    }    
    .v2 .feature-title {
        font-size: 19px;
    }
    .v2 .feature-icon {
        font-size: 1.65em;
    }
    .v2 .what.conversation .logo, .v2 .what.comprehension .logo  {
        float: none;
        margin: 0 auto 5px;
        padding: 0;
    }
    .v2 .what.conversation p, .v2 .what.comprehension p {
        margin-bottom: 15px;
    }
    .v2 .what.comprehension .price.mobile, .v2 .what.conversation .price.mobile  {
        display: block !important;
        margin: 0 auto 0;
        padding: 0;
    }
    .v2 .what.comprehension .feature-title, .v2 .what.conversation .feature-title {
        margin-bottom: 0;
    }
    .order-box h2.founding {
        font-size: clamp(2rem, 3vw, 2rem);  /* Responsive size */
        line-height: 1.35;
    }
    .order-box span.sirens {
        font-size: 300%;
    }
    .order-box .message p {
        text-align: left;
    }
    .order-box .cta-container .logo {
        max-width: 100px;
    }
    .order-box .cta-box {
        padding: .8rem;
    }
    .order-box li {
        font-size: 78%;
    }
    .order-box li span {
        margin-right: 5px;
    }
    .order-box .gopremium-button {
        font-size: 22px;
    }    
}

@media (max-width: 599px) {
    .faq .accordion.two {
        padding: 17px 18px 15px;
    }
    .faq .accordion.two:after {
        margin-top: -20px;
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    br.tablet {display: inline !important;}
    .v2.inner-circle h2 br.mobile, .v2.inner-circle h3 br.mobile {display: none !important;}
    .v2 .logo {
        width: 150px;
    }
    .v2 .accordion-button { 
        padding-left: 0
    }
    .v2 .what.office-hours .price {
        margin-top: 45px;
    }
    .who-not h2 br.mobile {display: none !important;}
    .order-box .flex-container {
        gap: .5rem;
    }
    .order-box .gopremium-button {
       font-size: 22px;
    }
    .faq .accordion.two br.mobile {
        display: none !important;
    }
}


