footer {
	background: white;
}

#overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	background-color: ;
}


.fade {
	background-color: rgba(0, 0, 0, .85) !important;
}


/* Hero Video + Fallback */

#hero-vid {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}

#hero-pic {
	display: block;
	height: auto;
	width: 100%;
}

#state {
	bottom: 0;
	cursor: pointer;
	font-size: 2.25rem;
	left: 0;
	line-height: 1;
	padding: 2rem 2.5rem 1.65rem;
	position: absolute;
}


/* Content Styles */

#title {
	position: absolute;
	width: 85%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4rem;
	color: white;
	text-align: center;
	font-weight: bold;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

#title h1 {
	background-color: rgba(0, 0, 0, .5);
	font-family: "Poiret One", sans-serif;
	font-size: 2.5rem;
	padding: 1rem 1.75rem;
}

#content {
	position: relative;
	background: white;
	color: black;
	padding: 4rem;
	margin-top: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	gap: 2rem;
	/* Push content below the video */
	z-index: 2;
}

#content h3 {
	font-size: 3.5rem;
	letter-spacing: .02rem;
	margin-bottom: 1.3rem;
	max-width: 100%;
	text-align: center;
}

.slider-card {
	max-width: 1000px;
	height: 80dvh;
	position: relative;
	transition: .3s ease;
}

.slider-card img.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1.2rem;
}

.slider-card img.mobile-img {
	/* width: 30%; */
	/* max-height: 100%; */
	height: 68%;
	position: absolute;
	left: 5%;
	top: 16%;
	border-radius: 30px;
	transform: translateX(-0.875rem);
	transition: transform .8s ease-in
}

.slider-card img.mobile-img.i-pad {
	border-radius: 20px;
}

.swiper-slide-active .slider-card {
	margin-left: 10rem;
}

.swiper-slide-next img.mobile-img {
	opacity: 0;
}

.swiper-slide-active img.mobile-img {
	opacity: 1;
	transform: translateX(-6.875rem);
}

.secondSwiper .swiper-button-next,
.secondSwiper .swiper-button-prev {
	background-image: url('../images/Icons/svg/right-arrow.svg');
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-color: #8b8585;
	opacity: 0.6;
	color: black;
}

.secondSwiper .swiper-button-next:hover,
.secondSwiper .swiper-button-prev:hover {
	opacity: 1;
}

.secondSwiper .swiper-button-prev {
	display: block;
	transform: rotate(180deg);
	background-color: #8b8585;
	color: #fff;
}

.secondSwiper .swiper-button-prev.swiper-button-disabled,
.secondSwiper .swiper-button-next.swiper-button-disabled {
	display: none;
}

.banner-megan {
	position: relative;
	padding: 60px 0;
	background-color: white;
}

.banner-megan .megan-container {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
}

.megan-container .box-container {
	display: flex;
	width: 100%;
	height: 100%;
	gap: 20px;
	justify-content: center;

}

.box-container ul {
	width: 59%;
	list-style: none;

}

.box-container ul li {
	font-size: 1.5rem;
	line-height: 65px;
	color: black;
	display: flex;
	align-items: center;
	gap: 15px;
}

.box-container ul li::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url('../images/checkMark.png');
	background-size: cover;
	/* Ensures the image covers the whole area */
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
	/* Adds spacing between the image and the text */
	border-radius: 5px;
	/* Rounded corners */
}

.box-container ul li:last-of-type {
	font-weight: 600;
	font-style: italic;

	& span {
		text-decoration: underline;
	}
}

.box-container .megan-box {
	width: 41%;
	display: flex;
	flex-direction: column;
	object-fit: cover;
	overflow: hidden;
	text-align: center;
	margin: 0;
	gap: 10px;
}

.megan-box h4 {
	margin: 0;
}

.megan-box img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
}


/* Media Queries */

@media only screen and (max-width:768px) {
	#overlay {
		height: auto;
	}
}


/* Visibility Helpers */

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

	.visible-mobile,
	.visible-tablet,
	.hidden-desktop {
		display: none !important;
	}
}

@media only screen and (min-width:480px) and (max-width:768px) {

	.visible-mobile,
	.hidden-tablet,
	.visible-desktop {
		display: none !important;
	}
}

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

	.hidden-mobile,
	.visible-tablet,
	.visible-desktop {
		display: none !important;
	}
}

@media only screen and (max-width: 990px) {
	.box-container ul li:last-of-type {
		font-size: 1rem;
	}

	.box-container ul {
		padding-left: 0;
	}

	.megan-box img {
		height: 275px;
	}

	.megan-container .box-container {
		gap: 10px;
	}

	.box-container ul li {
		gap: 10px;
		line-height: 55px;
	}
	.tab-content .row {
		flex-direction: column-reverse;
	}
}

@media screen and (max-width: 840px) {
	.megan-container .box-container {
		flex-direction: column-reverse;
	}

	.box-container ul {
		width: 100%;
	}

	.box-container .megan-box {
		width: 50%;
	}
	
}

@media only screen and (max-width: 640px) {
	#title {
		font-size: 2.5rem;
	}

	.second-section #content {
		padding: 2rem;
	}

	.second-section #content h3 {
		font-size: 1.5rem;
	}

	.swiper-slide-active .slider-card {
		margin-left: 5rem;
	}

	.slider-card {
		height: 40dvh;
	}

	.slider-card img.mobile-img {
		left: 14%;
		border-radius: 13px;
	}

	.slider-card img.mobile-img.i-pad {
		border-radius: 10px;
	}

	.box-container .megan-box {
		width: 100%;
	}
		.box-container ul li{
			font-size: 1rem;
		}
	.box-container ul li:last-of-type {
		font-size: 12px;
		gap: 5px;
	}
	.scroll-down {
		right: 20%;
	}
}

@media only screen and (max-width: 480px) {
	.slider-card img.mobile-img {
		left: 24%;
	}
}