/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Features
- Details 1
- Details Modal
- Details 2
- Testimonials
- Invitation
- Audio Samples
- Pricing
- Questions
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f9f8f8
- Buttons - navy blue #272556
- Buttons - orange #f25c05
- Headings text - navy blue #272556
- Body text - dark gray #c7c7c7
******************************************/
:root {
    /* Utility neutrals */
	--white: #ffffff;
	--black: #000000;
	--gray-100: #f7f7f7;
	--gray-300: #e1e1e1;
	--gray-600: #666666;
	--gray-900: #1a1a1a;

	/* Backgrounds */
	--bg-default:				var(--color-neutral-light);
	--bg-muted: 				var(--gray-100);
	--bg-inverse: 				var(--color-primary);
	/* Text */
	--text-default: 			var(--color-neutral-dark);
	--text-muted: 				var(--gray-600);
	--text-inverse: 			var(--color-neutral-light);
	--link: 					var(--color-primary);
	--link-hover: 				var(--color-secondary); 
	/* Borders */
	--border-default: 			var(--gray-300);
	/* Buttons */
	--btn-primary-bg: 			var(--color-primary);
	--btn-primary-text: 		var(--white);
	--btn-secondary-bg: 		var(--color-secondary);
	--btn-secondary-text: 		var(--black);
	/* Highlights */
	--highlight: 				var(--color-secondary);


	/* components */
	--navbar-bg:					var(--color-primary);
	--navbar-text:					var(--color-text-light);
	--navbar-nav-item:				var(--color-text-light);
	--navbar-item-dropdown:			var(--color-accent);
	--navbar-dropdown-text:			var(--color-text-dark);
	--navbar-dropdown-text-hover:	var(--text-muted);
	--dropdown-divider: 			var(--lighter-bg);
	--header-bg:					var(--color-lighter-primary);
	--header-text:					var(--color-text-light);
	--header-text-accent:			var(--color-accent);
	--recent-work-bg:				var(--color-neutral-light);
	--recent-work-text:				var(--color-text-dark);
	--services-bg:					var(--color-secondary);
	--services-text:				var(--color-text-light);
	--card-icon-bg:					var(--color-accent-lighter);
	--contact-header-bg:			var(--color-neutral-dark);
	--contact-header-text:			var(--color-text-light);
	--footer-bg:					var(--color-primary);
	--footer-text:					var(--color-text-light);
	--footer-fa-stack-1:			var(--white);
	--footer-fa-stack-2:			var(--color-accent);
	--footer-fa-stack-1-hover:		var(--color-accent);
	--footer-fa-stack-2-hover:		var(--white);
	--copyright-bg:					var(--color-accent);
	--copyright-text:				var(--black);
	--back-to-top-button:			var(--color-accent);
}

/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: var(--color-text-dark); 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

.light {
	color: var(--color-text-light);
}

h1 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.4px;
}

h2 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.625rem;
	letter-spacing: -0.4px;
}

h3 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: -0.2px;
}

h4 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.125rem;
	letter-spacing: -0.2px;
}

h5 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	color: var(--color-text-dark);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.625rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: var(--link);
	text-decoration: underline;
}

a:hover {
	color: var(--link-hover);
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #6168ff;
}

.bg-gray {
	background-color: var(--light-bg);
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: var(--btn-primary-bg); /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: var(--btn-primary-bg); /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-sm:hover {
	background-color: transparent;
	color: var(--btn-primary-bg); /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: transparent;
	color: var(--btn-primary-bg);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: transparent;
	color: var(--btn-primary-bg);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #565578;
	color: var(--btn-primary-text);
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: transparent;
	color: var(--btn-primary-bg);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	text-decoration: none;
}

.form-floating label {
	margin-left: 0.5rem;
	color: #72719b;
}

.form-floating .form-control {
	padding-left: 1.25rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid var(--btn-primary-bg);
	border-radius: 30px;
	background-color: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid var(--btn-primary-bg);
	background-color: transparent;
	color: var(--btn-primary-bg);
}

/* Fade Animation For Rotating Text - ReplaceMe  */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
/* end of fade animation for rotating text - replaceme */


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: var(--navbar-bg);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	transition: filter 0.2s ease
}

.navbar.fixed-top {
  background-color: var(--navbar-bg);
  backdrop-filter: blur(6px);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .navbar-brand img {
  width: 170px;
	height: 50px;
}

.navbar .logo-text {
	color: var(--navbar-logo-text);
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: var(--bg-default);
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: var(--navbar-nav-item);
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: var(--navbar-item-dropdown);
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: var(--bg-default);
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: var(--navbar-dropdown-text);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: var(--bg-default);
	color: var(--navbar-dropdown-text-hover);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: var(--dropdown-divider);
}
/* end of dropdown menu */

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	padding-top: 8rem;
	padding-bottom: 9rem;
	background-color: var(--header-bg);
	text-align: center;
}

.header .h1-large {
	margin-bottom: 1.25rem;
	color: var(--header-text);
}

.header .replace-me {
	color: var(--header-text-accent);
}

.header .replace-me span {
	text-decoration: underline;
}

.header .p-large {
	color: var(--header-text);
	margin-bottom: 2.75rem;
}

.header .btn-solid-lg {
	display: block;
	margin-bottom: 1.75rem;
}

.header .text-container {
	margin-bottom: 5rem;
}

/*******************/
/*       Hero      */
/*******************/

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.hero-title {
  color: var(--color-text-light);
  font-size: 3rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
}

.hero-image {
  /* max-height: 180px; */
  object-fit: contain;
  opacity: 0.9;
}


/*******************/
/*  Audio Samples  */
/*******************/

#audio-snippets {
	padding-top: 3rem;
	background-color: var(--recent-work-bg);
	color: var(--recent-work-text);
	padding-bottom: 3rem;
}
#audio-snippets .container .audio-header h2 {
	margin-bottom: 2.75rem;
	text-align: center;
	color: var(--recent-work-text);
}
#audio-snippets .container .row .card .card-body img {
	width: 200px; 
	height: auto;
}
#audio-snippets .cards .card {
	text-align: center;
}
#audio-snippets .cards .card-title {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}
@media (min-width: 600px) {
	#audio-snippets .cards {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 992px) {
	#audio-snippets .cards {
		grid-template-columns: repeat(3, 1fr);
	}
}
.audio-controls { 
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
	width: 80%;
	margin: 1rem auto 0;
}

.timeline {
	flex: 1;
}

.timeline-track {
	position: relative;
	height: 6px;
	background: var(--color-neutral-light);
	border-radius: 3px;
	overflow: hidden;
}

.timeline-progress {
	height: 100%;
	width: 0%;
	background: var(--color-accent);
	transition: width 0.1s linear;
} 
.timeline-head {
	position: absolute;
	top: -4px;
	left: 0%;
	width: 14px;
	height: 14px;
	background: var(--color-primary);
	border-radius: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}

/********************/
/*     Services     */
/********************/
#services {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: var(--services-bg);
	color: var(--services-text);
}
#services .container .services-header h2 {
	margin-bottom: 1.75rem;
	color: var(--services-text);
}
#services .container .services-header p {
	padding: 10px 5rem 3rem;
	color: var(--services-text);
}
#services .cards .card {
	text-align: center;
	padding: 3rem 2rem 2rem;
	border: none;
}
@media (min-width: 600px) {
	#services .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 992px) {
	#services .cards {
		grid-template-columns: repeat(3, 1fr);
	}
}
#services .card-icon {
	width: 76px;
	height: 76px;
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
	border-radius: 10px;
	background-color: var(--color-accent-lighter);
}
#services .card-icon .fas,
#services .card-icon .far {
	color: var(--color-accent-dark);
	font-size: 2.5rem;
	line-height: 76px;
}
#services .card-body {
	padding: 0;
	text-align:center;
}

#services .card-title {
	margin-bottom: 1rem;
}

#services .card-body p {
	margin-bottom: 1.125rem;
}

#service-intro, #service-approach {
  padding: 4rem 0 3rem;
}
#service-process {
  padding: 0 0 3rem;
}

#service-included .row .text-container,
#service-deliverable .row .text-container,
#service-audience .row .text-container {
  margin-top: 0;
}

#service-included .row img,
#service-deliverable .row img,
#service-audience .row img {

}

#service-faq .accordion-1 {
  padding-top: 3rem;
}

.svg-container {
  padding: 0 2rem;
}

.svg-container svg {
  fill: var(--color-accent-darker);
}

/********************/
/*     Features     */
/********************/
.cards {
	display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  vertical-align: top;

}
@media (min-width: 600px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 992px) {
	.cards {
		grid-template-columns: repeat(4, 1fr);
	}
}
.cards-1 {
	padding-top: 9rem;
	padding-bottom: 1.25em;
	text-align: center;
}

.cards-1 .h2-heading {
	margin-bottom: 3.75rem;
}

.cards-1 .h2-heading span {
	color: var(--color-accent);
	text-decoration: underline;
}

.cards-1 .card {
	margin-bottom: 5rem;
	border: none;
	background-color: transparent;
}

.cards-1 .card-icon {
	width: 76px;
	height: 76px;
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
	border-radius: 10px;
	background-color: #efebfd;
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
	color: #8763ee;
	font-size: 2.5rem;
	line-height: 76px;
}
/* 
.cards-1 .card-icon.green {
	background-color: #defaeb;
}

.cards-1 .card-icon.green .fas,
.cards-1 .card-icon.green .far {
	color: #00d462;
}

.cards-1 .card-icon.blue {
	background-color: #e2ebfd;
}

.cards-1 .card-icon.blue .fas,
.cards-1 .card-icon.blue .far {
	color: #1f68f3;
} */

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-title {
	margin-bottom: 1rem;
}

.cards-1 .card-body p {
	margin-bottom: 1.125rem;
}


/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
	padding-top: 9.5rem;
	padding-bottom: 10rem;
	background-color: var(--color-neutral-light);
	color: var(--text-muted);
}

.basic-1 .text-container {
	margin-bottom: 4rem;
}

.basic-1 h2 {
	margin-bottom: 1.875rem;
}

.basic-1 p {
	margin-bottom: 1.875rem;
}

.basic-1 .btn-solid-reg {
	cursor: pointer;
}


/*************************/
/*     Details Modal     */
/*************************/
.modal-dialog {
	max-width: 1150px;
	margin-right: 1rem;
	margin-left: 1rem;
	pointer-events: all;
}

.modal-content {
	padding: 2.75rem 1.25rem;
}

.modal-content .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal-content .image-container {
	margin-bottom: 3rem;
}

.modal-content img {
	border-radius: 6px;
}

.modal-content h3 {
	margin-bottom: 0.5rem;
}

.modal-content hr {
	width: 44px;
	margin-top: 0.125rem;
	margin-bottom: 1.25rem;
	margin-left: 0;
	height: 2px;
	border: none;
	background-color: #53575a;
}

.modal-content h4 {
	margin-top: 2rem;
	margin-bottom: 0.625rem;
}

.modal-content .list-unstyled {
	margin-bottom: 2rem;
}

.modal-content .list-unstyled .fas {
	font-size: 0.75rem;
	line-height: 1.75rem;
}

.modal-content .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.modal-content .btn-solid-reg {
	margin-right: 0.5rem;
}

.modal-content .btn-outline-reg {
	cursor: pointer;
}


/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
	background-color: var(--color-accent-lighter);
	color: var(--color-text-dark);
}

.basic-2 .image-container {
	margin-bottom: 5rem;
}

.basic-2 h2 {
	margin-bottom: 1.875rem;
}

.basic-2 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-2 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 9.25rem;
	padding-bottom: 9.75rem;
}

.slider-1 .section-title {
	text-align: center;
}

.slider-1 .h2-heading {
	margin-bottom: 3rem;
	text-align: center;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	position: relative;
	border: none;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-right: auto;
	margin-bottom: 1.25rem;
	margin-left: auto;
	border-radius: 50%;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-text {
	margin-bottom: 1rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: var(--body-text-dark);
}

/**********************/
/*     CTA     */
/**********************/
.cta {
	padding-top: 9rem;
	padding-bottom: 9rem;
	background-color: var(--color-darker-secondary);
	color: var(--color-text-light);
	text-align: center;
}

.cta h4 {
	margin-bottom: 2.375rem;
	color: var(--headings);
}

.cta .btn-outline-lg {
	border-color: var(--color-text-light);
	color: var(--color-text-light);
}

.cta .btn-outline-lg:hover {
	background-color: var(--color-text-light);
	color: var(--color-secondary);
}

/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
	padding-top: 9rem;
	padding-bottom: 9rem;
	background-color: var(--dark-bg);
	text-align: center;
}

.basic-3 h4 {
	margin-bottom: 2.375rem;
	color: var(--headings);
}

.basic-3 .btn-outline-lg {
	border-color: var(--color-text-light);
	color: var(--color-text-light);
}

.basic-3 .btn-outline-lg:hover {
	background-color: var(--color-text-light);
	color: var(--color-secondary);
}

/*******************/
/*      Rates      */
/*******************/
/* --- Service Catalog Cards --- */
.service-card {
  transition: box-shadow .2s ease, transform .15s ease;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: .75rem;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.service-card .price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.service-card .add-btn {
  border-radius: .5rem;
  padding: .6rem 1rem;
  font-weight: 600;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* --- Estimate Tray --- */
.estimate-tray {
  border-radius: .75rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}

.estimate-item .estimate-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.qty-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* right-align everything */
  gap: .25rem;
  min-width: 9rem; /* predictable anchor */
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.bundle-price .price {
  display: inline-block;
  width: 5ch; /* prevents shifting */
  text-align: right;
}

.bundle-price .bundle-note {
  border-right: 3px solid var(--color-lighter-primary);
  padding-right: 1rem;
  font-size: .85rem;
  color: var(--color-accent);
  opacity: .85;
}

.estimate-item .price {
  display: inline-block;
  font-weight: 600;
  width: 7ch; /* enough for up to 4 digits + $ */
  text-align: right;
}

.estimate-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.estimate-item:last-child {
  border-bottom: none;
}

.estimate-item .label {
  font-weight: 500;
  padding-right: 1rem;
}

.estimate-item .qty-controls span {
  display: inline-block;
  width: 2ch; /* enough for 2 digits */
  text-align: center;
}

.estimate-item .qty-controls button {
  border: none;
  background: var(--color-lighter-secondary);
  padding: .25rem .5rem;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 5px;
}

.estimate-item .qty-controls button.btn-remove-item {
	background: var(--color-accent);
}

.estimate-total {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.estimate-total h5 {
	text-align: left;
}

.estimate-total .total-price {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}

.btn-estimate-inquiry {
	background-color: var(--color-accent);
	border: 1px solid var(--color-accent);
	padding: .75rem 1.5rem;
	border-radius: 10px;
	color: var(--color-text-light);
}

#estimateModal .modal-dialog {
	width: 50%;
}

#estimateModal .modal-footer button.btn-primary {
	background-color: var(--color-primary);
}

#estimateModal .modal-footer button.btn-secondary {
	background-color: var(--color-secondary);
}

/*******************/
/*     Pricing     */
/*******************/
.pricing-block {
  margin: var(--space-2xl) 0;
}

.pricing-block h3 {
  margin-bottom: var(--space-lg);
  font-size: var(--font-xl);
  font-weight: 600;
}

.pricing-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pricing-label {
  font-size: var(--font-lg);
  font-weight: 500;
}

.pricing-price {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--accent-600);
}

.pricing-description {
  margin-top: var(--space-sm);
  opacity: 0.8;
}

.pricing-features {
  margin-top: var(--space-sm);
  padding-left: 1.25rem;
}

.pricing-features li {
  margin-bottom: 0.25rem;
}


#pricing {
	padding-top: 9rem;
	padding-bottom: 5.25em;
}

#pricing h2 {
	margin-bottom: 3.75rem;
	text-align: center;
}

#pricing .cards .card {
	margin-bottom: 5rem;
	padding: 4rem 1rem;
	border: 1px solid #9fa3ae;
	border-radius: 20px;
	background-color: var(--light-bg);
	text-align: center;
}

@media (min-width: 600px) {
	#pricing .cards {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 992px) {
	#pricing .cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

#pricing .cards .card-body {
	padding: 0;
}

#pricing .cards .card-title {
	margin-bottom: 2rem;
}

#pricing .cards .card-title .decoration-lines {
	width: 30px;
	margin-bottom: 0.25rem;
}

#pricing .cards .card-title .decoration-lines.flipped {
	transform: scaleX(-1);
}

#pricing .cards .card-title span {
	margin-right: 0.75rem;
	margin-left: 0.75rem;
	color: var(--headings);
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2rem;
	letter-spacing: -0.2px;
}

#pricing .cards .card-body .list-unstyled {
	margin-bottom: 3rem;
}

#pricing .cards .card-body .list-unstyled li {
	margin-bottom: 0.625rem;
}

#pricing .cards .card-body .price {
	margin-bottom: 3rem;
	color: var(--headings);
	font-weight: 600;
	font-size: 3.5rem;
	line-height: 2rem;
	letter-spacing: -0.2px;
}

#pricing .cards .card-body .price span {
	font-weight: 400;
	font-size: 1rem;
	line-height: 0;
}


/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
	padding-top: 9rem;
	padding-bottom: 9rem;
}

.accordion-1 .h2-heading {
	margin-bottom: 1.5rem;
	text-align: center;
}

.accordion-1 .accordion-item {
	padding-bottom: 1rem;
	border: none;
	border-bottom: 1px solid #cdcedd;
}

.accordion-1 .accordion-header {
	width: 100%;
}

.accordion-1 .accordion-button {
	width: auto;
	padding-top: 2rem;
	padding-left: 0;
	background: none;
	box-shadow: none;
	font-weight: 600;
	font-size: 1.15rem;
	line-height: 1.625rem;
}

.accordion-1 .accordion-button:not(.collapsed) {
	color: #212529;
}

.accordion-1 .accordion-button::after,
.accordion-1 .accordion-button:not(.collapsed)::after {
	display: none;
}

.accordion-1 .accordion-button:not(.collapsed)::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23272556;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
	transform: rotate(-180deg);
}

.accordion-1 .accordion-button::before {
	align-self: flex-start;
	flex-shrink: 0;
	width: 1.125rem;
	height: 0.75rem;
	margin-top: 0.5rem;
	margin-right: 0.75rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23272556;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.125rem;
	transition: transform 0.2s ease-in-out;
}

.accordion-1 .accordion-body {
	padding-top: 0;
	padding-left: 1.875rem;
	padding-bottom: 1.125rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	background-color: var(--footer-bg);
}

.footer .col-lg-12 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 600px) {
  .footer .col-lg-12 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .footer .col-lg-12 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer a {
	color: var(--footer-text);
	text-decoration: none;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: var(--footer-text);
	opacity: 0.8;
}

.footer p,
.footer ul {
	color: var(--footer-text);
	opacity: 0.8;
}

.footer-col {
	padding: 4.5rem 1.5em 2rem;
}

.footer-col:nth-child(2) {
  background: color-mix(in srgb, var(--footer-bg) 90%, white);
}

.footer-col:nth-child(2) ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 1.5rem;
}

.footer #site-logo {
	width: 100%;
	margin: auto;
	display: block;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col .fa-stack .fa-stack-2x {
	color: var(--footer-fa-stack-2);
	transition: all 0.2s ease;
}

.footer .footer-col .fa-stack .fa-stack-1x {
	color: var(--footer-fa-stack-1);
	transition: all 0.2s ease;
}

.footer .footer-col .fa-stack:hover .fa-stack-2x {
	color: var(--footer-fa-stack-2-hover);
}

.footer .footer-col .fa-stack:hover .fa-stack-1x {
	color: var(--footer-fa-stack-1-hover);
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: var(--copyright-bg);
	text-align: center;
	padding-top: 1rem;
}

.copyright p,
.copyright a {
	color: var(--copyright-text);
	text-decoration: none;
}

.copyright p {
	opacity: 0.8;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	right: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: var(--back-to-top-button); 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: var(--back-to-top-button-hover);
}

#myBtn img {
	margin-bottom: 0.25rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 9rem;
	padding-bottom: 5rem;
	background-color: var(--header-bg);
	color: var(--header-text);
}
.ex-header h1 {
	color: var(--header-text);
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: var(--light-bg);
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #f25c05;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 600;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}

/*************************/
/*    contact section    */
/*************************/
#contact {
	padding-top: 3rem;
	padding-bottom: 2rem;
	background-color: var(--contact-bg);
}
#contact .contact-header {
	text-align: center;
	color: var(--contact-text);
}
#contact {
	background-color: var(--contact-bg);
}
#contact .container .row .picture img {
	width: 80%;
	max-width: 600px;
	margin: 2rem 2.5rem 3rem;
	border-top-left-radius: 2.5rem;
	border-bottom-right-radius: 2.5rem;
}

/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 9rem;
	}

	.header .h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}
	/* end of header */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 33rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.extra-page {
		padding-top: 0.5rem;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--navbar-bg);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-outline-sm {
		margin-top: 0;
		margin-left: 0.625rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		padding-top: 12rem;
		padding-bottom: 12rem;
		text-align: left;
	}

	.header .text-container {
		margin-bottom: 0;
	}

	.header .btn-solid-lg {
		display: inline-block;
		margin-bottom: 0;
	}
	/* end of header */


	/* Features */
	.cards-1 .card {
		/* display: inline-block;
		width: 286px; */
	}
	
	/* .cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2rem;
		margin-left: 2rem;
	} */
	/* end of features */


	/* Details 1 */
	.basic-1 .text-container {
		margin-bottom: 0;
	}
	/* end of details 1 */

	
	/* Details Modal */
	/* Stops body and navbar shift on modal open */
	body.modal-open {
		overflow-y: scroll !important;
		padding-right: 0 !important;
	}

	body.modal-open .navbar {
		padding-right: 0 !important;
	}
	/* end of stops body and navbar shift on modal open */

	.modal {
		padding-right: 0 !important;
	}

	.modal-dialog {
		/* margin-top: 120px; */
		margin-right: auto;
		margin-left: auto;
	}
	
	.modal-content .image-container {
		margin-bottom: 0;
	}
	/* end of details modal */


	/* Details 2 */
	.basic-2 {
		padding-bottom: 10rem;
	}

	.basic-2 .image-container {
		margin-bottom: 0;
	}
	/* end of details 2 */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	/* end of testimonials */


	/* Invitation */
	.basic-3 h4 {
		width: 44rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of invitation */


	/* Pricing */
	.cards-2 .card {
		/* display: inline-block;
		width: 298px; */
		vertical-align: top;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of pricing */


	/* Questions */
	.accordion-1 .accordion {
		width: 820px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of questions */

	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}
	/* end of general styles */
	

	/* Header */
	.header {
		overflow: hidden;
		padding-top: 18.5rem;
		padding-bottom: 18rem;
	}

	.header .image-container {
		position: relative;
	}
	
	.header .image-container img {
		position: absolute;
		top: -180px;
		left: -10px;
		width: 840px;
		max-width: none;
	}
	/* end of header */


	/* Features */
	.cards-1 .card {
		/* width: 310px; */
	}
	
	/* .cards-1 .card:nth-of-type(3n+2) {
		margin-right: 5.5rem;
		margin-left: 5.5rem;
	} */
	/* end of features */


	/* Details 1 */
	.basic-1 .text-container {
		margin-top: 10rem;
	}

	.basic-1 h2 {
		margin-right: 4rem;
	}

	.basic-1 .image-container {
		margin-left: 4rem;
	}
	/* end of details 1 */


	/* Details Modal */
	.modal-content {
		padding-right: 2rem;
		padding-left: 2rem;
	}
	/* end of details modal */


	/* Details 2 */
	.basic-2 .text-container {
		margin-top: 8rem;
		margin-left: 5rem;
	}
	/* end of details 2 */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 96%;
	}

	.slider-1 .swiper-button-prev {
		left: -28px;
	}
	
	.slider-1 .swiper-button-next {
		right: -28px;
	}
	/* end of testimonials */


	/* Pricing */
	.cards-2 .card {
		/* width: 342px; */
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	/* end of pricing */

	/* Extra Pages */
	.ex-cards-1 .card {
		/* width: 336px; */
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */