body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  p {
	font-size: 15px !important;
    color: #666666 !important;
    line-height: 23px !important;
	text-align: justify;
  }
  a {
	  text-decoration: none!important;
  }
  ul {
	  margin: 0;
	  list-style: none;
	  font-size: 15px !important;
	  color: #666666 !important;
	  padding-left: 15px;
  }
  
  h1,h2,h3,h4,h5,h6 {
	  margin: 0px;
  }
  h2{
	  font-size: 33px !important;
  }
  @media screen and (max-width: 900px){
	h2{
		font-size: 31px !important;
	}
  }
  @media screen and (max-width: 600px) {
	h2{
		font-size: 25px !important;
	}
	p{
		font-size: 15px !important;
		line-height: 21px !important;
	  }
  }
  
  .color1 {
	  color: #F7BE47;
  }
  
  .color2 {
	  color: #f35214;
  }
  
  a.filled-button {
	  background-color: #f35214;
	  color: #fff;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 600;
	  padding: 0.75rem 1.8rem;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
  }
  
  a.filled-button:hover {
	  background-color: #f48f17;
	  color: #000;
  }
  
  a.border-button {
	  background-color: transparent;
	  color: #fff;
	  border: 2px solid #fff;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 10px 28px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
  }
  
  a.border-button:hover {
	  background-color: #fff;
	  color: #F7BE47;
  }
  
  .section-heading {
	  text-align: center;
	  margin-bottom: 30px;
  }
  
  .section-heading h2 {
	  font-size: 36px;
	  font-weight: 600;
	  color: #1e1e1e;
  }
  
  .section-heading em {
	  font-style: normal;
	  color: #F7BE47;
  }
  
  .section-heading span {
	  display: block;
	  margin-top: 15px;
	  text-transform: uppercase;
	  font-size: 15px;
	  color: #666;
	  letter-spacing: 1px;
  }
  
  #preloader {
	overflow: hidden;
	background: #F7BE47;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	z-index: 9999999;
	color: #fff;
  }
  
  #preloader .jumper {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	position: absolute;
	margin: auto;
	width: 50px;
	height: 50px;
  }
  
  #preloader .jumper > div {
	background-color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	position: absolute;
	opacity: 0;
	width: 50px;
	height: 50px;
	-webkit-animation: jumper 1s 0s linear infinite;
	animation: jumper 1s 0s linear infinite;
  }
  
  #preloader .jumper > div:nth-child(2) {
	-webkit-animation-delay: 0.33333s;
	animation-delay: 0.33333s;
  }
  
  #preloader .jumper > div:nth-child(3) {
	-webkit-animation-delay: 0.66666s;
	animation-delay: 0.66666s;
  }
  
  @-webkit-keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	}
  }
  
  @keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }
  
/* Sub Header Style */
.sub-header {
	background: linear-gradient(to right, #f5af19, #f12711);
	height: 46px;
	line-height: 46px;
 }
 .sub-header ul{
	 padding: 0 !important;
 }
.sub-header ul li {
	display: inline-block;
}
.sub-header ul li.helpnile{
	border-left: none !important;
}
.sub-header ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 10px;
}
.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}
.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}
.sub-header ul.left-info li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}
.sub-header ul.right-icons {
	float: right;
}
.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
 }
.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}
.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}
.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}
  
  
  
/* Header Style */
header {
	position: relative;
	/* z-index: 99999; */
	width: 100%;
	background-color: #fff!important;	
	height: auto;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.background-header .navbar {
	padding: 10px 0px;
}
.background-header {
	top: 0;
	position: fixed;
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #F7BE47!important;
}
.navbar .navbar-brand {
	float: 	left;
	outline: none;
	padding: 0 !important;
	margin: 0 !important;
	height: 100px;
	width: 100px;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
	top: 55%;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 7px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 13.5px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: #AE0002;
	transition: all 0.5s;
	margin-top: 5px;
	border-bottom: 3px solid transparent;
}
.navbar .navbar-nav a.nav-link:focus { 
	outline: none; 
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	/* color: #F7BE47; */
	color: #6D4908;
	border-bottom: 3px solid #F7BE47;
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	/* border-color: #F7BE47; */
	border-color: #6D4908;
	background-color: #fff;	
	height: 36px;
	outline: none;
	border-radius: 0px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #6D4908;;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}
.dropdown-item.active{
	color: #fff !important;
    background-color: #f35214 !important;
}
.dropdown-menu{
	padding: 0 !important;
	margin: 0 !important;
	font-size: 13.5px !important;
}
.dropdown-menu a{
	padding: 10px 30px !important;
}
.dropdown-item:hover{
	background-color: #6D4908 !important;
	color: #fff !important;
}
.dropdown:hover .dropdown-menu{
	display: block;
}
.dropdown-menu{
	margin-top: 0;
}

.nuakhai-btn{
	background-color: #ab0d02;
	color: #fff !important;
	text-transform: uppercase !important;
	box-shadow: 0 .1rem .1rem rgba(0,0,0,.15)!important;
	font-weight: bold !important;
	border-radius: 30px;
	padding: 7px 20px !important;
 }
.nuakhai-btn:hover{
	background-color: #F7BE47 !important;
	color: #000 !important;
	box-shadow: 0 .1rem .1rem rgb(243, 82, 20)!important;
}
@media screen and (max-width: 992px){
	.nuakhai-btn{
		display: none !important;
	}
}
.nuakhai-btn-mob{
	font-size: 13px;
	text-align: center !important;
	background-color: #ab0d02;
	color: #fff !important;
	text-transform: uppercase !important;
	box-shadow: 0 .1rem .1rem rgba(0,0,0,.15)!important;
	font-weight: bold !important;
	border-radius: 30px;
	padding: 7px 20px !important;
	margin: 5px auto !important;
	display: none !important;
}
.nuakhai-btn-mob span{
	display: block;
	font-size: 10px;
}
@media screen and (max-width: 992px){
	.nuakhai-btn-mob{
		display: table !important;
	}
}
/* Banner Style */
.img-fill{
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
	position: relative;
	text-align: middle;
  }
.img-fill img {
	position: relative;
	display: inline-block;
	max-width: none;
	margin: auto;
  }
  
  *,
  *:before,
  *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
.Grid1k {
	padding: 0 15px;
	max-width: 1200px;
	margin: auto;
  }
.blocks-box,
  .slick-slider {
	margin: 0;
	padding: 0!important;
  }
 .slick-slide {
	float: left;
	padding: 0;
  }
 .Modern-Slider .item .img-fill {
	  background-size: cover;
	  background-position: right center;
	  background-repeat: no-repeat;
  }
 .Modern-Slider .item .img-fill img{
	  width: 100%;
  }
.Modern-Slider .NextArrow{
	  position:absolute;
	  top:50%;
	  transform: translate(0%, -50%);
	  right:30px;
	  border:0 none;
	  background-color: transparent;
	  text-align:center;
	  font-size: 36px;
	  font-family: 'FontAwesome';
	  color:#f35214;
	  z-index:5;
	  outline: none;
	  cursor: pointer;
  }
  .Modern-Slider .NextArrow:before{
	content:'\f105';
  }
.Modern-Slider .PrevArrow {
	  position:absolute;
	  top:50%;
	  transform: translate(0%, -50%);
	  left:30px;
	  border:0 none;
	  background-color:transparent;
	  text-align:center;
	  font-size: 36px;
	  font-family: 'FontAwesome';
	  color:#f35214;
	  z-index:5;
	  outline: none;
	  cursor: pointer;
  }
 .Modern-Slider .PrevArrow:before{
	content:'\f104';
  }
 ul.slick-dots {
	display: none!important;
  }
.Modern-Slider .text-content {
	  text-align: left;
	  width: 50%;
	  position: absolute;
	  top: 50%;
	  left: 0%;
	  transform: translate(0%, -50%);
	  padding-left: 5%;
  }
.Modern-Slider .item h6 {
	margin-bottom: 15px;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 1px;
	color: #aa5349;
	animation:fadeOutRight 1s both;
  }
.Modern-Slider .item h4 {
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 30px;
	font-weight:500;
	letter-spacing: 1.5px;
	color:#FFF;
	overflow:hidden;
	animation:fadeOutLeft 1s both;
  }
.Modern-Slider .item p {
	  max-width: 570px;
	  color: #fff;
	  font-size: 15px;
	  font-weight: 400;
	  line-height: 20px;
	  margin-bottom: 40px;
  }
.Modern-Slider .item.slick-active h6{
	animation:fadeInDown 1s both 1s;
  }
.Modern-Slider .item.slick-active h4{
	animation:fadeInLeft 1s both 1.5s;
  }
.Modern-Slider .item.slick-active{
	animation:Slick-FastSwipeIn 1s both;
  }
.Modern-Slider .buttons {
	position: relative;
  }
.Modern-Slider {background:#000;}
  
  
  /* ==== Slick Slider Css Ruls === */
  .slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
  .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
  .slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
  .slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  .slick-track{position:relative;top:0;left:0;display:block}
  .slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
  .slick-loading .slick-track{visibility:hidden}
  .slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
  .slick-slide.dragging img{pointer-events:none}
  .slick-initialized .slick-slide{display:block}
  .slick-loading .slick-slide{visibility:hidden}
  .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}
  
   /* More Info */
  
.more-info {
	padding: 40px 0;
}
.more-info .left-image img {
  width: 100%;
  overflow: hidden;
  padding: 10% 30px 30px;
}
.about-info .more-info-content {
	background-color: transparent;
}
.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}
.more-info .right-content {
	padding: 45px 45px 45px 30px;
}
.more-info .right-content span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}
.more-info .right-content h2 {
	font-weight: 600;
	margin-bottom: 35px;
}
.more-info .right-content em {
	font-style: normal;
	color: #F7BE47;
}

.more-info .right-content p {
	margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
	.more-info {
		padding: 30px 0;
	}
	.more-info .left-image img,.more-info .right-content {
		padding: 10px;
	}
	.more-info .right-content h2 {
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 600px) {
	.more-info {
		padding: 20px 0;
	}
}
  
/* Services */
	
.services {
	padding: 40px 0;
	background-color: #f7f7f7;
}
.service-item{
	display: table-cell;
}
.service-item img {
	width: 100%;
	overflow: hidden;
}
.service-item .down-content {
	background-color: #f7f7f7;
	padding: 10px 0;
}
.service-item .down-content h3 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}
.service-item .down-content p {
	margin-bottom: 20px;
	text-align: justify;
}
.service-content .col-md-4{
	display: table-cell !important;
}
.contentbody{
	padding: 40px 0;
}
@media only screen and (max-width: 900px) {
	.contentbody, .services{
		padding: 30px 0;
	}
}
@media only screen and (max-width: 600px) {
	.contentbody, .service{
		padding: 20px 0;
	}
}
/* Fun Facts */
.fun-facts {
	background-image: url(../images/banners/Covid_19_BG.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 40px 0px;
	color: #fff;
}
  .fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}
.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 25px;
}
.fun-facts em {
	font-style: normal;
	color: #F7BE47;
}
.fun-facts p, .fun-facts ul li {
	color: #fff !important;
	margin-bottom: 20px !important;
}
.fun-facts .left-content {
	margin-right: 45px;
}
@media only screen and (max-width: 900px) {
	.fun-facts{
		padding: 40px 0px;
	}
	.fun-facts h2 {
		font-size: 31px !important;
		margin-bottom: 25px;
	}
}
@media only screen and (max-width: 600px) {
	.fun-facts{
		padding: 20px 0px;
	}
	.fun-facts h2 {
		font-size: 25px !important;
		margin-bottom: 20px;
	}
}
/* Right arrow  design for li*/
  .right-arrow.ul {
	list-style: none;
	padding: 0;
  }
  .right-arrow li {
	padding-left: 1.3em;
  }
  .right-arrow li:before {
	content: "\f0a4"; /* FontAwesome Unicode */
	font-family: FontAwesome;
	display: inline-block;
	margin-left: -1.3em; /* same as padding-left set on li */
	width: 1.3em; /* same as padding-left set on li */
	color: #f35214 !important;
  }
  /* Right arrow  design for li*/
  
  .count-area-content {
	  text-align: center;
	  background-color: rgba(250,250,250,0.1);
	  padding: 10px 30px;
	  margin: 10px 0px;
  }
  
  .count-digit {
	  margin: 0;
	  color: #F7BE47;
	  font-weight: 700;
	  font-size: 25px;
  }
  .count-title {
	  font-size: 16px;
	  font-weight: 600;
	  color: #fff;
	  letter-spacing: 0.5px;
  }


  /* Home Callout */
  .home-callout{
	  padding: 20px 0;
  }
  .home-callout h3{
	  color: #fff;
	  text-align: center;
  }
  
  
  /* Testimonials Style */
.testimonials {
	background-color: #fff;
	padding: 50px 0px;
	box-shadow: rgb(0 0 0 / 15%) 0px 25px 20px -20px;
}
.testimonial-item .inner-content {
	text-align: center;
	background-color: rgb(222, 205, 205);	
	padding: 20px;
	border-radius: 5px;
	min-height: 370px !important;
}
.testimonial-item p {
	font-size: 14px !important;
	margin: 0 !important;
}
.testimonial-item h4 {
	font-size: 20px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
}
.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 15px;
	color: #10777e;
}
.testimonial-item img {
	max-width: 100px;
	border-radius: 50%;
	margin: auto;
	margin-bottom: 10px;
}
.testimonials .owl-dots , .partners .owl-dots{
	display: none;
}
@media only screen and (max-width: 900px) {
	.testimonials {
		padding: 30px 0px;
	}
  }
@media only screen and (max-width: 600px) {
	.testimonial-item {
	  display: block;
	  width: 100%;
	}
	.testimonials {
		padding: 20px 0px;
	}
}
/* Partners Style */
.partners {
	padding: 30px 0px;
}
.partners .owl-item {
	text-align: center;
	cursor: pointer;
}
.partners .partner-item img {
	max-width: 156px;
	margin: auto;
}
@media only screen and (max-width: 900px) {
	.partners {
		padding: 20px 0px;
	}
  }
@media only screen and (max-width: 600px) {
	
}
/* Footer Style */
.floating {
	position: fixed;
	z-index: 1000;
}
.floating.floating-bottom {
	bottom: 15px;
	right: 15px;
}
.floating .filled-button {
	font-weight: 600;
	padding: 10px 15px;
	text-transform: capitalize;
	font-size: 16px;
}
footer {
	background-color: #232323;
	padding: 40px 0px;
	color: #fff;
}
footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
footer p {
	color: #fff !important;
}
footer ul.social-icons {
	margin-top: 25px;
	padding: 0 0 20px !important;
}
footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}
footer ul.social-icons li:last-child {
	margin-right: 0px;
}
footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}
footer ul.social-icons li a:hover {
	background-color: #F7BE47;
}
footer ul.menu-list li {
	margin-bottom: 13px;
}
footer ul.menu-list{
	padding: 0 !important;
}
footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}
footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}
footer ul.menu-list li a:hover {
	color: #F7BE47;
}
p.dgngrp{
	font-size: 12px !important;
	color: #aaa !important;
	text-align: initial !important;
}
footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}
footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}
footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}
footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}
footer .contact-form ::-webkit-input-placeholder { /* Edge */
	color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}
footer .contact-form ::placeholder {
	color: #aaa;
}
footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: #f35214;
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}
footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: #f48f17;
}
@media only screen and (max-width: 900px) {
	footer {
		padding: 30px 0px;
	}
}
@media only screen and (max-width: 600px) {
	footer {
		padding: 20px 0px;
	}
	
}
/* Sub-footer Style */
.sub-footer {
	background-color: #fff;
	padding: 25px 0px;
}
.sub-footer p {
	color: #000;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-align: center !important;
	margin: 0 !important;
}
.sub-footer a {
	color: #f35214;
}
/* Sub-footer Style */

/* Back to top Style */
#btn-back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	background: linear-gradient( #f5af19, #f12711) !important;
	border: none !important;
	color: #fff;
    border-radius: 100%;
    padding: 9px 16px;
}
#btn-back-to-top .fa:before{
	font-weight: 800 !important;
}
#btn-back-to-top:focus { 
	outline: none; 
}
@media screen and (prefers-reduced-motion: no-preference) {
	html {
	  scroll-behavior: smooth;
	}
  }
/* Back to top Style */
.page-heading {
	text-align: center;
	color: #fff;
}
  
  .page-heading img {
	  width: 100%;
  }
  
  .page-heading h1 {
	  text-transform: capitalize;
	  font-size: 36px;
	  font-weight: 700;
	  letter-spacing: 2px;
	  margin-bottom: 18px;
  }
  
  .page-heading span {
	  font-size: 15px;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	  color: #fff;
	  display: block;
  }
/* team */
.team {
	  background-color: #551e1e;
	  margin-top: 140px;
	  margin-bottom: -140px;
	  padding: 120px 0px;
  }
.team-item img {
	  width: 100%;
	  overflow: hidden;
  }
.team-item .down-content {
	  background-color: #fff;
	  padding: 30px;
  }
.team-item .down-content h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 10px;
  }
.team-item .down-content span {
	  color: #F7BE47;
	  font-weight: 600;
	  font-size: 14px;
	  display: block;
	  margin-bottom: 15px;
  }
.team-item .down-content p {
	  margin-bottom: 20px;
  }
/* Our Vision page */
  #tabs ul {
	margin: 0;
	padding: 0;
  }
  #tabs ul li {
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
  }
  #tabs ul li:last-child {
	margin-bottom: 0px;
  }
  #tabs ul li a {
	text-transform: capitalize;
	width: 100%;
	padding: 30px 30px;
	display: inline-block;
	background-color: #F7BE47;
	font-size: 20px;
	color: #121212;
	letter-spacing: 0.5px;
	font-weight: 700;
	transition: all 0.3s;
}
  #tabs ul li a:hover{
	background-color: #ab0d02;
	color: #fff;
  }
  #tabs ul li a i {
	  float: right;
	  margin-top: 5px;
  }
  #tabs ul .ui-tabs-active span {
	background: #faf5b2;
	border: #faf5b2;
	line-height: 90px;
	border-bottom: none;
  }
  #tabs ul .ui-tabs-active a {
	color: #fff;
  }
  #tabs ul .ui-tabs-active span {
	color: #1e1e1e;
  }
  .tabs-content {
	  margin-left: 30px;
	text-align: left;
	display: inline-block;
	transition: all 0.3s;
  }
  .tabs-content img {
	  max-width: 100%;
	  overflow: hidden;
  }
  .tabs-content h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 15px;
	  margin-top: 30px;
  }
  .tabs-content p {
	font-size: 14px;
	color: #7a7a7a;
	margin-bottom: 0px;
  }
/* Contact Information */
 .contact-information .contact-item {
	  padding: 60px 30px;
	  text-align: center;
  }
  
  .contact-information .contact-item i {
	  color: #f35214;
	  font-size: 48px;
	  margin-bottom: 40px;
  }
  
  .contact-information .contact-item h3 {
	  font-size: 22px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 15px;
	  text-transform: uppercase;
  }
  
  .contact-information .contact-item p {
	  margin-bottom: 20px;
  }
  
  .contact-information .contact-item a {
	  font-weight: 600;
	  color: #f35214 ;
	  font-size: 15px;
	  text-decoration: none !important;
  }
  .contact-information .contact-item a:hover{
	  text-decoration: underline !important;
  }
#mapiframe{
	padding-bottom: 30px !important;
}
/* Responsive Style */
  @media (max-width: 768px) {
	  .sub-header {
		  display: none;
	  }
	  .Modern-Slider .item h6 {
		margin-bottom: 15px;
		font-size: 18px;
	  }
	  .Modern-Slider .item h4 {
		margin-bottom: 25px;
		font-size: 28px;
		line-height: 36px;
		letter-spacing: 1px;
	  }
	  .Modern-Slider .item p {
		  max-width: 570px;
		  line-height: 25px;
		  margin-bottom: 30px;
	  }
	  .Modern-Slider .NextArrow{
		right:5px;
	  }
	  .Modern-Slider .PrevArrow {
		left:5px;
	  }
	  .service-item {
		  margin-bottom: 30px;
	  }
	  .fun-facts .left-content {
		  margin-right: 0px;
		  margin-bottom: 30px;
	  }
	  footer {
		  padding: 80px 0px 20px 0px;
	  }
	  footer .footer-item {
		  border-bottom: 1px solid #343434;
		  margin-bottom: 30px;
		  padding-bottom: 30px;
	  }
	  footer .last-item {
		  border-bottom: none;
	  }
	  .about-info .right-content {
		  margin-right: 0px;
		  margin-bottom: 30px;
	  }
	  .team .team-item {
		  margin-bottom: 30px;
	  }
	  .tabs-content {
		  margin-left: 0px;
		  margin-top: 30px;
	  }
	  .contact-item {
		  margin-bottom: 30px;
	  }
  }
/* Covid-19 css */
.header1{
	color: #f35214 !important;
	padding-bottom: 0;
}
.header2{
	color: #F7BE47 !important;
	padding-bottom: 0;
}
.atalsaheta h2 em, .kinnersaheta h2 em{
	font-size: 24px;
}
.atalsaheta ul, .kinnersaheta ul{
	columns: 2;
  	-webkit-columns: 2;
  	-moz-columns: 2;

}
.inroductionSec .inroduction{
	border-left: 5px solid #f35214;
	border-top: 5px solid #f35214;
}
.inroductionSec .Chelpline{
	border-right: 5px solid #F7BE47;
	border-bottom: 5px solid #F7BE47;
}
.inroductionSec .container{
	border-bottom: 1px solid #f2e5e5;
}
.how-section1{
    margin-top:0;
    padding: 3% 0;
}
.how-img{
    text-align: center;
}
#call-outbox{
	padding: 60px 0 !important;
	margin-top: 2% !important;
	background-color: #f35214 !important;
}
#call-outbox .container{
 padding: 2% 10px !important;
 margin-top: -100px !important;
 background-color: #fff !important;
 box-shadow: 0px 2px 18px 0px rgb(0 0 0 / 30%) !important;
 border-bottom: 5px solid #F7BE47 !important;
}
#call-outbox .container h3{
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
}
.fa-hand-o-right{
	color: #f35214 !important;
}
@media screen and (max-width: 992px){
	.Img-gallary img{
		padding: 0 0 5px 0 !important;
	}
	#call-outbox{
		padding: 30px 0 !important;
		margin-top: 0 !important;
	}
	#call-outbox .container{
		padding: 2% 10px !important;
		margin-top: 0 !important;
	}
	#call-outbox .container h3{
		font-size: 25px;
	}
}
@media screen and (max-width: 600px) {
	#call-outbox{
		padding: 20px 10px !important;
	}
	#call-outbox .container h3{
		font-size: 13px;
	}
	.Img-gallary .col-lg-2{
		padding: 0 !important;
	}
}
.Img-gallary{
	padding: 40px 0;
	margin-bottom: 6%;
}
.Img-gallary .col-lg-2{
	padding: 0 10px !important;
}
/* Image gallary Design Starts here Please Don't Touch */
.carousel-item img{
  	height: auto !important;
}
@media (min-width: 576px){
	.carousel-item img{
		height: 350px;
	}
}

/* Gallery Design Starts here */
#gallery{
	padding-bottom: 20px;
	margin: 0;
}
#gallery img:hover{
	transform: scale(1.1);
	cursor: pointer !important;
}
* {
  transition: 0.3s;
}
/* Modal Style starts here */
.modal-content{
	border: 2px solid #f35214 !important;	
}
.modal-header button{
	background: none;
    border-radius: 100px 100px 0 0;
    padding: 5px 10px !important;
    opacity: 1;
    position: relative;
    top: 3px;
    border: solid 2px white !important;
}
.modal-body{
	padding: 0;
    border: none;
    position: relative;
}
.modal-footer{
	border: none;
}
@media (min-width: 992){
	.modal-footer{
		margin-top: 40px;
	}
}
.modal-footer .btn{
    border: solid 1px rgb(180, 165, 165);
    background: #f35214;
	color: #fff;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 0.2em 0.7em;
}  
.carousel-control-prev, .carousel-control-next {
    font-size: 2em;
    top: auto;
    opacity: 1;
    bottom: -52px;
    
	@media (min-width: 768px) {
	  top: 0;
	  opacity: 0.5;
	  bottom: 0;
	}
  }
.carousel-control-next-icon,  .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
  }
.carousel-control-prev {
	@media (min-width: 768px) {
	  left: -90px;
	}
  }
.carousel-control-next {
	@media (min-width: 768px) {
	  right: -90px;
	}
  }
  .carousel-indicators{
	bottom: -60px;
  }
  @media (min-width: 992px) {
	.carousel-indicators{
		bottom: -30px;
	  }
  }
  .carousel-indicators li{
	height: 30px;
	border-radius: 100px;
	background: none;
	border: solid 2px white;
  }
  @media (min-width: 992px){
	.carousel-indicators li{
		height: 10px;
	}
  }
  .carousel-indicators li:hover{
	background: white;
  }

/* // --- END: custom styling demo --- // */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

@media (min-width: 576px) {
  .switch {
	margin: 0;
  }
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
.switch-wrap {
  text-align: center;
  background-color: #b1fbc1;
  padding: 30px;
  border-radius: 3px;
  margin: 30px 0 0;
}

@media (min-width: 576px) {
  .switch-wrap {
	position: fixed;
	bottom: 0;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	width: 100%;
	justify-content: center;
	padding: 10px;
  }
}
}


/* Image gallary Design End here Please Don't Touch */

.aboutbody{
	padding: 40px 0;
}
@media screen and (max-width: 900px){
	.aboutbody{
		padding: 30px 0;
	}
}
@media screen and (max-width: 600px){
	.aboutbody{
		padding: 20px 0;
	}
}

/* Meet Our team section */
.ofcbearers{
	/* background-color: #008b8b; */
	background-color: #b8bfab;
}
.ofcbearers h2{
	color: #fff;
}
.ofcbearers .carousel-inner,
.advisory .carousel-inner{
	padding-bottom: 20px;
}
@media screen and (max-width: 900px){
	.advisory .blank{
		display: none !important;
	}
}
  /* PROFIL */
  .blog .carousel-indicators {
	  left: 0;
	  top: auto;
	  bottom: -40px;
  
  }
/* The colour of the indicators */
  .blog .carousel-indicators li {
	  background: #a3a3a3;
	  border-radius: 50%;
	  width: 8px;
	  height: 8px;
	  margin-bottom:10px;
	  
  }
.blog .carousel-indicators .active {
  background: #707070;
  margin-bottom:10px;
  }
.our-team-section {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
  }
  .our-team-section:before {
	position: absolute;
	top: -0;
	left: 0;
	content: " ";
	background: url(img/service-section-bottom.png);
	background-size: 100% 100px;
	width: 100%;
	height: 100px;
	float: left;
	z-index: 99;
  }
  .our-team {
	padding: 0;
	background: #f9f9f9;
	text-align: center;
	overflow: hidden;
	position: relative;
	border-bottom: 5px solid #ab0d02;
	border-top: 5px solid #ab0d02;
	border-radius: 10px;
}
  .our-team:hover {
	border-bottom: 5px solid #F7BE47;
	border-top: 5px solid #F7BE47;
  }
  
  .our-team .pic {
	display: inline-block;
	width: 160px;
	height: 160px;
	margin-bottom: 10px;
	z-index: 1;
	position: relative;
  }
  .our-team:hover .pic:after {
	background: #145889;
  }
  .our-team .pic img {
	width: 100%;
	height: 100%;
	/* border-radius: 50%; */
	transform: scale(1);
	transition: all 0.9s ease 0s;
	position: relative;
	z-index: 2;
  }
  .our-team .team-content {
	margin-bottom: 30px;
  }
  .our-team .title {
	font-size: 18px;
	font-weight: 700;
	color: #4e5052;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 5px;
  }
  .our-team .post {
	display: block;
	font-size: 15px;
	color: #4e5052;
	text-transform: uppercase;
  }
  .our-team .social {
	width: 100%;
	padding-top: 10px;
	margin: 0;
	background: #ab0d02;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
  }
  .our-team:hover .social {
	bottom: 0;
	background: #F7BE47;
  }
  .our-team .social li {
	display: inline-block;
  }
  .our-team .social li a {
	display: block;
	padding-top: 6px;
	font-size: 15px;
	color: #fff;
	transition: all 0.3s ease 0s;
  }
  .our-team .social li a:hover {
	color: #145889;
	background: #f7f5ec;
  }
  @media only screen and (max-width: 990px) {
	.our-team {
	  margin-bottom: 10px;
	}
  }

/* Meet Our Team section end here */

/* Social service page start here */
.eventsec .how-section1{
	padding: 15px 0 !important;
}
.eventsec h2{
	color: #fff !important;
	vertical-align: middle;
    line-height: 120px;
}
.container-fluid{
	padding: 0 !important;
}
.socio-imgsec .col-lg-2{
	padding: 0 10px !important;
}
@media screen and (max-width: 992px){
	.socio-imgsec img{
		padding: 0 0 5px 0 !important;
	}
}
@media screen and (max-width: 600px) {
	.socio-imgsec .col-lg-2{
		padding: 5px 10px !important;
	}
}
/* Social service page end here */
/* Contact page design */
  .contact-information p{
	  text-align: center;
  }
/* Nuakhai Bhetghat 2023 section */
#bhetghat body, #bhetghat25 body{
	background-color: #0b161e;
}
#bhetghat .sub-header, #bhetghat25 .sub-header{
	background: none;
	border-bottom: 1px solid rgba(250,250,250,0.3);
}
#bhetghat header, #bhetghat25 header{
	/* border-bottom: 12px dotted #fff; */
	background: none !important;
}
#bhetghat .navbar .navbar-nav a.nav-link, #bhetghat25 .navbar .navbar-nav a.nav-link{
	color: #fff;
	position: relative;
	font-family: "green_manplain",sans-serif;
    text-transform: uppercase;
}
#bhetghat .navbar .navbar-nav a.nav-link:hover,
#bhetghat .navbar .navbar-nav a.nav-link,
#bhetghat25 .navbar .navbar-nav a.nav-link:hover,
#bhetghat25 .navbar .navbar-nav a.nav-link{
	color: #F7BE47;
	border: none;
}
#bhetghat .navbar .navbar-nav a.nuakhai-btn:hover::after,
#bhetghat .navbar .navbar-nav #ticket a.nav-link:hover::after,
#bhetghat25 .navbar .navbar-nav a.nuakhai-btn:hover::after,
#bhetghat25 .navbar .navbar-nav #ticket a.nav-link:hover::after{
	display: none !important;
}
#bhetghat .navbar .navbar-nav a.nav-link:hover::after,
#bhetghat25 .navbar .navbar-nav a.nav-link:hover::after{
	content: '';
    display: block;
    position: absolute;
    bottom: -3rem;
    height: 3rem;
    width: 100%;
    background-image: url(/assets/images/Lineup.svg);
    background-repeat: no-repeat;
    background-size: 100% 15px;
}
#bhetghat .navbar .navbar-nav .nav-item,
#bhetghat25 .navbar .navbar-nav .nav-item{
	padding: 15px 1rem;
}
#bhetghat .navbar .navbar-nav #ticket,
#ticketmob,
#bhetghat25 .navbar .navbar-nav #ticket{
	background-image: url(/assets/images/Circle_Yellow.png) !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: top 0 center !important;
    font-size: 1.8rem !important;
}
#bhetghat .navbar .navbar-nav #ticket:hover,
#ticketmob:hover, #bhetghat25 .navbar .navbar-nav #ticket:hover{
	background-image: url(/assets/images/Circle_Red.png) !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: top 0 center !important;
    font-size: 1.8rem !important;
}
#ticketmob{
	color: #F7BE47;
    text-transform: uppercase;
	padding: 20px 16px;
    font-size: 14px !important;
	display: none;
}
#ticketmob:hover{
    font-size: 14px !important;
}
#bhetghat .navbar .navbar-toggler,
#bhetghat25 .navbar .navbar-toggler{
	background-color: transparent !important;
}
.bhetghatbanner {
	margin-top: -5%;
}
#bhetghat .header-img,
#bhetghat25 .header-img{
	display: table;
    margin: 0 auto;
}
#bhetghat .header-img img,
#bhetghat25 .header-img img{
	width: 100%;
    max-width: 400px;
    height: auto;
}
#bhetghat img.locationleaf,
#bhetghat25 img.locationleaf{
	position: absolute;
    height: 100px;
    width: 100px !important;
} 
@media screen and (max-width: 992px){
	#bhetghat .header-img img,
	#bhetghat25 .header-img img{
		max-width: 250px;
	}
	.bhetghatbanner {
		margin-top: -2%;
	}
	#bhetghat .navbar .navbar-nav #ticket, #bhetghat25 .navbar .navbar-nav #ticket{
		display: none !important;
		
	}
	#bhetghat .navbar .navbar-nav .nav-item, #bhetghat25 .navbar .navbar-nav .nav-item{
		padding: 0;
		border-bottom: 1px solid;
	}
	#ticketmob{
		display: block;
	}
	#bhetghat .our-team .post, #bhetghat25 .our-team .post{
		padding: 0 20px;
	}
	#bhetghat .navbar .navbar-nav a.nav-link:hover::after, #bhetghat25 .navbar .navbar-nav a.nav-link:hover::after{
		background-image: none;
	}
	#bhetghat img.locationleaf, #bhetghat25 img.locationleaf{
		height: 60px;
		width: 60px !important;
	}
}
@media screen and (max-width: 600px) {
	#bhetghat .header-img img, #bhetghat25 .header-img img{
		max-width: 200px;
	}
	.bhetghatbanner {
		margin-top: 0;
	}
	#bhetghat .our-team .post, #bhetghat25 .our-team .post{
		padding: 0 30px;
	}
	#bhetghat img.locationleaf, #bhetghat25 img.locationleaf{
		height: 50px;
		width: 50px !important;
	}
}
#bhetghat .highlights .our-team, #bhetghat25 .highlights .our-team{
	padding: 0 !important;
	background: none;
	border: none;
}
#bhetghat .highlights .our-team .pic img, #bhetghat25 .highlights .our-team .pic img{
	transition: all 0.2s ease 0s;
}
#bhetghat .highlights .our-team:hover .pic img, #bhetghat25 .highlights .our-team:hover .pic img{
	width: 105% !important;
    height: 105% !important;
}
#bhetghat img.eventbtrfly, #bhetghat25 img.eventbtrfly{
	position: absolute;
    height: 50px;
    width: 50px !important;
}
#bhetghat .Modern-Slider, #bhetghat25 .Modern-Slider{
	background: none;

}
#bhetghat h2, #bhetghat25 h2{
    color: #fff;
    font-size: 50px !important;
    text-transform: uppercase;
}
#bhetghat .our-team .title, #bhetghat25 .our-team .title{
	color: #bbda72 !important;

}
#bhetghat .our-team .post, #bhetghat25 .our-team .post{
	font-size: 13px;
    color: #eefcd2;
}
#bhetghat .venuelocation h2, #bhetghat25 .venuelocation h2{
	font-size: 30px !important;
}
#bhetghat .venuelocation p, #bhetghat25 .venuelocation p{
	color: #fff !important;
	text-align: unset;
}
#bhetghat .venuelocation .address, #bhetghat25	 .venuelocation .address{
	padding-top: 5%;
}
#bhetghat .venuelocation .mappin, #bhetghat25 .venuelocation .mappin{
	padding-top: 3%;
}
.maplocationmob{
	display: none !important;
}
.mapouter{
	height: auto !important;
}
@media screen and (max-width: 766px) {
	.maplocation{
		display: none;
	}
	.maplocationmob{
		display: block !important;
	}
	#bhetghat .venuelocation .mappin, #bhetghat25 .venuelocation .mappin{
		padding-top: 0;
	}
	#bhetghat .venuelocation .mappin img, #bhetghat25 .venuelocation .mappin img{
		height: 80px;
		width: 40px !important;
		margin: 0 auto;
	}
	#bhetghat .venuelocation h2, #bhetghat25 .venuelocation h2{
		font-size: 25px !important;
		text-align: center;
	}
	#bhetghat .venuelocation p, #bhetghat25 .venuelocation p{
		text-align: center;
	}
	#bhetghat .venuelocation h2, #bhetghat25 .venuelocation h2{
		font-size: 20px !important;
	}
}
.latestupdate img{
	height: 250px;
    width: auto !important;
    margin: 0 auto;
}
#bhetghat .partners, #bhetghat25 .partners{
	background-color: transparent !important;
	padding: 0 !important;
}
#bhetghat .partners .partner-item img , #bhetghat25 .partners .partner-item img{
    max-width: initial !important;
}
#bhetghat footer, #bhetghat25 footer{
	background-color: transparent;
	border-top: 1px solid rgba(250, 250, 250, 0.3);
}
/* FLOATING SIDEBAR */
.stickyticktbtn{
	display: none;
}
.stickyticktbtn ul {
  	clear: both;
	position: fixed;
	top: 25%;
	z-index: 9999;
	right: 3px;
}
@keyframes slideright {
	100% {
		right: 0;
	}
}
.stickyticktbtn ul li {
  	margin-bottom: 40px;
  	margin-right: 0;
  	padding: 10px;
	background: linear-gradient( #f5af19, #f12711) !important;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
  
	-webkit-transition: width .5s, background-color .1s;
	transition: width .5s, background-color .1s;

}
.stickyticktbtn ul li a {
	font-size: 12px;
	text-transform: none;
	text-align: center;
  	text-decoration: none;
	color: #ebebeb;
}

.stickyticktbtn ul li:hover {
	background: linear-gradient( #f12711, #f5af19) !important;
	color: #fff;
}
.stickyticktbtn button{
	background: none;
    border: none;
    color: #fff;
    text-transform: uppercase;
	padding: 0 !important;
}
.stickyticktbtn button:focus{
	outline: none !important;
}

/* Major Attraction */

.majorattraction .card {
	flex-direction: row;
	align-items: center;
	margin-bottom: 30px;
	background-color: transparent !important;
	border-width: 3px;
  	border-style: solid;
	/* border-image:linear-gradient(to bottom,red, rgba(0, 0, 0, 0)) 1 100%; */
	border-image: linear-gradient(to left, rgba(0, 0, 0, 1) 1%, #fb7099  50%, rgba(0, 0, 0, 1) 100%) 
              100% 0 100% 0/3px 0 3px 0 stretch;
    border-radius: 10px;
}
.majorattraction .card:hover{
	border-image: linear-gradient(to left, rgba(0, 0, 0, 1) 1%, rgb(245, 175, 25) 50%, rgba(0, 0, 0, 1) 100%) 
              100% 0 100% 0/3px 0 3px 0 stretch;
}
  .majorattraction .card-body {
	padding:10px;
  }
  .majorattraction .card-title {
	font-weight: bold;
	color: #fff !important;
  }
  .majorattraction .card-text{	  
	font-size: 13px !important;
	line-height: initial !important;
	color: #eefcd2 !important;
  }
  .majorattraction .card img {
	width: 35%;
	border-top-right-radius: 0;
	border-bottom-left-radius: calc(0.25rem - 1px);
  }
@media screen and (max-width: 992px) {
	.majorattraction .card {
		flex-direction: column;
		height: auto;
	}
	.majorattraction .card img {
		width: 50%;
	}
	.majorattraction .col-md-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.majorattraction .card-title,
	.majorattraction .card-text {
		text-align: center;
	}
	  
}
@media screen and (max-width: 766px) {
	.majorattraction .card-body .card-text {
	  margin: 0;
	}
}

.social-icons img{
	border-radius: 50%;
    height: 50px;
    width: 50px;
}

/* Floating Video */
/* / Give the page a bit of height so that we can scroll */

section.main-wrapper {
    max-width: 520px;
    margin: 30px auto;
}

section.videowrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
	z-index: 9999;
}

.videowrapper iframe,.videowrapper video {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
h3.play-video {
    text-transform: capitalize;
    text-align: center;
    color: #f5af19;
	font-size: 28px !important ;
	padding-bottom: 10px;
}
@media screen and (max-width: 766px){
    h3.play-video {
		font-size: 20px !important ;
	}
}

/** Use .sticky */

.ytvideo .is-sticky,.videoTag .is-sticky{
    position: fixed;
    right: 3px;
    bottom: 3px;
    top: auto;
    left: auto;
    max-width: 280px;
    max-height: 158px;
    width: 280px;
    height: 158px;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.close-button {
    position: fixed;
    box-sizing: border-box;
    display: block;
    right: 24px;
    bottom: 175px;
    top: auto;
    left: auto;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: none;
}

.close-button:before,
.close-button:after {
    width: 20px;
    height: 5px;
    transform: rotate(-45deg);
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background-color: #fff;
    transition: all 0.2s ease-out;
}

.close-button:after {
    transform: rotate(45deg);
}

.close-button:hover:after {
    transform: rotate(-45deg);
}

.close-button:hover:before {
    transform: rotate(45deg);
}

.gradient-overlay {
    position: fixed;
    right: 3px;
    bottom: 3px;
    top: auto;
    left: auto;
    max-width: 280px;
    max-height: 158px;
    width: 220px;
    height: 130px;
    opacity: .01;
    background: #000;
    z-index: 99999 !important;
    display: none;
}

i.fa.fa-arrows-alt {
    position: fixed;
    right: 8px;
    bottom: 5px;
    top: auto;
    left: auto;
    color: #fff;
    z-index: 2;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1023px) {
    section.main-wrapper {
        width: 95%;
    }
    section.level {
        height: 150px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 766px){
    section.main-wrapper {
		max-width: 300px;
	}
}
/* Nuakhai Bhetghat 2023 section */

/* Nuakhai Bhetghat 2025 section starts here */

#bhetghat25 .bhetghatbanner {
    margin-top: 0;
}
#bhetghat25 .underConstruction img {
	display: flex;
	width: 100%;
	height: auto;
	margin: 0 auto;
	height: auto;
	padding: 50px 0;
}
.partnerGallery #partner-item img {
	width: 180px;
	height: auto;
	border-radius: 10px;
	display: flex;
	margin: 0 auto;
}
@media screen and (max-width: 766px){
    .partnerGallery #partner-item img {
		margin: 0 auto;
		display: flex;
	}
}	
.Samma-sub-header{
	text-transform: uppercase;
    font-size: 15px;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
/* Nuakhai Bhetghat 2025 section end here */
