/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 24 2026 | 15:30:01 */
@use 'bootstrap-variables';
@use 'bootstrap-mixins';


/* Containers */

.has-global-section .vc_col-sm-12 {
    padding: 0 !important;
}
ol.flickity-page-dots {
    display: none;
}


/* Buttons */

.btn,
button,
input[type="submit"] {
	background-color: var(--button-bg-color, var(--button-primary-bg-color));
	color: var(--button-text-color, var(--button-primary-text-color));
	padding: 10px 20px;
	border: var(--button-border-width, 0px) solid var(--button-border-color, transparent);
	border-radius: var(--button-border-radius, 30px);
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	@include transition;

	@media (pointer: fine) {
		&:hover,
		&:focus {
			background-color: var(--button-hover-bg-color, var(--button-primary-hover-bg-color));
			color: var(--button-hover-text-color, var(--button-primary-hover-text-color));
		}
	}
}
.btn--secondary {
	--button-bg-color: var(--button-secondary-bg-color);
	--button-text-color: var(--button-secondary-text-color);
	--button-hover-bg-color: var(--button-secondary-hover-bg-color);
	--button-hover-text-color: var(--button-secondary-hover-text-color);
}
.global-btn {
    display: table;
    padding: 20px 40px;
    position: relative;
    border-radius: 50px;
    line-height: 1;
    font-weight: 500;
    color: #fff !important;
	z-index: 9;
}
.global-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(45.57% 100% at 51.39% 100%, #FF3533 0%, #A90100 100%);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px;
	transition: all .2s ease-out;
}
.global-btn:hover::before {
	transform: scale(1.02);
}
.global-btn.solid::before {
    background: var(--color-accent-red) !important;
}


/* Mobile Dock */

.mobile-dock {
    display: none;
}


/* Slide-in Quote Form */

.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.quote-drawer[aria-hidden="false"] {
  pointer-events: auto;
}
.quote-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 220ms ease;
}
.quote-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(520px, 92vw);
    background: #F0F0F0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -20px 0 40px rgba(0,0,0,0.25);
}
.quote-drawer[aria-hidden="false"] .quote-drawer__overlay {
  opacity: 1;
}
.quote-drawer[aria-hidden="false"] .quote-drawer__panel {
  transform: translateX(0);
}
.quote-drawer__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent !important;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    padding: 0;
    color: #00000080 !important;
}
.quote-drawer__content {
    padding: 40px;
}
.quote-drawer__content .reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 999px;
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
}
.quote-drawer__content .google-logo {
    width: 45px;
    height: 45px;
    display: block;
    margin: 0;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #00000021;
}
.quote-drawer__content .reviews-pill-text {
	display:flex;
	flex-direction:column;
	line-height:1;
}
.quote-drawer__content .reviews-top {
	display:flex;
	align-items:center;
	gap:8px;
}
.quote-drawer__content .rating {
    font-weight: 500;
    font-size: 20px;
    font-family: var(--font-family-heading);
    color: var(--color-accent-navy);
    transform: translateY(-3px);
    font-style: italic;
}
.quote-drawer__content .stars {
	color:#f4b400;
	font-size:.9rem;
	letter-spacing:2px;
}
.quote-drawer__content .reviews-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 600;
    color: var(--color-accent-navy);
}
.quote-drawer__header {
	position: relative;
}
.quote-drawer__header::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.25) 15%,
		rgba(0, 0, 0, 0.25) 85%,
		rgba(0, 0, 0, 0) 100%
	);
}
.quote-drawer__title {
    margin: 0 0 1rem;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    color: var(--color-accent-navy);
    font-weight: 400;
}
.quote-drawer__title em {
    font-weight: 500;
}
.quote-drawer__subtitle {
    color: var(--color-accent-navy);
    text-align: center;
    max-width: 250px;
    margin: 0 auto 1.5rem;
    padding-bottom: 1.5rem;
}
.quote-drawer__content .gform_heading {
    display: none;
}
.quote-drawer__content label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 12px 0 4px !important;
    display: block;
}
.quote-drawer__content label .gfield_required {
    font-weight: 100;
    padding-left: 2px;
}
.quote-drawer__content input,
.quote-drawer__content textarea {
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #00000026 !important;
    box-shadow: none !important;
}
.quote-drawer__content textarea {
    height: 100px;
}
body.quote-drawer-open {
  overflow: hidden;
}
.quote-drawer .gform_wrapper {
  margin: 0;
}
.gfield_visibility_hidden {
    display: none !important;
}
.quote-drawer__content #gform_submit_button_2 {
    background-color: transparent !important;
    border: none !important;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 14px !important;
    font-weight: 500;
}
.quote-drawer__content .gform-footer.gform_footer.top_label {
    position: relative;
    margin-top: 1rem;
}
.quote-drawer__content .gform-footer.gform_footer.top_label::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(45.57% 100% at 51.39% 100%, #FF3533 0%, #A90100 100%);
    top: 0;
    left: 0;
    border-radius: 50px;
    transition: all .2s ease-out;
    z-index: -1;
	transition: all .2s ease-out;
}
.quote-drawer__content .gform-footer.gform_footer.top_label:hover::before {
	transform: scale(1.015);
}


/* Header */

#header-outer {
    padding: 0 2rem;
}
#header-outer::before {
    content: "";
    position: absolute;
    background: #d4e8ff;
    background: linear-gradient(0deg, rgba(212, 232, 255, 0) 0%, rgba(0, 0, 0, 1) 150%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#header-outer img.starting-logo {
    transform: scale(2);
    transform-origin: top left;
}
#header-outer.transparent #top nav > ul > li > a,
#header-outer.transparent #top nav > .sf-menu > li > a {
	opacity: 1 !important;
}
#header-outer .menu-title-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}
#header-outer nav {
    margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.nav-cta-wrapper {
  	list-style: none;
}
.nav-cta-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #F0F0F0;
	padding: 8px;
	border-radius: 999px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	margin-left: 1rem;
}
.nav-cta-inner .reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 999px;
    justify-content: center;
}
.nav-cta-inner .google-logo {
    width: 45px !important;
    height: 45px !important;
    display: block;
    margin: 0 !important;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #00000021;
	margin-left: 5px !important;
}
.nav-cta-inner .reviews-pill-text {
	display:flex;
	flex-direction:column;
	line-height:1;
}
.nav-cta-inner .reviews-top {
	display:flex;
	align-items:center;
	gap:8px;
}
.nav-cta-inner .rating {
    font-weight: 500;
    font-size: 20px;
    font-family: var(--font-family-heading);
    color: var(--color-accent-navy);
    transform: translateY(-3px);
    font-style: italic;
}
.nav-cta-inner .stars {
	color:#f4b400;
	font-size:.9rem;
	letter-spacing:2px;
}
.nav-cta-inner .reviews-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 600;
    color: var(--color-accent-navy);
}
.nav-cta-inner .global-btn.nav-quote-btn {
    font-size: 16px;
}
.nav-cta-inner .global-btn:hover::before {
	transform: scale(1.01);
}
#header-outer.small-nav #logo img {
	height: 65px !important;
}
#header-outer .current_page_item .menu-title-text {
    color: #fff;
}
#header-outer .sub-menu .current_page_item .menu-title-text {
    color: unset;
}
#header-outer .sf-menu>.sfHover>ul, #header-outer .sf-menu>li:hover>ul {
    top: 133% !important;
}
#header-outer .menu-item.header-social {
    gap: 10px;
    padding: 0 8px;
}


/* Page Header */

#page-header .row-bg-overlay {
    opacity: .33 !important;
}
#page-header .ph-content {
    padding: 16rem 4rem 4rem;
}
#page-header .crumbs {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    color: #fff;
    letter-spacing: 2px;
	position: relative;
}
#page-header .crumbs::before {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2026/02/white-phtristar.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 40px;
    top: -50px;
    left: 0;
}
#page-header h1 {
    font-size: 45px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0 !important;
}


/* Specials CTA */

#specials-cta .special-rates {
    background-image: url(/wp-content/uploads/2026/02/course-sketch-scaled.jpeg);
    background-size: 50%;
    background-position: right;
    background-repeat: no-repeat;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: end;
    position: relative;
}
#specials-cta .special-rates::before {
    content: "";
    position: absolute;
    background: #d4e8ff;
    background: linear-gradient(270deg, rgba(212, 232, 255, 0) -150%, rgba(245, 245, 245, 1) 50%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#specials-cta .special-rates__content {
    max-width: 750px;
    z-index: 9;
}
#specials-cta .title {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 20px 0;
    color: var(--color-accent-navy);
}
#specials-cta .title em {
	font-style: italic;
}
#specials-cta .special-rates__tags {
    text-transform: uppercase;
    margin: 0;
    color: var(--color-accent-navy);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
}
#specials-cta .dot {
    margin: 0 12px;
    font-weight: 800;
    border-radius: 50%;
}
#specials-cta .special-rates__cta {
	flex-shrink: 0;
}


/* Courses Swiper */

#courses::before {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2026/02/courses-tristar.png);
    background-size: contain;
    width: 600px;
    height: 600px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 9;
}
#courses .eyebrow {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
#courses .title {
    font-size: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-accent-navy);
    line-height: 1;
    margin-bottom: 3rem;
}
#courses .title .big {
    font-style: italic;
    font-size: 80px;
    line-height: 0.6;
}
#courses .wpb_tabs_nav {
    background-color: #F0F0F0;
    display: table;
    margin: 0 auto;
    padding: 1rem !important;
    border-radius: 50px;
    border: 1px solid #0000001A;
}
#courses .wpb_tabs_nav .tab-item a {
    border-radius: 50px !important;
    font-size: 1rem;
    line-height: 1;
    padding: 14px 3rem;
    margin-right: 12px;
	background-color: #fff;
    color: #10294B87;
}
#courses .wpb_tabs_nav .tab-item.active-tab a {
    background-color: var(--color-accent-navy);
    color: #fff;
	border: none;
}
#courses .wpb_tabs_nav .tab-item:last-child a {
	margin-right: 0;
}
#courses .courses-swiper-wrapper {
	position: relative;
	padding: 60px 0;
}
#courses .courses-swiper {
	width: 100%;
}
#courses .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}
#courses .swiper-slide.swiper-slide-prev {
    transform: scale(0.95) translateX(10px);
}
#courses .swiper-slide.swiper-slide-next {
    transform: scale(0.95) translateX(-10px);
}
#courses .swiper-slide-active {
	opacity: 1;
}
#courses .course-card {
    position: relative;
    overflow: hidden;
    background-image: url();
    background-size: cover;
    background-position: center;
    height: 600px;
}
#courses .course-card::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}
#courses .course-card img {
	width: 100%;
	display: block;
}
#courses .course-overlay {
    position: absolute;
    right: 40px;
    bottom: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 80px);
	align-items: end;
}
#courses .course-overlay h3 {
	margin: 0 0 5px 0;
	font-size: 1.8rem;
}
#courses .course-overlay p {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 2px;
}
#courses .outline-btn {
	display: inline-block;
	padding: 10px 22px;
	border: 1px solid #fff;
	border-radius: 40px;
	color: #fff;
	text-decoration: none;
	font-size: 0.8rem;
}
#courses .courses-prev,
#courses .courses-next {
	position: absolute;
	bottom: -8px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
#courses .courses-pagination {
    text-align: center;
    margin-top: 2rem;
}
#courses .courses-prev {
    left: 44% !important;
    background-image: url(/wp-content/uploads/2026/02/right-arrow-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
	transform: rotate(180deg);
}
#courses .courses-next {
    right: 44%;
    background-image: url(/wp-content/uploads/2026/02/right-arrow-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
}


/* Google Reviews */

#google-reviews .nectar-flickity {
    margin-left: 50% !important;
}
#google-reviews .testimonial {
    background-image: url(/wp-content/uploads/2026/02/10-IMG_9444-scaled.jpg);
    background-size: cover;
    padding: 2.5rem;
    position: relative;
    color: #fff;
}
#google-reviews .testimonial::before {
    content: "";
    position: absolute;
    background: #d4e8ff;
    background: linear-gradient(180deg, rgba(212, 232, 255, 0) -180%, rgba(21, 49, 86, 1) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#google-reviews .testimonial .testimonial-inner {
    z-index: 99;
    position: relative;
}
.material blockquote::before,
#google-reviews .flickity-page-dots {
	display: none !important;
}
#google-reviews .testimonial .testimonial-inner blockquote {
    padding: 0;
    font-family: var(--font-family-heading);
    font-style: italic;
    font-size: 30px;
    max-width: 300px;
    line-height: 1;
}
#google-reviews .testimonial-body {
    font-size: 14px;
    margin-bottom: 1rem;
}
#google-reviews .testimonial-author {
    font-size: 12px;
    text-align: right;
    font-weight: 600;
    letter-spacing: 2px;
}
#google-reviews .nectar-carousel-fixed-content {
    margin-left: 10rem;
    padding: 0;
}
#google-reviews .reviews-block {
	max-width:520px;
}
#google-reviews .reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px 10px 10px;
    border-radius: 999px;
    background: #f3f3f3;
    margin-bottom: 24px;
    border: 1px solid #00000021;
}
#google-reviews .google-logo {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #00000021;
}
#google-reviews .reviews-pill-text {
	display:flex;
	flex-direction:column;
	line-height:1;
}
#google-reviews .reviews-top {
	display:flex;
	align-items:center;
	gap:8px;
}
#google-reviews .rating {
	font-weight:600;
	font-size:1rem;
}
#google-reviews .stars {
	color:#f4b400;
	font-size:.9rem;
	letter-spacing:2px;
}
#google-reviews .reviews-sub {
	font-size:.7rem;
	letter-spacing:1.5px;
	margin-top:4px;
	opacity:.7;
}
#google-reviews .title {
    font-size: 44px;
    margin: 0 0 18px 0;
    color: var(--color-accent-navy);
    line-height: 1;
}
#google-reviews .desc {
    line-height: 1.35;
    margin: 0;
    max-width: 300px;
    color: var(--color-accent-navy);
}


/* Bottom CTA */

#bottom-cta .cta-content {
    text-align: center;
    padding: 12rem 4rem 6rem;
    color: #fff;
}
#bottom-cta .cta-content .cta-eyebrow {
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-family-heading);
    font-size: 20px;
}
#bottom-cta h1 {
    font-size: 54px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 3rem;
}
#bottom-cta .cta-features {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1.2rem 0;
    max-width: 900px;
    margin: 0 auto 3rem;
}
#bottom-cta .cta-features::before,
#bottom-cta .cta-features::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	pointer-events: none;
}
#bottom-cta .cta-features::before {
	top: 0;
	background: linear-gradient(
		to right,
		transparent,
		#FFFFFF80 15%,
		#FFFFFF80 85%,
		transparent
	);
}
#bottom-cta .cta-features::after {
	bottom: 0;
	background: linear-gradient(
		to right,
		transparent,
		#FFFFFF80 15%,
		#FFFFFF80 85%,
		transparent
	);
}
#bottom-cta .cta-feature {
    display: flex;
    gap: 20px;
    padding-right: 1rem;
    margin-right: 2rem;
    border-right: 1px solid #FFFFFF80;
    align-items: center;
}
#bottom-cta .cta-features .cta-feature:last-child {
    padding-right: 0;
    margin-right: 0;
	border-right: none;
}
#bottom-cta .cta-icon {
    filter: brightness(0) invert(1);
    margin: 0 !important;
}
#bottom-cta .cta-feature p {
    text-align: left;
    font-size: 16px;
    line-height: 1;
	font-weight: 500;
}
#bottom-cta .cta-features .cta-feature:nth-child(1) p {
    max-width: 160px;
}
#bottom-cta .cta-features .cta-feature:nth-child(2) p,
#bottom-cta .cta-features .cta-feature:nth-child(3) p {
    max-width: 200px;
}
#bottom-cta .global-btn {
    margin: 0 auto 1rem;
}
#bottom-cta .google-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}
#bottom-cta .google-rating img {
    width: 25px !important;
    height: 25px !important;
    margin: 0 !important;
    background-color: #fff;
    border-radius: 50%;
    padding: 3px;
}
#bottom-cta .google-rating .rating-score {
    font-style: italic;
    font-family: var(--font-family-heading);
    font-size: 20px;
}
#bottom-cta .google-rating .stars {
    color: #F6B000;
}


/* Footer */

#footer::before {
    content: "";
    position: absolute;
    background-image: url(/wp-content/uploads/2026/02/footer-tristar.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 360px;
    height: 330px;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.site-footer{
  	padding:60px 40px 30px;
}
.footer-inner{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	gap:40px;
}
.footer-col{
  	min-width:200px;
}
.footer-logo {
    margin-bottom: 40px !important;
}
.footer-phone{
	margin:5px 0;
	font-size:14px;
}
.footer-heading {
    font-size: 12px;
    font-family: var(--font-family-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
    opacity: .6;
    position: relative;
    display: table;
}
.footer-heading::before {
    content: "";
    position: absolute;
    bottom: 50%;
    right: -140%;
    width: 160px;
    height: 1px;
    background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.6) 0%,
		rgba(255, 255, 255, 0.6) 60%,
		rgba(255, 255, 255, 0) 100%
	);
}
.footer-heading::before {
    content: "";
    position: absolute;
    bottom: 50%;
    right: -170px;
    width: 160px;
    height: 1px;
    background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.6) 0%,
		rgba(255, 255, 255, 0.6) 60%,
		rgba(255, 255, 255, 0) 100%
	);
}
.footer-heading.second::before {
    right: -170px;
}
.footer-heading.third::before {
    display: none;
}
.footer-phone a {
    color: #fff !important;
}
.footer-links{
	list-style:none;
	padding:0;
	margin:0;
}
.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-family: var(--font-family-heading);
}
.footer-links a:hover{
  opacity:0.8;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
	position: relative;
}
.footer-bottom::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.6) 20%,
		rgba(255, 255, 255, 0.6) 80%,
		rgba(255, 255, 255, 0) 100%
	);
}
.copyright {
    font-size: 12px;
    opacity: .7;
    margin: 0;
    letter-spacing: .5px;
}
.footer-social{
	display:flex;
  	gap:10px;
}
.social-icon {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #082141;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}
.social-icon:hover{
  	background: #0c2442;
}
.social-icon img {
    width: 14px !important;
    margin: 0 !important;
}
#copyright {
    display: none;
}



/* Mobile */

@media (max-width: 768px) {
	
	/* Mobile Dock */
	
	.mobile-dock {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #F5F5F5;
        padding: 14px 16px;
        box-shadow: 0 -6px 20px rgba(0,0,0,.12);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 99;
    }
    .mobile-dock .global-btn {
        width: 100%;
        text-align: center;
    }
	.mobile-dock .google-rating {
		display: flex;
		justify-content: center;
		gap: 8px;
		align-items: center;
	}
	.mobile-dock .google-rating img {
		width: 25px !important;
		height: 25px !important;
		margin: 0 !important;
		background-color: #fff;
		border-radius: 50%;
		padding: 3px;
	}
	.mobile-dock .google-rating .rating-score {
		font-style: italic;
		font-family: var(--font-family-heading);
		font-size: 20px;
	}
	.mobile-dock .google-rating .stars {
		color: #F6B000;
	}
    #ajax-content-wrap {
        padding-bottom: 120px !important;
    }
	
	/* Slide in Quote Form */
	
	.quote-drawer__panel {
		z-index: 9999;
	}
	.quote-drawer__close {
		z-index: 99;
	}
	.quote-drawer__content {
		padding: 20px;
	}
	.quote-drawer__title {
		font-size: 30px;
		margin: 0 0 10px;
	}
	.quote-drawer__subtitle {
		font-size: 14px;
	}
	
	/* Header Navigation */
	
	#header-outer {
		padding: 0 1rem !important;
	}
	#header-outer img.starting-logo {
		transform: scale(1.5) translateY(10px);
	}
	#header-outer a.closed,
	#header-outer a.open {
		position: relative;
		transform: translate(-10px, 20px) !important;
		display: block;
	}
	#header-outer a.closed::before,
	#header-outer a.open::before {
		content: "";
		position: absolute;
		background-color: var(--color-accent-red);
		width: 42px;
		height: 42px;
		left: -11px;
		bottom: -11px;
		border-radius: 50%;
		z-index: 0;
	}
	.nav-cta-inner {
		display: none;
	}
	#slide-out-widget-area a {
		font-family: var(--font-family-heading) !important;
		font-weight: 400 !important;
		line-height: 1 !important;
	}
	
	/* Btn Stars */
	
	.btn-stars {
		display: none;
	}
	
	/* Page Header */
	
	#page-header .ph-content {
		padding: 10rem 1.5rem 3rem;
	}
	#page-header h1 {
		font-size: 36px;
	}
	
	/* Specials CTA */

	#specials-cta .special-rates {
		padding: 4rem 1.5rem;
	}
	#specials-cta .title {
		font-size: 30px;
		text-align: center;
	}
	#specials-cta .special-rates__tags {
		text-align: center;
	}
	#specials-cta .special-rates__cta {
		margin: 0 auto;
		display: table;
	}
	
	/* Courses */
	
	#courses .eyebrow {
		margin-bottom: 12px;
	}
	#courses .title {
		font-size: 30px;
		padding: 0 1.5rem;
		margin-bottom: 2rem;
	}
	#courses .title .big {
		font-size: 40px;
	}
	#courses .wpb_tabs_nav {
		border-radius: 20px;
		padding: 10px !important;
		max-width: 200px;
		margin: 0 auto -2rem;
	}
	#courses .wpb_content_element .wpb_tabs_nav li {
		width: 100%;
	}
	#courses .wpb_tabs_nav .tab-item a {
		margin-right: 0;
		margin-bottom: 10px;
	}
	#courses .wpb_tabs_nav .tab-item:last-child a {
		margin-bottom: 0;
	}
	#courses .course-card {
		height: 400px;
	}
	#courses .course-overlay {
		flex-direction: column;
		text-align: center;
		align-items: anchor-center;
	}
	#courses .course-overlay h3 {
		margin: 0 0 5px 0;
		font-size: 24px;
	}
	#courses .outline-btn {
		margin: 0 auto;
	}
	#courses .courses-prev {
		left: 30% !important;
	}
	#courses .courses-next {
		right: 30% !important;
	}
	
	/* Google Reviews */
	
	#google-reviews .nectar-carousel-fixed-content {
		margin-left: 0;
		padding: 0 1.5rem;
	}
	#google-reviews .title {
		font-size: 30px;
	}
	#google-reviews .nectar-flickity {
		margin-left: 0 !important;
	}
	#google-reviews .nectar-flickity.nectar-carousel.nectar-carousel:not(.masonry) .flickity-viewport {
		margin: 20px 0 30px 0 !important;
		transform: scale(0.9) !important;
	}
	
	/* Bottom CTA */
	
	#bottom-cta .row-bg {
		background-position: 80% 50% !important;
		background-size: cover;
	}
	#bottom-cta .cta-content {
		padding: 6rem 1.5rem;
	}
	#bottom-cta .cta-content .cta-eyebrow {
		font-size: 18px;
		max-width: 230px;
		margin: 0 auto 12px;
	}
	#bottom-cta h1 {
		font-size: 40px;
	}
	#bottom-cta .cta-features {
		flex-direction: column;
		padding: 0;
	}
	#bottom-cta .cta-features::before,
	#bottom-cta .cta-features::after {
    	display: none;
	}
	#bottom-cta .cta-feature {
		padding-right: 0;
		margin-right: 0;
		border-right: none;
		justify-content: center;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
		position: relative;
		gap: 10px;
	}
	#bottom-cta .cta-feature::before {
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		pointer-events: none;
		bottom: 0;
		background: linear-gradient(
			to right,
			transparent,
			#FFFFFF80 15%,
			#FFFFFF80 85%,
			transparent
		);
	}
	#bottom-cta .cta-features .cta-feature:last-child {
		margin: 0;
		padding: 0;
	}
	#bottom-cta .cta-features .cta-feature:last-child::before {
		display: none;
	}
	#bottom-cta .cta-feature p {
		font-size: 12px !important;
		max-width: unset !important;
		transform: translateY(3px);
	}
	#bottom-cta .cta-icon {
		width: 18px;
	}
	
	/* Footer */
	
	#footer-outer {
		display: none !important;
	}
	#footer .footer-logo {
		display: none !important;
	}

}