.main-service {
    -webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.main-service::before
.main-service::after {
    -webkit-box-sizing: inherit;
	box-sizing: inherit;
}

/* .main-service {
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 10px;
} */

.main-service {
    font: 1.6rem;
    background: url("/img/demos/coffee/location-service.jpg")
		fixed center center/cover no-repeat;
}

main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 100vh;
	padding: 1rem;
}

.h2-tab-list, .h3-tab-list, li {
    color: white;
}

.h2-tab-list {
    font-size: 28px;
    
}

.h3-tab-list {
    font-size: 24px;
    
}

.main-service.img {
    max-width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}


.tabbed-window-list {
	display: grid;
	grid-template-columns: 1fr 3fr;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(51, 51, 51, 0.5);
	background: #33333380;
	-webkit-box-shadow: 0 0 10px #3333, 0 0 10px #3333, 0 0 10px #3333;
	box-shadow: 0 0 10px #3333, 0 0 10px #3333, 0 0 10px #3333;
	width: 70vw;
	-webkit-animation: scaleUp 500ms ease-in-out;
	animation: scaleUp 500ms ease-in-out;
}

.tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	text-align: center;
	border-right: 1px solid rgba(51, 51, 51, 0.5);
	background: #3333334d;
}

.tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 1.1rem;
	cursor: pointer;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.tab:focus,
.tab:hover,
.tab:active {
	background: #3333334d;
}

.tab-active {
	background: #1a1a1a80;
}

.content-pane {
	cursor: default;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	padding: 3rem;
}

.tab-content {
	display: none;
	-webkit-animation: scaleUp 500ms ease-in-out;
	animation: scaleUp 500ms ease-in-out;
    border: 0px;
}

.tab-content .p-tab-list {
	margin: 1rem 0;
}

.tab-content-active {
	display: block;
    background: inherit;
    color: black;
}

@media (min-width:801px) {
	#location-services 	{
		height: 407px;
	}
}

@media (max-width: 600px) {
	#location-services 	{
		height: auto;
	}
}

@media (min-width:801px) {
	.testimonial-section-desktop 	{
		display: none;
	}
}

@media (min-width:801px) {
	.testimonial-section-desktop 	{
		display: none;
	}
}

@media (max-width: 600px) {
	.testimonial-section 	{
		display: none;
	}
}


@-webkit-keyframes scaleUp {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scaleUp {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@media (max-width: 768px) {
	.tabbed-window-list {
		grid-template-columns: auto;
		width: auto;
		height: auto;
	}

	.tabs {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		border-right: 0;
		border-bottom: 1px solid rgba(51, 51, 51, 0.5);
	}

	.tab {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}


@media (max-width: 768px) {
	.h2-tab-list {
		font-size: 1rem;
	}

    .tabs .main-service.img {
		width: 2.4rem;
	}

	.tab {
		padding: 1rem;
	}

	.content-pane {
		padding: 2rem;
	}
}

@media (max-width: 425px) {
	.main-service-body {
		font-size: 1.2rem;
	}

	main {
		padding: 1rem;
	}

	.h3-tab-list {
		font-size: 1.6rem;
	}
}

li { 
    list-style: none;
    font-size: 1.4rem;
}

.testimonial-class {
	padding: 10px !important;
}