	.tab4_container {
		text-align: center;
		/* border: 2px solid black; */
		background: linear-gradient(to top right, #fa9e1b, #8d4fff);
	}

	.tab4 {
		padding: 10px;
		font-weight: bold;
		/* background-color: #333; */
		color: White;
		text-transform: uppercase;

	}



	.element-video {
		height: 100%;
		width: 100%;
		display: flex;
		border: none;
		background-color: #000;
	}

	.sticky {

		position: relative;

	}

	@media (min-width: 768px) {
		.box-shadow {
			box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
				-2px -2px 4px rgba(255, 255, 255, 0.5);
		}

		.sticky {
			position: fixed;
			z-index: 10;
			top: 14%;
		}
	}

	.custom_card {
		border: 1px solid #ccc;
		border-radius: 8px;
		margin: 0px 0px 50px 0px;
		overflow: hidden;
		/* font-family: Arial, sans-serif; */
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		background-color: #fff;
	}


	.custom_card-header {
		display: flex;
		background-color: #f5f5f5;
		border-bottom: 1px solid #ccc;


		overflow-x: auto;
		scroll-behavior: smooth;
		flex-grow: 1;
		white-space: nowrap;
	}

	.custom_card-header::-webkit-scrollbar {
		height: 6px;
		/* Thin scrollbar height */
	}

	.custom_tab {
		color: black;
		font-size: 16px;
		flex: 1;
		text-align: center;
		padding: 10px 15px;
		cursor: pointer;
		font-weight: 500;
		transition: background-color 0.3s;
	}

	.custom_tab:hover {
		background-color: #e6e6e6;
	}

	.custom_tab.active {
		border-bottom: 2px solid #fa9e1b;
		/* Highlight active tab */
		color: #fa9e1b;
	}

	.custom_card-content {
		padding: 20px;
	}

	/* .custom_content {
		display: none;
	} */

	.custom_content.active {
		display: block;
	}

	h2 {
		font-style: italic;
		color: #fa9e1b;
		font-weight: 600;
		/* text-align: center; */
		font-size: 25px;
	}

	h4,
	h3 {
		font-weight: 600;
		color: black;

	}

	.slider-container {
		overflow: hidden;
		width: 100%;
	}

	.slider-container::-webkit-scrollbar {
		/* width: 8px; Adjust width */
		height: 8px;
		/* Adjust height for horizontal scrollbars */
	}

	.image-slider {
		display: flex;
		transition: transform 0.5s ease-in-out;
		width: max-content;
		/* Ensures it can fit all images horizontally */
	}

	.image-content {

		flex: 0 0 calc(33.33% - 10px);
		/* Each image occupies 1/3rd of the container minus spacing */
		margin-right: 5px;
		margin-left: 5px;
		/* Space between images */
	}

	@media (max-width: 768px) {
		.image-content {
			flex: 0 0 100%;
			/* Each image takes up the full width */
			margin-right: 0;
			/* Remove spacing between images */
			margin-left: 0;
		}
	}

	.image-content:last-child {
		margin-right: 0;
		/* Remove margin from the last image */
	}

	.image-content img {
		height: auto;
		width: 90%;
		/* Ensures the image scales to fit its container */
		display: block;
	}

	.slider-buttons {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.slider-button {
		background-color: rgba(0, 0, 0, 0.5);
		color: white;
		border: none;
		padding: 4px 9px;
		cursor: pointer;
		font-size: 16px;
		border-radius: 5px;
	}

	.slider-button:hover {
		background-color: rgba(0, 0, 0, 0.7);
	}

	.slider-container {
		display: flex;
		width: 100%;
		position: relative;
		overflow-x: scroll;
	}

	.reviews {
		margin-top: 50px;
	}

	.reviews_title {
		font-size: 18px;
		font-weight: 600;
		color: #2d2c2c;
		text-transform: uppercase;
	}

	.reviews_container {
		margin-top: 61px;
	}

	.review {
		margin-bottom: 91px;
	}

	.review_image {
		width: 70px;
		height: 70px;
		border-radius: 50%;
		overflow: hidden;
	}

	.review_image img {
		width: 100%;
	}

	.review_title {
		font-size: 18px;
		font-weight: 600;
		font-style: italic;
		color: #2d2c2c;
		margin-top: -3px;
	}

	.review_rating {
		display: inline-block;
		position: absolute;
		bottom: 35px;
		right: 0;
		font-size: 18px;
		font-weight: 600;
		color: #FFFFFF;
		background: #fa9e1b;
		padding-left: 25px;
		padding-right: 25px;
		line-height: 43px;
		border-radius: 22px;
	}