/*
Theme Name: smartboost Child Theme
Version: 1.0
Description: A child theme of Understrap
Author: smartboost
Template: understrap
*/

@import url("../understrap/style.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* ********** GENERAL ********** */

:root {
	--beige:  #EDEDE7;
  	--orange: #F58C66;
	--black:  #202020;
	--white:  #FFFFFF;
}

html {
	margin-top: 0 !important;
}

body {
	font-family: 'Montserrat', sans-serif !important;
}

a {
	color: var(--black) !important;
	transition: all .5s;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.1em !important;
	font-weight: 600 !important;
}

h1 {
	font-size: 50px !important;
}

h2 {
	font-size: 36px !important;
	text-transform: uppercase;
}

h3 {
	font-size: 22px !important;
}

h4 {
	font-size: 20px !important;
}

h5 {
	font-size: 20px !important;
}

p {
	font-size: 17px !important;
	font-weight: 400;
}

p.p-small,
span.p-small {
	font-size: 16px !important;
}

.subtitle {
	font-size: 20px;
	font-weight: 600;
	color: var(--orange);
}

hr {
	opacity: 1 !important;
}

.btn-cta {
	display: inline-block;
	background-color: var(--orange);
	padding: 13px 18px;
	border: 2px solid var(--orange);
    border-radius: 5px;
	color: var(--white) !important;
	font-weight: 500;
	text-decoration: none;
	transition: all .5s;
}

.btn-cta:hover {
	background-color: var(--black);
	color: var(--white) !important;
	border-color: var(--black);
	transition: all .5s;
}

.btn-cta.btn-border-white:hover {
	border-color: var(--white) !important;
}

.btn-cta-transparent {
	background-color: transparent;
	border: 2px solid var(--black);
	color: var(--black) !important;
}

.btn-cta-transparent-white {
	background-color: transparent;
	border: 2px solid var(--white);
	color: var(--white) !important;
}

.search-input {
	background-color: transparent;
    border: 1.5px solid var(--white);
	color: var(--white);
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    max-width: 420px;
}

.home-hero .search-input {
	background-color: rgba(255, 255, 255, .15);
}

.search-input::placeholder {
  color: #fff !important;
}

.home-hero .search-input::placeholder {
  color: #fff !important;
}

.py-6 {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

.pt-6 {
	padding-top: 6rem !important;
}

.pb-6 {
	padding-bottom: 6rem !important;
}

.p-10 {
	padding: 7rem !important;
}

.bg-white {
	background-color: var(--white);
}

.bg-beige {
	background-color: var(--beige);
}

.container {
	max-width: 90% !important;
}

.mw-200 {
	max-width: 200px !important;
}

.mw-700 {
	max-width: 700px !important;
}

.mw-800 {
	max-width: 800px !important;
}

.mw-1280 {
	max-width: 1280px;
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}

/* ********** NAVIGATION ********** */

#wpadminbar {
	display: none !important;
}

header {
	position: fixed;
	width: 100%;
	height: 56px;
	top: 0;
	left: 0;
	z-index: 1000;
}

header .container {
	max-width: 90% !important;
}

.info-bar {
	background-color: var(--black) !important;
}

/* header.scrolled .info-bar {
	display: none;
} */

.announcement-bar a {
	text-decoration: none !important;
}

.scrolled .announcement-bar {
	background-color: var(--white);
}

.navbar {
	background-color: var(--black);
}

.navbar-brand img {
	max-width: 125px;
	width: auto;
}

.offcanvas-body li {
	margin: 0 12px;
}

.offcanvas-body .dropdown-menu li {
	margin: 0;
}

.offcanvas-body li a {
	font-size: 15px;
	color: var(--white) !important;
	transition: all .5s;
}

.offcanvas-body li.active a {
	color: var(--orange) !important;
}

.offcanvas-body li a:hover {
	color: var(--orange) !important;
	transition: all .5s;
}

.offcanvas-body .dropdown-menu li a {
	color: var(--black) !important;
	transition: all .5s;
}

.offcanvas-body .dropdown-menu li a:hover {
	color: var(--orange) !important;
	background-color: var(--white);
	transition: all .5s;
}

.nav-cta a {
	background-color: var(--orange);
	padding: 5px 25px 7px 25px;
	border: 2px solid var(--orange);
	border-radius: 5px;
	color: var(--white) !important;
	text-decoration: none;
	transition: all .5s;
}

.nav-cta a:hover {
	background-color: transparent;
	color: var(--white) !important;
	border-color: var(--white);
	transition: all .5s;
}

header.scrolled {
	background-color: var(--black);
}

header.scrolled .offcanvas-body li a:hover {
	color: var(--orange) !important;
	transition: all .5s;
}

.offcanvas {
	background-color: var(--black) !important;
}

.logo-offcanvas {
	display: none !important;
	display: block !important;
	margin-bottom: 20px !important;
	max-width: 225px;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.nav-cta-mobile {
	display: none !important;
}

@media (min-width: 992px) {
	
	#main-menu .dropdown-menu .dropdown-menu {
		right: -159px !important;
	}
	
}

@media (max-width: 991px) {
	
	.nav-cta-mobile {
		display: block !important;
	}
	
	.offcanvas-body .nav-cta-mobile a {
		color: var(--orange) !important;
	}
	
}

/* ********** HOME ********** */

.hero {
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 95px !important;
}

.home-hero {
	background-color: var(--beige);
	padding-top: 15%;
	padding-bottom: 15%;
}

#search-results {
	max-width: 420px;
}

#search-results ul {
	list-style-type: none;
}

#search-results .location-results,
#search-results .alert {
	background-color: rgba(255, 255, 255, .15);
	border: 1px solid #c5c5c5;
}

#search-results a:hover {
	color: var(--orange) !important;
	transition: all .5s;
}

#search-results a,
#search-results h4 {
	color: var(--white) !important;
}

.hero-features .col {
	width: 25%;
}

.home-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	z-index: -1;
}

.hero-home-desktop {
	height: calc(100vh - 95px);
}

.hero-img-desktop {
	object-fit: cover;
	height: calc(100% - 100px);
}

.hero-home-desktop .container {
	max-width: 100% !important;
	padding: 0;
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	color: white;
	z-index: 2;
	width: 100%;
	padding: 0 15px;
}

.page-template-about-us .hero-content {
	transform: translate(0, -50%);
	padding: 0 15px;
    left: 5%;
    max-width: 50%;
}

.home .hero-features,
.single-location .hero-features,
.page-template-about-us .hero-features {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	--bs-gutter-x: 0;
	padding-left: 5% !important;
}

.home-row-two .col-bg {
	background-size: cover;
	min-height: 820px;
}

.home-row-three .col-bg {
	background-size: cover;
	min-height: 820px;
}

.home-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-home-desktop {
	position: relative;
	z-index: 1;
}

.hero-bg-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-bg-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
	opacity: 1;
	z-index: 1;
}

/* Home Row Two */

.home-row-two .col-bg {
/* 	background-image: url('/wp-content/uploads/2024/10/bss_home_professional_perks_that_power_your_business.webp'); */
	background-size: cover;
	min-height: 820px;
}

.hero-features {
	font-size: 15px;
}

.col-content {
	padding: 0 5% !important;
	margin: 0 !important;
}

ul.list-unstyled {
	font-size: 17px;
}

ul.list-unstyled li {
	display: flex;
	border-bottom: 1px solid #EDEDE7;
    margin-bottom: 15px;
    padding-bottom: 15px;
	font-weight: 500;
}

ul.list-unstyled li:first-of-type {
	border-top: 1px solid #EDEDE7;
    margin-top: 15px;
    padding-top: 15px;
}

ul.list-unstyled li:last-of-type {
	margin-bottom: 0;
	border-bottom: none;
}

ul.list-unstyled li img {
	width: 24px;
	height: 24px;
}

.home-row-three .col-bg {
/* 	background-image: url('/wp-content/uploads/2024/10/bss_home_provide_comfortable_experience_for_clients.webp'); */
	background-size: cover;
	min-height: 820px;
}

.home-row-four img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home-row-five .col-md-4 {
	margin: 10px;
	width: calc(33.333% - 20px);
	border: 1px solid var(--black);
}

/* Video */

.video-wrapper {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
}

.play-button svg {
  width: 68px;
  height: 48px;
}

.play-button .shape {
  fill: #212121;
  fill-opacity: 0.8;
}

.play-button .icon {
  fill: #ffffff;
}

.play-button:hover .shape {
  fill: #ff0000;
  fill-opacity: 1;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-iframe iframe {
  width: 100%;
  height: 100%;
}

/* Map */

#california-map,
#michigan-map {
	border: 1px solid #c5c5c5 !important;
    border-radius: 5px;
}

.gm-style-iw.gm-style-iw-c {
	width: 300px !important;
/* 	height: 225px !important; */
}

.custom-info-window {
	padding: 15px;
	padding-right: 0;
	max-width: 100% !important;
}

.custom-info-window img {
	width: 15px !important;
}

.gm-style-iw-ch {
	padding: 0 !important;
}

.location-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

button.gm-ui-hover-effect {
	position: absolute !important;
	right: 0;
	top: 3.5px;
}

.gm-ui-hover-effect>span {
	opacity: .6 !important;
}

.gm-style .gm-style-iw-d {
	width: 90% !important;
}

.prev-btn, .next-btn {
	background: transparent;
	border: none;
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	cursor: pointer;
}

.prev-btn {
	padding-left: 0 !important;
}

.location-title {
	font-size: 18px !important;
	margin-top: 20px;
	margin-bottom: 10px;
}

.location-address {
	margin-bottom: 15px;
	font-size: 14px;
}

.learn-more-btn {
	display: inline-block;
	background: #f58c66;
	color: white;
	padding: 8px 20px;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.learn-more-btn:hover {
	background: #e47b55;
	color: white;
}

@media (max-width: 768px) {
	#locations-map {
		height: 300px;
	}

	.custom-info-window {
		max-width: 250px;
	}

	.home-row-six .container {
		max-width: 95% !important;
	}

	.home-row-six .col-sm-12 {
		padding: 0 !important;
	}

	.gm-style-iw.gm-style-iw-c {
		width: 325px !important;
		height: 225px !important;
	}
}

/* Home Row Seven */

.home-row-seven {
	background-image: url('/wp-content/uploads/2024/10/bss_why_choose_broadway.webp');
	background-size: cover;
	background-position: center;
}

.home-row-seven .col-lg-3 {
	background-color: rgba(255, 255, 255, .1);
	margin: 10px;
	width: calc(25% - 20px);
}

.home-row-eight .col-bg {
	background-size: cover;
	background-position: right;
	min-height: 1235px;
}

/* Row Testimonials */

.testimonial-container:last-of-type hr {
	display: none;
}

/* ********** LOCATIONS ********** */

.contact-row-locations img {
	height: 270px;
	object-fit: cover;
}

@media (max-width: 991px) {
	
	.contact-row-locations .col-lg-4.col-md-6.mb-4 img {
		height: 250px;
		object-fit: cover;
	}
	
}

/* ********** LOCATION SINGLE ********** */

.location-hero {
	padding-top: 40px;
	padding-bottom: 40px;
}

.modal-dialog {
	max-width: 75% !important;
}

.carousel-section {
	margin: 0 auto;
}
.carousel-section .carousel-item img {
	object-fit: cover;
	max-height: 800px;
}

.carousel-section .carousel-control-prev,
.carousel-section .carousel-control-next {
	opacity: 1 !important;
}

.carousel-section .carousel-control-prev-icon,
.carousel-section .carousel-control-next-icon {
	background-image: none !important;
	width: 45px !important;
	height: 45px !important;
}

.row-form iframe {
    height: 570px !important;
}

@media (max-width: 1496px) {
	
	.row-form iframe {
		height: 750px !important;
	}
	
}

@media (max-width: 920px) {
	
	.row-form iframe {
		height: 775px !important;
	}
	
}

/* ********** STUDIO TOURS ********** */

.hero-studio-tours {
	padding-top: 100px;
    padding-bottom: 40px;
}

/* ********** FAQ ********** */

.faq-hero {
    padding-top: 150px;
    padding-bottom: 50px;
	margin-top: 100px;
}

@media (max-width: 767px) {
	
	.faq-hero {
		padding-top: 50px;
		padding-bottom: 0px !important;
	}
	
	#faq-section .col-md-3,
	#faq-section .col-md-9 {
		padding: 0;
	}
	
}

.faq-hero .container {
	max-width: 1200px !important;
}

#faq-section .nav-link {
	background-color: var(--beige) !important;
}

#faq-section .nav-link.active {
	background-color: var(--black) !important;
	color: var(--white) !important;
	font-weight: bold;
}

#faqAccordion .accordion-item {
	border: none;
}

#faqAccordion .accordion-button,
#faqAccordion .accordion-body {
	background-color: var(--beige) !important;
}

.accordion-hr {
	color: var(--white);
}

#faqAccordion hr:last-of-type {
	display: none;
}

.accordion-button {
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	color: var(--black) !important;
}

.accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    width: auto;
    height: auto;
	font-size: 36px;
}

.accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

/* ********** GALLERY ********** */

.gallery-section.py-6 {
	padding-top: 250px !important;
	padding-bottom: 4rem !important;
}

/* ********** ABOUT ********** */

.about-hero {
	padding: 0 0 50px 0 !important;
	
}

/* .about-row-two .col-bg {
	background-image: url('/wp-content/uploads/2024/11/bss_about_why_choose_broadway.webp');
} */

.about-row-four {
/* 	background-image: url('/wp-content/uploads/2024/10/bss_about_find_broadway.webp'); */
	background-size: cover;
	background-position: left;
	height: 750px;
}

/* .home-row-three.about-row-three .col-bg {
	background-image: url('/wp-content/uploads/2024/11/bss_about_our_mission.webp');
}

.home-row-two.about-row-five .col-bg {
	background-image: url('/wp-content/uploads/2024/10/bss_about_us_the_broadway_experience.webp');
} */

.about-row-four input::placeholder,
.about-row-four textarea::placeholder {
    color: var(--white);
    opacity: 1;
}

.about-row-four .search-input {
	color: var(--white) !important;
	border-color: var(--white) !important;
}
 
.about-row-four #search-results .location-results, #search-results .alert {
	background-color: transparent;
}

.about-row-four #search-results a {
	color: var(--white) !important;
}

.about-row-four #search-results .text-muted {
	color: var(--white) !important;
}

/* ********** CONTACT ********** */

.contact-hero.py-6 {
	padding-top: 125px !important;
	padding-bottom: 4rem !important;
}

.contact-hero iframe {
    height: 600px !important;
}

@media (max-width: 748px) {
	
	.contact-hero iframe {
		height: 750px !important;
	}
	
}

@media (max-width: 459px) {
	
	.contact-hero iframe {
		height: 800px !important;
	}
	
}

/* ********** STUDIO TOURS ********** */

.gform_wrapper .gfield_radio .gchoice {
	margin-bottom: 20px;
}
.gform_wrapper .gfield_radio .location-name {
	display: block;
	font-weight: bold;
	margin-top: 5px;
}

.page-template-studio-tours .hero iframe {
	height: 690px;
}

.page-template-how-it-works .home-row-nine iframe {
	height: 650px !important;
}

@media (max-width: 1117px) {

	.page-template-studio-tours .hero iframe {
		height: 990px;
	}
	
}

.gform_wrapper .gfield_radio input[type="radio"] {
	margin-top: 10px;
}

/* ********** PRIVACY POLICY ********** */

.contact-policy .container {
	max-width: 1000px !important;
}

/* ********** FOOTER ********** */

footer {
	background-color: var(--black);
}

.footer-logo {
	max-width: 125px;
}

footer p {
	font-size: 14px !important;
	font-weight: 400;
}

footer h4 {
	text-transform: uppercase;
}

footer ul {
	list-style: none;
	padding-left: 0;
}

footer li a {
	font-size: 15px;
	color: var(--white) !important;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 5px;
}

.footer-contact {
	align-items: flex-start;
}

.contact-container {
	font-size: 15px;
}

.contact-container div {
	opacity: .7;
}

.contact-container img {
	position: relative;
	top: 1.5px;
}

.contact-container a {
	color: var(--white) !important;
	opacity: 1;
	text-decoration: none;
}

footer a {
	transition: all .5s;
}

footer a:hover {
	color: var(--orange) !important;
	transition: all .5s;
}

.subfooter {
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
}

.subfooter a {
	color: var(--white) !important;
}

.col-social a {
	margin-left: 17px;
}

.col-social a i:hover {
	border-color: var(--orange) !important;
}

.col-social i {
	padding: 7px;
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 20px;
}

/* ********** MEDIA QUERIES ********** */

@media (max-width: 1235px) {
	
	/* GENERAL */
	h1 {
		font-size: 35px !important;
	}
	
	h2 {
		font-size: 32px !important;
	}
	
	/* HOME */
/* 	.col-content {
		padding: 3rem !important;
	} */
}

@media (max-width: 1100px) {
	
	header .container {
		max-width: 98% !important;
	}
	
}

@media (min-width: 992px) {
	
	.col-content-container {
		max-width: 540px !important;
	}
	
}

/* TABLET */

@media (max-width: 991px) {
	
	/* GENERAL */
	h1 {
		font-size: 38px !important;
	}
	
	h2 {
		font-size: 28px !important;
	}
	
	h3 {
		font-size: 18px !important;
	}
	
	h4 {
		font-size: 18px !important;
	}
	
	p {
		font-size: 16px !important;
	}
	
	p.p-small,
	span.p-small {
		font-size: 14px !important;
	}
	
	.btn-cta {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.row-tablet-reverse {
		flex-direction: column-reverse;
	}
	
	.col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
	}
	
	.col-md-6.pe-5 {
		padding-right: calc(var(--bs-gutter-x) * .5) !important;
	}
	
	/* NAVIGATION */
	.nav-cta {
		display: none !important;
	}
	
	.navbar-brand img {
		max-width: 100px;
	}
	
	.offcanvas .dropdown-menu {
		background-color: var(--black) !important;
	}
	
	.offcanvas .dropdown-menu li a {
		color: var(--white) !important;
	}
	
	.offcanvas .dropdown-menu .dropdown-menu {
		display: block;
	}
	
	.nav-california a,
	.nav-michigan a {
		text-transform: uppercase;
		font-weight: bold;
	}
	
	.nav-california .dropdown-menu a,
	.nav-michigan .dropdown-menu a {
		text-transform: initial;
		font-weight: initial;
	}
	
	.nav-california .dropdown-menu,
	.nav-michigan .dropdown-menu {
		padding-top: 0;
	}
	
	/* HOME */
	.hero-features .col {
		flex: initial;
		width: 33.333%;
	}
	
	.hero-features .col:nth-of-type(4),
	.hero-features .col:nth-of-type(5) {
		width: 50%;
	}
	
	.hero-features .col .d-flex {
		justify-content: center;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	
	.home-row-two .col-bg,
	.home-row-three .col-bg {
		min-height: 400px;
	}
	
	.col-bg {
		min-height: 750px;
	}
	
	.col-content {
		padding: 2rem !important;
	}
	
	ul.list-unstyled {
		font-size: 16px;
	}
	
	.home-row-five .col-md-4 {
		width: calc(50% - 20px);
	}
	
	.home-row-five .col-md-4:last-of-type {
		width: 100%;
	}
	
	.location-row-six .col-md-4.p-5 {
		padding: 1.5rem !important;
	}
	
	.home-row-seven .col-lg-3 {
		width: calc(50% - 20px);
	}
	
	.home-row-eight .col-bg {
		min-height: 600px;
	}
	
	/* LOCATIONS */
	.location-hero h1 {
		font-size: 30px !important;
	}
	
	.location-row-two .col-md-6.ps-5,
	.location-row-eight .col-md-6.ps-5 {
		padding-left: 3rem !important;
	}
	
	.modal-dialog {
		max-width: 95% !important;
	}
	
	/* HOW IT WORKS */
	.hiw-row-two .col-md-6.ps-5 {
		padding-left: 3rem !important;
	}
	
	.hiw-row-three .col-md-6.pe-5 {
		padding-right: 3rem !important;
	}
	
	.home-row-five.hiw-row-four .col-lg-4 {
		width: 100% !important;
		margin-left: 0 !important;
	}
	
	/* GALLERY */
	.gallery-section.py-6 {
		padding-top: 150px !important;
	}
	
	/* FOOTER */
	.col-footer-logo {
		margin-bottom: 3rem !important;
	}
	
}

/* MOBILE */

@media (max-width: 767px) {
	
	/* GENERAL */
	h1 {
		font-size: 28px !important;
	}
	
	h2 {
		font-size: 22px !important;
	}
	
	h3 {
		font-size: 18px !important;
	}
	
	h4 {
		font-size: 16px !important;
	}
	
	p {
		font-size: 15px !important;
	}
	
	.btn-cta {
		padding: 10px 13px;
		font-size: 14px;
	}
	
	.row-mobile-reverse {
		flex-direction: column-reverse;
	}
	
	.container-fluid {
		max-width: 90% !important;
	}
	
	.py-6 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	
	.pt-6 {
		padding-top: 3rem !important;
	}
	
	.pb-6 {
		padding-bottom: 3rem !important;
	}
	
	.w-100-mobile {
		width: 100% !important;
	}
	
	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}
	
	/* NAVIGATION */
	.info-bar {
		display: none;
	}
	
	.navbar-brand img {
		max-width: 80px;
	}
	
	.offcanvas .dropdown-menu {
		background-color: transparent !important;
		padding-top: 0 !important;
	}
	
	.offcanvas .dropdown-menu a {
		color: var(--white) !important;
		padding: 0 !important;
	}
	
	.offcanvas-body .dropdown-menu li a {
		color: var(--white) !important;
	}
	
	.offcanvas-header {
		position: absolute;
		top: 20px;
		right: 20px;
	}
	
	.nav-logo-mobile {
		margin-bottom: 25px !important;
	}
	
	.nav-logo-mobile img {
		max-width: 125px;
	}
	
	/* HOME */
	.hero {
		margin-top: 70px !important;
	}
	
	.hero-features.mt-5 {
		margin-top: 1rem !important;
	}
	
	.hero-features .col {
		width: 100% !important;
	}
	
	.hero-features .align-items-center {
		justify-content: flex-start !important;
	}
	
	.home-hero-mobile {
		margin-top: 70px;
		display: block !important;
		background-color: var(--beige);
	}
	
	.hero-content {
		left: 50%;
	}
	
	.hero-home-desktop .hero-features {
		display: none;
	}
	
	.hero-home-desktop {
		height: 100vh;
	}
	
	.hero-img-desktop {
		height: 100%;
	}
	
	.home-hero-mobile .col-sm-12.my-4 {
		margin-top: 0 !important;
	}
	
	.home-row-two {
		padding-top: 3rem !important;
	}
	
	.home-row-two .col-bg,
	.home-row-three .col-bg {
		min-height: 400px !important;
	}
	
	.home-row-two,
	.home-row-three {
		padding-bottom: 3rem !important;
	}
	
	.home-row-two .col-content,
	.home-row-three .col-content {
		padding-bottom: 0 !important;
	}
	
	.home-row-two .col-bg,
	.home-row-three .col-bg {
		min-height: 350px;
	}
	
	.home-row-two .col-content,
	.home-row-three .col-content {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	ul.list-unstyled li img {
		width: 19px;
		height: 19px;
	}
	
	.home-row-four .row.mb-5,
	.home-row-five .row.mb-5 {
		margin-bottom: 0 !important;
	}
	
	.home-row-four .col-md-3 {
		margin-bottom: 1.5rem !important;
	}
	
	.home-row-four .col-md-3:last-of-type {
		margin-bottom: 0 !important;
	}
	
	.home-row-five .col-md-4,
	.home-row-seven .col-lg-3 {
		width: 100%;
		margin: 10px 0;
	}
	
	.home-row-five .col-md-4.p-5 {
		padding: 1.5rem !important;
	}
	
	.row-testimonials {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
	
	.row-testimonials .col-content.p-10 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		padding-left: calc(var(--bs-gutter-x)* .5) !important;
		padding-right: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.home-row-seven h3 {
		font-size: 16px !important;
	}
	
	.home-row-seven p {
		font-size: 14px !important;
	}
	
	.home-row-eight .col-bg {
		min-height: 450px;
	}
	
	/* ABOUT */
	.page-template-about-us .about-row-four {
		height: initial;
		min-height: 750px;
		position: relative;
	}
	
	.page-template-about-us .about-row-four .container {
		position: absolute;
		left: 20px;
		bottom: 0;
	}
	
	/* LOCATION */
	.location-row-two .col-md-6.ps-5,
	.location-row-eight .col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.location-row-two.pb-4 {
		padding-bottom: 0 !important;
	}
	
	.location-row-three.pt-4 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.location-row-eight.py-6,
	.location-row-nine.py-6 {
		padding-bottom: 1.5rem !important;
	}
	
 	/* ABOUT US */
	.page-template-about-us .hero .hero-content {
		position: initial;
		transform: initial;
		max-width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
	}
	
	.page-template-about-us .bg-beige {
		display: none;
	}
	
	/* HOW IT WORKS */
	.hiw-row-two .col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	.hiw-row-three .col-md-6.pe-5 {
		padding-right: calc(var(--bs-gutter-x)* .5) !important;
	}
	
	/* GALLERY */
	.gallery-section .nav-tabs {
		display: block !important;
	}
	
	.gallery-section.py-6 {
		padding-top: 150px !important;
	}
	
	.gallery-section .gallery-item {
		position: initial !important;
		width: 100% !important;
	}
	
	/* FOOTER */
	.col-footer-logo {
		margin-bottom: 0 !important;
	}
	
	.subfooter .sb,
	.subfooter .uc {
		display: block !important;
	}
	
	.subfooter span.mx-2 {
		display: none !important;
	}
	
	.col-social.text-end {
		margin-bottom: 1rem;
		text-align: left !important;
	}
	
	.col-social a:first-of-type {
		margin-left: 0 !important;
	}
}



















