*,*::before,*::after {
  box-sizing: border-box;
}
body{
	margin: 0;
	font-family: arial;
	background:#fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
}
#myVideo {
	/* position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%; */
	object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  }
	img{
		max-width: 100%;
	}
body,html{
	scroll-behavior: smooth;
}
/*ChatBot*/
.chat_icon{
	position: fixed;
	/* bottom: 0;
	right: 30px; */
	z-index: 1000;
	padding: 0;
	font-size: 50px;
	top: 45%;
	left: 30%;
	/* color: #fff; */
	cursor: pointer;
}
.chat_box{
	width: 400px;
	height: 80vh;
	position: fixed;
	bottom: 100px;
	left: 2%;
	/* right: 30px; */
	background:#3d31319b;
	z-index: 1000;
	transition: all 0.3s ease-out;
	transform: scaleY(0);
}
.chat_box.active{
	transform: scaleY(1);
}
#messages{
	padding: 20px;
}
.my-conv-form-wrapper textarea{
	height: 30px;
	overflow: hidden;
	resize: none;
}
.hidden{
	display: none !important;
}
