*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background-color: #d0f9db !important;
}
.profile{
	width:auto;
	height:450px;
	object-fit: cover;
}
.profile img{
	width:100%;
	height:100%;
	border-radius: 8px;
}
.story_header{
	font-size: 75px;
	font-family: "Oleo Script", system-ui;
}
.stry_box{
	display: flex;
	align-items: center;
	justify-content: center;
}
.pro_row{
	padding: 20px 0;
}
.story_para p{
	font-size: 20px;
	/*font-family: "Oleo Script", system-ui;*/
	text-align: left;
}

.nav-item{
	border:3px solid black;
	background-color: #fff;
	margin:15px 20px;
	font-weight:bold;
}
.nav-link{
	color:#000 !important;
	font-family: "Oleo Script", system-ui;
}
.nav-link.active{
	background-color: grey;
}

.btn_cmn{
	background-color: green !important;
	padding: 15px 30px !important;
	color:#fff !important;
	border:none !important;
	outline: none !important;
	font-size: 20px !important;
	margin:20px 0;
}

.vdo{
  /*height: 500px;*/
  overflow: hidden; /* Prevents overflow if video exceeds height */
  position: relative;
}

 .vdo video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the section */
  display: block;
  position: relative;
}

@media only screen and (max-width: 767px){
	.vdo{
		height:auto !important;
	}
	.vdo video{
		max-width: 100%;
	}
}