/*
.header_background_image {
	width: 100% !important;
	opacity:70% !important;
}
*/


.testimonial__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.testimonial__item {
	background: transparent;
	border-radius: 4px;
	width: calc(50% - 0.5rem);
	min-height: 320px;
	min-width: calc(50% - 0.5rem);
}
@media screen and (max-width: 600px) {
	.testimonial__item {
		background: transparent;
		border-radius: 4px;
		width: calc(100% - 0.5rem);
		min-width: calc(100% - 0.5rem);
	}
}

.shot-item .single-content {
	/* background-color: black; */
}
.shot-item p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.795);
	padding: 20px;
}

.table-section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.table-section h1 {
	font-size: 1rem;
	font-family: "Lato", sans-serif;
	color: #546e7a;
	margin-bottom: 1rem;
	text-align: left;
}
table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	overflow: hidden;
	margin-bottom: 1rem;
}

td,
th {
	border-top: 1px solid #ecf0f1;
	padding: 10px;
}

td {
	border-left: 1px solid #ecf0f1;
	border-right: 1px solid #ecf0f1;
}

th {
	background-color: #f97794;
}

tr:nth-of-type(even) td {
	background-color: lighten(#4ecdc4, 35%);
}

.total th {
	background-color: white;
}
.total td {
	text-align: right;
	font-weight: 700;
}

.mobile-header {
	display: none;
}

@media only screen and (max-width: 760px) {
	p {
		display: block;
		font-weight: bold;
	}
	table tr td:not(:first-child),
	th:not(:first-child),
	td:not(.total-val) {
		display: none;
	}
	table tr td:first-child {
		background-color: lighten(#4ecdc4, 35%);
	}
	table tr th:not(:first-child) {
		width: 40%;
		transition: transform 0.4s ease-out;
		transform: translateY(-9999px);
		position: relative;
		z-index: -1;
	}
	table tr td:not(:first-child) {
		transition: transform 0.4s ease-out;
		transform: translateY(-9999px);
		width: 60%;
		position: relative;
		z-index: -1;
	}
	table tr td:first-child {
		display: block;
		cursor: pointer;
	}
	table tr td.total-val {
		display: inline-block;
		transform: translateY(0);
		width: 75%;
	}
	.table-section {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 2rem;
		justify-content: center;
	}
	.filterDv {
		width: 100% !important;
	}
}

@media only screen and (max-width: 480px) {
	/* tr th:not(:first-child) {
		width: 100%;
		font-size: 14px;
	}

	tr td:not(:first-child) {
		width: 100%;
		font-size: 14px;
	} */
}

.pricing-container {
	overflow: hidden;
	margin-top: 6rem;
}
#myBtnContainer {
	width: 100%;
	text-align: center;
}
.button {
	border-radius: 20px;
}
.filterDv {
	display: none;
	max-width: 600px;
}
.filterDv .button {
	margin-bottom: 2rem;
}
.workFilterBtn button {
	margin: 5px;
}
/* The "show" class is added to the filtered elements */
.show {
	display: block;
}

/* Style the buttons */
.button {
	border: none;
	outline: none;
	background-color: #f1f1f1;
	cursor: pointer;
	font-size: 14px;
	padding: 10px 30px;
	border-radius: 30px;
	font-weight: 400;
	color: #546e7a;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
}

/* Add a light grey background on mouse-over */
.button:hover {
	background-color: #f97794;
	color: #fff;
}

/* Add a dark background to the active button */
.button.activePrice {
	background-color: #f97794;
	color: #fff;
}

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10; /* Sit on top */
	left: 5%;
	top: 100px;
	width: 90%; /* Full width */
	height: 70%; /* Full height */
	overflow: auto;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	/* overflow: scroll; */
	align-items: center;
	background-color: rgba(238, 232, 232, 0.9);
}
@media screen and (max-width: 600px) {
	.zoom-icon {
		display: none;
	}
}

/* Modal Content/Box */
.workmodal-content {
	padding: 2rem;
	border: 1px solid #fff;
	width: 90%;
	height: 90%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: auto;
}
.workmodal-content p {
	color: #434343;
	font-weight: 200;
	text-align: left;
}
.workmodal-content li {
	color: #aaa;
	font-family: "Aclonica";
	font-size: 1rem;

	text-decoration: none;
}
.workmodal-content .virtualLink {
	font-size: 1rem !important;
	color: rgb(30, 156, 235) !important;
	box-shadow: none !important;
}

/* The Close Button */
.closeStyle {
	color: #434343;
	float: right;
	font-size: 30px;
	font-weight: bold;
	align-self: flex-start;
	margin-bottom: 10px;
	margin-left: 20px;
}

.closeStyle:hover,
.closeStyle:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
