/* UTILITY CLASSES
================================================== */
root {
	--brand-red: #9c0206;
	--gold: #d6ab55;
	--green-check: #007c00;
}

html {
	scroll-behavior: smooth;
}

.container-1300 {
	margin-left: auto;
	margin-right: auto;
	max-width: 1340px;
	padding-left: 20px;
	padding-right: 20px;
}

.dark-blue-bg {
	background-color: #215a76;
}

.dark-blue-bg:hover {
	background-color: #375f75;
}

.regular-blue-bg {
	background-color: #829DAC;
}

.regular-blue-bg:hover {
	background-color: #6e8291;
}

.gold-yellow-bg {
	background-color: #d6bd8c;
}

.gold-yellow-bg:hover {
	background-color: #d6ab55;
}

.navy-blue-bg {
	background-color: #1a3558;
}

.navy-blue-bg:hover {
	background-color: #102340;
}


/* << END >> UTILITY CLASSES =================*/


/* TYPOGRAPHY
================================================== */

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
	font-family: "Playfair Display", Serif;
	margin: 0;
	line-height: 1.3;
}

/* << END >> TYPOGRAPHY =================*/


/* POPUP FORM SETTINGS
================================================== */

.popup-form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	padding: 0 20px;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.popup-form-modal.visible {
	opacity: 1;
	visibility: visible;
}

.popup-form-wrapper {
	position: relative;
	background-color: #fff;
	border-radius: 16px;
	padding: 40px 30px;
	width: 100%;
	max-width: 600px;
	height: auto;
	max-height: 88%;
	overflow-y: auto;
}

.popup-form-wrapper .close{
	position: absolute;
	cursor: pointer;
	top: 20px;
	right: 15px;
}

.popup-form-modal .gform_title {
	display: none;
}

@media only screen and (max-width: 680px) {

	.popup-form-wrapper {
		padding: 40px 25px;
	}

}

/* << END >>  POPUP FORM SETTINGS  =================*/


/* SINGLE REVIEW BANNER
================================================== */
.single_review_banner-section {
	position: relative;
	z-index: 9;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.single_review_banner-container {
	background-color: #fff;
	border-radius: 50px;
	border: 1px solid #D3D3D3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	margin-bottom: 48px;
	gap: 16px;
}

.stars-wrapper {
	display: flex;
}


.stars-wrapper img{
	width: auto;
	height: 20px;
}

.testimonial-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0;
	color: #000;
	margin-bottom: -4px;
}

.testimonial-text p{
	margin: 0;
}

@media only screen and (max-width: 769px) {
	.single_review_banner-container {
		flex-direction: column;
		align-items: center;
	}
}

@media only screen and (max-width: 680px) {
	.single_review_banner-container {
		border-radius: 70px;
		padding: 14px 20px;
		margin-bottom: 30px;
		gap: 6px;
	}
}
/* << END >> SINGLE REVIEW BANNER =================*/


/* HEADER SETTINGS
================================================== */

/* TOP BAR */

.top-bar--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
}

.top-bar--navigation-wrapper .top-bar-btn {
	padding: 4px 16px;
}

.top-bar--navigation-wrapper .top-bar-btn,
.top-bar--navigation-wrapper a.top-bar-btn:link,
.top-bar--navigation-wrapper a.top-bar-btn:visited,
.top-bar--navigation-wrapper a.top-bar-btn:focus,
.top-bar--navigation-wrapper a.top-bar-btn:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgb(255, 255, 255);
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	gap: 10px;
	text-decoration: none;
	border-radius: 5px;
	outline: none;
	transition: 0.3s;
}

.top-bar--navigation-wrapper .top-bar--email-us {
	cursor: pointer;
}

.top-bar--navigation-wrapper .top-bar-btn.navy-blue-bg {
	border: 2px solid #1a3558;
	padding: 2px 16px;
}

.top-bar--navigation-wrapper a.top-bar-btn.quote_button {
	padding: 2px 16px;
}

.top-bar--navigation-wrapper a.top-bar-btn.quote_button:hover {
	color: #9c0206;
}

.top-bar--navigation-wrapper a.top-bar-btn.navy-blue-bg:hover {
	background-color: #fff;
	color: #1a3558;
}

.contact-group,
.action-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-bar--navigation-wrapper .top-bar-link:link,
.top-bar--navigation-wrapper .top-bar-link:visited,
.top-bar--navigation-wrapper .top-bar-link:focus,
.top-bar--navigation-wrapper .top-bar-link:active {
	display: inline-flex;
	align-items:center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	color: #1a3558;
	text-decoration: none;
	transition: all 0.3s;
}

.top-bar--navigation-wrapper .top-bar-link svg,
.top-bar--navigation-wrapper .top-bar-link svg path {
	fill: #d6ab55;
}

.top-bar--navigation-wrapper .top-bar-link:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
	.top-bar--navigation-wrapper .top-bar-link:link, 
	.top-bar--navigation-wrapper .top-bar-link:visited, 
	.top-bar--navigation-wrapper .top-bar-link:focus, 
	.top-bar--navigation-wrapper .top-bar-link:active,
	.top-bar--navigation-wrapper .top-bar-btn,
	.top-bar--navigation-wrapper a.top-bar-btn:link,
	.top-bar--navigation-wrapper a.top-bar-btn:visited,
	.top-bar--navigation-wrapper a.top-bar-btn:focus,
	.top-bar--navigation-wrapper a.top-bar-btn:active {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1200px) {
	.regular_page .top-bar-btn .email-title,
	.regular_page .top-bar-link .number {
		display: none;
	}

	.top-bar--email-us.top-bar-btn,
	.top-bar--navigation-wrapper .top-bar-link {
		background-color: #d6bd8c;
		padding: 6px 9px;
		border-radius: 5px;
	}

	.top-bar--navigation-wrapper .top-bar-link svg,
	.top-bar--navigation-wrapper .top-bar-link svg path {
		fill: #fff;
	}
}


@media only screen and (max-width: 992px) {
	.top-bar--row {
		justify-content: end;
	}
}

@media only screen and (max-width: 680px) {
	.top-bar--email-us.top-bar-btn, .top-bar--navigation-wrapper .top-bar-link {
		padding: 8px 9px;
	}
}

/* END >> TOP BAR */


/*==== JOB BUTTON ON LIGHT TEMPLATE ====*/

.page-template-light-template .mobile-menu--jobs-btn {
	display: flex !important;
	background-color: #002D79;
	align-items: center;
	transition: background 0.3s ease;
} 

.page-template-light-template .mobile-menu--jobs-btn::before {
	content:"";
	width: 20px;
	height: 20px;
	background: url(https://masterscountertops.com/wp-content/uploads/2026/06/team-3.svg) 100% 100% no-repeat;
	background-size: 100%;
	margin-right: 8px;
} 

.page-template-light-template .light-theme--primary-menu li.mobile-menu--jobs-btn a {
	color: #fff;
}

.page-template-light-template .light-theme--primary-menu li.mobile-menu--jobs-btn:hover {
	background-color: #20639A;
}

@media only screen and (min-width: 1201px) {
	.page-template-light-template .mobile-menu--btn {
		padding: 4px 16px;
	}
}



/*==== END >> JOB BUTTON ON LIGHT TEMPLATE ====*/


/* BUTTONS BELOW LOGO */

.buttons-below-logo--row {
	display: none;
}

@media only screen and (max-width: 992px) {
	.top-bar--row .action-group {
		display: none;
	}

	.buttons-below-logo--row.top-bar--navigation-wrapper {
		background-color: #e8e8e8;
		display: flex;
		justify-content: center;
		padding-bottom: 10px;
		overflow: hidden;
		max-height: 200px; 
		transition: max-height 0.35s ease, padding 0.35s ease;
	}

	.buttons-below-logo--row.top-bar--navigation-wrapper.is-hidden {
		max-height: 0;
		padding-bottom: 0;
	}

}


@media only screen and (max-width: 700px) {
	.contact-group, .action-group {
		align-items: normal;
		width: 100%;
	}

	.contact-group .book_visit_link {
		flex: 1;
		order: 1;
	}

	.contact-group .top-bar--email-us {
		order: 2;
	}

	.contact-group .phone_sms_link {
		order: 3;
	}

	.contact-group .phone_call_link{
		order: 4;
	}

	.buttons-below-logo--row .action-group {
		flex-wrap: wrap;
	}

	.buttons-below-logo--row.top-bar--navigation-wrapper .top-bar-btn {
		padding-top: 4px!important;
		padding-bottom: 4px !important;
	}


	.top-bar--navigation-wrapper .top-bar-link:link,
	.top-bar--navigation-wrapper .top-bar-link:visited,
	.top-bar--navigation-wrapper .top-bar-link:focus,
	.top-bar--navigation-wrapper .top-bar-link:active,
	.top-bar--navigation-wrapper .top-bar-btn,
	.top-bar--navigation-wrapper a.top-bar-btn:link,
	.top-bar--navigation-wrapper a.top-bar-btn:visited,
	.top-bar--navigation-wrapper a.top-bar-btn:focus,
	.top-bar--navigation-wrapper a.top-bar-btn:active {
		text-transform: capitalize;
		font-size: 16px;
	}

	.buttons-below-logo--row .finance_link {
		flex: 1 1 100% !important;
		height: auto !important;
	}

	.buttons-below-logo--row .huge_sale_link {
		flex: 0 1 auto !important;
		height: auto !important;
	}

	.buttons-below-logo--row .get_quote_link {
		flex: 1 !important;
		height: auto !important;
	}
}


/* END >> BUTTONS BELOW LOGO */


.page-template-light-template .site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
	left: 0;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.top-bar--navigation-wrapper {
	background-color: #fff;
}

.main-navigation-wrapper {
	background-color: #e8e8e8;
}

.main-navigation-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.main-navigation-row .site-branding img {
	width: auto;
	height: 90px;
	max-height: 96px;
	transition: max-height 0.3s ease;
}

.light-theme--primary-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom:0; 
}

.light-theme--primary-menu .menu-item-has-children {
	position: relative;
	cursor: pointer;
	padding-right: 18px;
}

.light-theme--primary-menu .menu-item-has-children .sub-menu {
	box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.05), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	top: 140%;
	right: 0;
	width: max-content;
	padding: 15px 20px;
	position: absolute;
	z-index: 999;
	background-color: #fff !important;
	list-style: none;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.light-theme--primary-menu .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

.light-theme--primary-menu li a,
.light-theme--primary-menu li a:link,
.light-theme--primary-menu li a:visited,
.light-theme--primary-menu li a:focus,
.light-theme--primary-menu li a:active {
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 16px;
}

.light-theme--primary-menu li a:hover {
	text-decoration: none;
	color: #20639A;
}

.light-theme--primary-menu > .menu-item-has-children:after {
	content: '';
	position: absolute;
	top: 32%;
	right: 0;
	border-color: #000000;
	width: 8px;
	height: 8px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
	transform: rotate( 45deg );
	will-change: transform;
	transition: all 0.3s;
}

.light-theme--primary-menu > .menu-item-has-children:hover:after {
	-webkit-transform: translateY(4px) rotate(225deg );
	-ms-transform: translateY(4px) rotate(225deg );
	transform: translateY(4px) rotate(225deg );
}

@media only screen and (max-width: 1024px) {
	.main-navigation-row .site-branding img {
		height: 70px;
	}
}

@media only screen and (max-width: 769px) {
	.main-navigation-row .site-branding img {
		height: 50px;
	}
}



/* LANDING */

.landing_page .site-header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
}

.landing-main-navigation-wrapper{
	background-color: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .1);

}

.landing-main-navigation-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.landing-main-navigation-row .site-branding img{
	width: 160px;
	height: auto;
	margin-bottom: -5px;
	margin-left: -3px;
}

.landing-buttons-row {
	display: flex;
	gap: 20px;
	justify-content: end;
	padding: 10px;
}

.landing-buttons-row a.top-bar-btn:link,
.landing-buttons-row a.top-bar-btn:visited,
.landing-buttons-row a.top-bar-btn:focus,
.landing-buttons-row a.top-bar-btn:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	border-radius: 5px;
	outline: none;
	color: #ffffff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	padding: 8px 24px;
	transition: all 0.3s;
}

.landing-buttons-row a.top-bar-btn:hover {
	text-decoration: none;
	outline: none;
}

.landing-buttons-row a.top-bar-btn.phone svg{
	margin-bottom: -1px;
}

.quote_button:link,
.quote_button:visited,
.quote_button:focus,
.quote_button:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 5px;
	outline: none;
	color: #ffffff;
	font-size: 18px;
	background-color: #9c0206;
	border: 2px solid #9c0206;
	text-transform: capitalize;
	font-weight: 600;
	text-align: center;
	padding: 6px 24px;
	height: 100%;
	width: auto;
	transition: all 0.3s;
}


@media only screen and (min-width: 769px) {
	.quote_button:hover {
		color: #9c0206;
		background-color: #fff;
		text-decoration: none;
		outline: none;
	}
}



.quote-button-wrapper {
	position: relative;
	display:flex;
	flex-direction: column;
	gap: 5px;
}

.quote-button-wrapper .quote-button-updater {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 8px 14px;
	background: #fff;
	border: 2px solid #d6bd8c;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
	white-space: nowrap;
	font-size: 16px;
	font-weight: 700;
	z-index: 20;

	/* entry animation */
	animation: quoteUpdaterIn 160ms ease-out;
}

@keyframes quoteUpdaterIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.quote-button-updater .quote-list-counter .number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: #007c00;        
	color: #fff;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
}

.clear-list {
	display: flex;
	align-items: center;
	color: #9c0206;
	gap: 2px;
	font-size: 16px;
	cursor: pointer;
}

.clear-list span{
	line-height: 0;
}

.clear-list span svg {
	margin-bottom:-1px;
}

.clear-list span svg path{
	fill: #9c0206;
}


.quote-button-updater .quote-list-counter {
	display: flex;
	align-items: center;
	gap: 10px;
	border-right: 1px solid #c1c1c1;
	padding-right: 20px;
}

@media only screen and (max-width: 992px) {

	.desktop .landing-main-navigation-row .landing-buttons-row {
		order: 3;
		width: 100%;
		justify-content: center;
		padding: 10px 0 0;
	}

	.desktop .landing-main-navigation-row .site-branding {
		order: 1;
	}

	.desktop .landing-main-navigation-row .quote-button-wrapper {
		order: 2;
	}

}

@media screen and (min-width: 770px) and (max-width: 992px) {
	.quote-button-wrapper .quote-button-updater {
		top: 0;
		right: calc(100% + 8px);
	}
}



/* MOBILE LANDING HEADER */
.landing-main-navigation-wrapper.mobile {
	display: none;
}


@media only screen and (max-width: 769px) {
	.landing-main-navigation-wrapper.desktop {
		display: none;
	}

	.landing-main-navigation-wrapper.mobile {
		display: block;
	}

	.mobile .landing-main-navigation-row {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		transition: gap 0.3s ease;
	}

	.logo-row a.top-bar-btn.phone:link,
	.logo-row a.top-bar-btn.phone:visited,
	.logo-row a.top-bar-btn.phone:focus,
	.logo-row a.top-bar-btn.phone:active {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-decoration: none;
		border-radius: 5px;
		outline: none;
		color: #ffffff;
		font-size: 16px;
		text-transform: uppercase;
		font-weight: 500;
		text-align: center;
		padding: 8px 24px;
		transition: all 0.3s;
	}

	.logo-row a.top-bar-btn.phone:hover {
		color: #ffffff;
		text-decoration: none;
	}

	.mobile .landing-buttons-row {
		width: 100%;
		justify-content: center;
		padding: 0;
	}  

	.mobile .landing-buttons-row .top-bar-btn {
		flex: auto;
	}

	.logo-row {
		display: flex;
		justify-content: space-between;
		width: 100%;
		align-items: center;
		margin-bottom: 10px;
	}

	.quote-button-wrapper,
	.quote-button-wrapper .quote_button {
		width: 100%;
	}


	.landing-main-navigation-wrapper.mobile .landing-main-navigation-row .landing-buttons-row {
		max-height: 150px;
		opacity: 1;
		overflow: hidden;
		transition: max-height 0.3s ease, opacity 0.3s ease;
	}

	.landing-main-navigation-wrapper.mobile .landing-main-navigation-row.hiddeup {
		gap: 0;
	}

	.landing-main-navigation-wrapper.mobile .landing-main-navigation-row.hiddeup .landing-buttons-row {
		max-height: 0;
		opacity: 0;
	}

}

@media only screen and (max-width: 680px) {

	.landing-buttons-row {
		gap: 12px;
	}

	.logo-row a.top-bar-btn.phone:link,
	.logo-row a.top-bar-btn.phone:visited,
	.logo-row a.top-bar-btn.phone:focus,
	.logo-row a.top-bar-btn.phone:active {
		padding: 10px 12px;
		transition: all 0.3s;
	}

	.quote_button:link, 
	.quote_button:visited, 
	.quote_button:focus, 
	.quote_button:active,
	.landing-buttons-row a.top-bar-btn:link, 
	.landing-buttons-row a.top-bar-btn:visited, 
	.landing-buttons-row a.top-bar-btn:focus, 
	.landing-buttons-row a.top-bar-btn:active {
		padding: 6px 16px;
		flex: 1 1 50%;
	}
	.logo-row a.top-bar-btn.phone .number {
		display: none;
	}


	.logo-row a.top-bar-btn.phone svg {
		height: 28px;
		width: 30px;
	}
}


/* END >> LANDING */


/* MOBILE MENU SETTINGS */

.mobile-menu-toggler {
	display: none;
}

@media only screen and (max-width: 1200px) {
	.main-navigation {
		display: none;
	}
	.mobile-menu-toggler {
		display: block;
		height: 20px;
	}

	.mobile-menu-toggler svg {
		width: 30px;
		height: 20px;
	}
}

@media only screen and (min-width: 1200px) {
	.mobile-navigation-container {
		/* 		display: none; */
	}
}

.close-mobile-menu {
	margin-bottom: 20px;
	width: 100%;
	text-align: right;
}

.mobile-navigation-container {
	display: block;
	position: fixed;
	z-index: 9999;
	height: 100vh;
	width: 85%;
	background-color: #fff;
	padding: 30px 30px 20px 20px;
	top: 0;
	right: -105%;
	transition: right 0.3s ease-in-out;
}

.mobile-navigation-container.active {
	right: 0%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.light-theme--mobile-primary-menu {
	padding-left: 10px;
	list-style: none;
	font-weight: 600;
}

.light-theme--mobile-primary-menu li:not(:last-child) {
	margin-bottom: 15px;
}

.light-theme--mobile-primary-menu li a,
.light-theme--mobile-primary-menu li a:link,
.light-theme--mobile-primary-menu li a:visited,
.light-theme--mobile-primary-menu li a:focus,
.light-theme--mobile-primary-menu li a:active,
.light-theme--mobile-primary-menu li a:hover {
	color: #333333;
	text-decoration: none;
}

.mobile-menu--btn {
	padding: 5px;
	border-radius: 5px;
}

/* Submenu slide toggle */
.mobile-main-navigation .menu-item-has-children > a {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.mobile-main-navigation .menu-item-has-children > a::after {
	content: '';
	border-color: #000000;
	width: 8px;
	height: 8px;
	margin-top: -3px;
	margin-left: 3px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
	transform: rotate( 45deg );
	will-change: transform;
	transition: all 0.3s;
}

.mobile-main-navigation .menu-item-has-children.is-open > a::after {
	-webkit-transform: translateY(4px) rotate(225deg );
	-ms-transform: translateY(4px) rotate(225deg );
	transform: translateY(4px) rotate(225deg );
}

.mobile-main-navigation .sub-menu {
	overflow: hidden;
	padding-left: 20px;
	list-style: none;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.light-theme--mobile-primary-menu .sub-menu li:first-child{
	margin-top: 10px;
}

.mobile-main-navigation .menu-item-has-children.is-open > .sub-menu {
	max-height: 100px; 
}

/* << END >> MOBILE MENU SETTINGS */

/* << END >> HEADER SETTINGS  =================*/



/* FOOTER SETTINGS
================================================== */

/* REGULAR FOOTER */
.regular-footer-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 75px 0;
	color: #fff;
	font-size: 16px;
}

.regular-footer-row h3.footer-col-title {
	font-size: 24px;
}

.landing-footer-row a:link,
.landing-footer-row a:visited,
.landing-footer-row a:focus,
.landing-footer-row a:active,
.regular-footer-row a:link,
.regular-footer-row a:visited,
.regular-footer-row a:focus,
.regular-footer-row a:active {
	background-color: transparent;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s;
}

.landing-footer-row a:hover,
.regular-footer-row a:hover{
	background-color: transparent;
	text-decoration: none;
	color: #d6bd8c;
}

.regular-footer-row .footer-col {
	flex: 1;
}

.regular-footer-row .footer-col.logo-col,
.regular-footer-row .footer-col.info-col {
	flex-basis: 10%;
}

.footer-col .sms-phone svg {
	fill: #fff;
}

.regular-footer-row .logo-wrapper {
	width: 200px;
	margin-bottom: 20px;
}

.regular-footer-row .logo-wrapper img {
	margin-left: -5px;
}

.footer-icons.social-icons {
	display: flex;
	flex-direction: column;
	padding-top: 15px;
}


.social-icons .footer-icons--wrapper {
	display: flex;
	gap: 20px;
}

.social-icons .footer-icons--wrapper img {
	height: 25px;
}

.service-areas-toggler {
	cursor: pointer;
}

.service-areas-toggler .arrow {
	width: 12px;
	will-change: transform;
	transform: rotate(0);
	transition: transform 0.3s ease-in-out;
}


.service-areas-toggler.open .arrow{
	transform: rotate(-180deg);
}

.service-areas-toggler .title {
	margin-right: 5px;
}

.footer-map {
	height: 175px;
	margin-top: 25px;
}

.landing-footer .footer-map {
	margin-top: 10px;
}

.footer-col.logo-col .contact {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}


.quick-links-menu--wrapper,
.services-menu--wrapper,
.specials-menu--wrapper {
	margin-bottom: 25px;
}

#menu-quick-links {
	padding-left: 0;
	list-style: none;
}

.footer-icons--title {
	margin-bottom: 5px;
}

.service-areas--wrapper {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease;
}

.service-areas--inner {
	column-count: 6;
	padding-bottom: 50px;
}

.service-areas--inner a:link,
.service-areas--inner a:visited,
.service-areas--inner a:focus,
.service-areas--inner a:active {
	text-decoration: none;
	color: #fff;
	transition: all 0.3s;
}

.service-areas--inner a:hover {
	color: #d6bd8c;
	text-decoration: none;
}

@media only screen and (max-width: 1200px) {
	.regular-footer-row .footer-col,
	.footer-col.logo-col,
	.footer-col.info-col {
		flex-basis: 48%;
	}
	.service-areas--inner {
		column-count: 4;
	}
}

@media only screen and (max-width: 820px) {
	.regular-footer-row .footer-col,
	.footer-col.logo-col,
	.footer-col.info-col {
		flex-basis: 100%;
	}
	.service-areas--inner {
		column-count: 3;
	}
}


@media only screen and (max-width: 680px) {
	.service-areas--inner {
		column-count: 2;
	}
}

@media only screen and (max-width: 480px) {
	.service-areas--inner {
		column-count: 1;
	}
}


/* END >> REGULAR FOOTER */


/* LANDING FOOTER */
.landing-footer {
	background-color: #687a89;
}

.landing-footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	padding: 50px 0;
}

.landing-footer-row .footer-col {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: #fff;
}

.landing-footer--bottom-bar {
	background-color: #54616c;
}


.landing-footer--bottom-bar-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.landing-footer--bottom-bar-row .copyright {
	font-size: 12px;
	color: #fff;
}

.landing-footer--bottom-bar-row .links{
	color: #fff;
}

.landing-footer--bottom-bar-row .links a:link,
.landing-footer--bottom-bar-row .links a:visited,
.landing-footer--bottom-bar-row .links a:focus,
.landing-footer--bottom-bar-row .links a:active {
	text-decoration: none;
	color: #fff;
	font-size: 12px;
}

.landing-footer--bottom-bar-row .links a:hover {
	text-decoration: underline;
}

.footer-col.logo-col .logo-wrapper {
	margin-bottom: 15px;
	margin-left: -5px;
}

.footer-col.logo-col .logo-wrapper img {
	width: 200px;
	height: auto;
}

.footer-col.contact-col .contact-wrapper{
	color: #fff;
}

.footer-col.contact-col .contact-wrapper a:link,
.footer-col.contact-col .contact-wrapper a:visited,
.footer-col.contact-col .contact-wrapper a:focus,
.footer-col.contact-col .contact-wrapper a:active {
	color: #fff;
	text-decoration: none;
}

.footer-col.contact-col .contact-wrapper a:hover {
	text-decoration: underline;
}

.footer-col.contact-col .contact-wrapper .contact {
	display: flex;
	align-items: center;
	gap: 10px; 
	margin: 10px 0;
}

.landing-footer .footer-col-title {
	font-size: 30px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 15px;
}

.landing-footer .working-hours div {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 3px 0;
}

@media only screen and (max-width: 1100px) {
	.landing-footer-row {
		flex-direction: column;
		justify-content: start;
		gap: 20px;
	}

}

@media only screen and (max-width: 700px) {

	.landing-footer--bottom-bar-row {
		justify-content: center;
		text-align: center;
	}

}



/* << END >> FOOTER SETTINGS  =================*/


/* FEATURED REVIEWS
================================================== */

.featured-reviews-section {
	background-color: #fff;
	position: relative;
	padding: 65px 0 80px;
}


.featured-reviews-section .title-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.featured-reviews-section .section-title {
	margin-bottom: 20px;
	font-size: 34px;
	text-align: center;
}

.featured-reviews-section .title-group .subtitle{
	font-weight: 600;
	font-size: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.featured-reviews-section .title-group .subtitle .stars{
	height: 24px;
	width: auto;
}

.featured-reviews-section .title-group .section-text{
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}

.featured-reviews-section .title-group .section-text p {
	margin: 0;
}

.featured-reviews-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 25px;
}

.featured-reviews-col {
	position: relative;
	width: 355px;
	height:auto;
	min-height: 235px;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
	border: 1px solid #d6ab55;
}

.featured-reviews-col .source_icon {
	position: absolute;
	right: 20px;
	top: 20px;
}

.featured-reviews-col .author-group {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #000;
	font-size: 16px;
}

.featured-reviews-col .author-group img {
	width: 45px;
	height: 45px;
	border-radius: 60px;
	overflow: hidden;
}

.featured-reviews-col .author-name {
	font-weight: 600;
	font-size: 14px;
}

.featured-reviews-col .author-text {
	font-weight: 500;
	font-size: 16px;
}

.review-read-more {
	background: none;
	border: none;
	padding: 0;
	margin-top: 6px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #d6ab55;
	display: block;
}

.review-read-more:hover {
	text-decoration: underline;
	color: #d6ab55;
	background-color: none !important;
}


.icons-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.icons-group .stars {
	height: 20px;
	width: auto;
}

@media only screen and (max-width: 1200px) {
	.featured-reviews-row {
		gap: 20px;
	}
	.featured-reviews-col {
		width: 250px;
		min-height: 240px;
	}
}


@media only screen and (max-width: 480px) {
	.featured-reviews-section .title-group .section-text{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
		font-size: 18px;
	}

	.featured-reviews-section .title-group .section-text p {
		text-align: center;
	}
}

/* << END >> FEATURED REVIEWS =================*/



/* COUNTERTOP SPECIALS
================================================== */

.specials-block .section-title {
	text-align: center;
	font-size: 25px;
	font-family: "Montserrat", sans-serif;
	background-color: #fff;
	font-weight: 500;
	scroll-margin-top: 100px;
	padding: 0 15px 30px;
}

.specials-section {
	background-color: #fff;
}

.quartz_specials-section {
	padding: 0 0 35px;
}

.specials-section .title-group {
	padding-bottom: 60px;
}

.specials-section .title-group p {
	margin-bottom: 0;
}

.specials-section .title-group h2 {
	font-size: 34px;
	position: relative;
}


.specials-section .title-group h2::after {
	content: "";
	position: absolute;
	left: 0;
	top: 150%;
	width: 70px;
	height: 1px;
	background-color: #a8a9a9;
}

.natural_stone_specials-section {
	padding: 35px 0 75px;
}

.specials-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

.countertop-material-card {
	position: relative;
	width: 100%;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
	border-radius: 10px;
	overflow: hidden; 
	cursor: pointer;
	border: 2px solid #ededed;
	transition: border-color 0.3s;
}

.card-icon-wrapper {
	position: absolute;
	z-index: 9;
	right: 20px;
	top: 20px;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #007c00;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.countertop-material-card.added .card-icon-wrapper{
	opacity: 1;
	visibility: visible;
}

.countertop-material-card .btn-icon-wrapper {
	max-width: 0;
	margin-top: -2px;
	width: 22px;
	height: 18px;
	transform: scale(0);
	will-change: transform;
	transition: all 0.3s ease;
}

.card-image-wrapper {
	width: 100%;
	height: 160px;
}

.card-image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.card-text-wrapper {
	padding: 15px;
}

.specials-row .card-title {
	font-size: 20px;
}


.add-to-quote--btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 5px;
	outline: none;
	color: #ffffff;
	font-size: 16px;
	background-color: #9c0206;
	border: 2px solid #9c0206;
	font-weight: 600;
	text-align: center;
	padding: 5px 15px;
	height: 100%;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s;
}

.card-price-wrapper {
	margin-bottom: 10px;
}

.countertop-material-card.added{
	border: 2px solid #007c00;
}

.countertop-material-card.added .add-to-quote--btn{
	background-color: #007c00;
	border: 2px solid #007c00;
}

.countertop-material-card.added .add-to-quote--btn{
	color: #fff;
}

.countertop-material-card .btn-icon-wrapper svg g path{
	transition: stroke 0.3s ease;
}



@media only screen and (min-width: 1200px) {

	.countertop-material-card:hover {
		border: 2px solid #007c00;
	}

	.add-to-quote--btn:hover {
		color: #007c00;
		border-color: #007c00;
		background-color: #fff;
		text-decoration: none;
		outline: none;
	}

	.countertop-material-card.added:hover .add-to-quote--btn{
		background-color: #fff;
		color: #007c00;
	}

	.countertop-material-card.added:hover .btn-icon-wrapper svg g path{
		stroke: #007c00;
	}
}


.countertop-material-card.added .btn-icon-wrapper {
	max-width: 22px;
	transform: scale(1) translateX(2px);
}

@media only screen and (max-width: 1330px) {
	.specials-row {
		gap: 20px;
	}
}

@media only screen and (max-width: 1280px) {
	.specials-row {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}
}

@media only screen and (max-width: 1060px) {
	.specials-row {
		gap: 20px;
	}
}

@media only screen and (max-width: 1024px) {
	.specials-row .card-title {
		height: 52px;
	}
}

@media only screen and (max-width: 900px) {
	.specials-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 680px) {
	.specials-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 480px) {
	.specials-row {
		gap: 12px;
	}

	.card-image-wrapper {
		height: 100px;
	}

	.card-text-wrapper {
		display: flex;
		flex-direction: column;
		padding: 8px 8px 10px;
		height: 135px;
	}

	.specials-row .card-title {
		height: auto;
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 5px;
	}

	.card-price-wrapper {
		margin-bottom: 0;
		line-height: 1;
	}

	.card-price-wrapper .price {
		font-size: 14px;
	}

	.card-price-wrapper .price.sale-price {
		font-weight: 600;
	}

	.card-price-wrapper .price.reg-price.reg-price-sale {
		font-size: 14px;
		margin-right: 5px;
	}

	.add-to-quote--btn {
		padding: 5px;
		font-size: 14px;
		font-weight: 700;
		height: auto;
		margin-top: auto;
	}

	.countertop-material-card.added .btn-icon-wrapper,
	.countertop-material-card.added .btn-icon-wrapper svg {
		max-width: 16px;
	}

	.card-icon-wrapper {
		border-radius: 5px;
		right: 15px;
		top: 15px;
		width: 25px;
		height: 25px;
	}
}

@media only screen and (max-width: 380px) {
	.specials-row .card-title {
		font-size: 16px;
	}
	.add-to-quote--btn {
		padding: 5px 3px;
		font-size: 13px;
		font-weight: 700;
		height: auto;
		margin-top: auto;
	}
}

@media only screen and (max-width: 365px) {
	.add-to-quote--btn {
		font-size: 12px;
	}
}

/* << END >> COUNTERTOP SPECIALS  =================*/