@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
html, body{
font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #5D5D5C;
  background: #f1f1f1;
}
p{
	font-size:18px;
}

/***********************************************************************************
 *	+ HEADER CONTAINER
 ***********************************************************************************/

 #header-container {
	position: fixed;
	z-index: 8080;
	left: 0;
	/* right: 0; */
	background: #FFF;
	height: 100vh;
	overflow-y: scroll;
}

nav{
width: 100%;
/* float:left; */
}

@media (max-width: 767px) {

	#header-container {
		position: relative;
	}

}

/***********************************************************************************
*	+ HEADER
***********************************************************************************/

#header {
	position: relative;
	/* padding: 0 30px; */
}

#header [class^="col-"] {
	position: static;
}

@media (min-width: 1200px) {

	#header-container [class^="col-"] {
		position: relative;
	}

}

@media (max-width: 991px) {

	#header {
		padding: 0;
	}

}

/***********************************************************************************
*	- LOGO
***********************************************************************************/

#logo {
	min-width: 87%;

    padding: 40px 51px;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
			float:left;
}

#logo a {
	display: inline-block;
	max-width: 100%;
	text-align: center;
}

@media (max-width: 767px) {

	#logo {
		margin-right: 60px;
	}

}


/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 1000px) {
	#logo {
		min-width: 30%;
		max-width: 20%;
		padding: 20px 10px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		float: none;
}

}




@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3){

	#logo {
		margin-right: 60px;
		float:none;	
		
	}
/* Styles */
}




/***********************************************************************************
*	- MENU
***********************************************************************************/

 .menu,
.menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu {
	/* float: right; */
}

.menu > li {
	/* float: left;  */

}

.menu li a {
	display: block;
	padding: 5px 37px;
	margin: 5px 0;
	color: #999;
	font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.2s;
			transition: all 0.2s;
}

.menu > li > a {
	position: relative;
	padding: 19px 36px;
	margin: 0;
	margin-right:10px;
	font-size: 18px;
	line-height: 24px;
}

.menu > li > a:first-child {
	/* padding-left: 0; */
}

.menu > li:last-child > a {
	margin-right: 0;
}

.menu li{
	position:relative;
	border-bottom:1px solid #f1f1f1;
}
.menu li.dropdown ul {
	position: absolute;
	z-index: 2000;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	background-color: #ED1C24;
}

.menu li.dropdown ul li a {
	position: relative;
}

.menu li.dropdown ul li a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	border-left: 5px solid #fff;
	opacity: 0;
	content: "";
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.menu li.dropdown ul li a:hover:before,
.menu li.dropdown ul li.sfHover > a:before {
	opacity: 1;
}

.menu li.dropdown ul ul {
	top: -6px;
	left: 100%;
}

.menu li.dropdown:hover > ul {
	display: block;
}

.menu li.megamenu .megamenu-container {
	position: absolute;
	z-index: 2000;
	top: 100%;
	left: 0;
	display: none;
	padding: 20px 0;
	width: 100%;
	border: 1px solid #333;
	background-color: #1c0533;
}

.megamenu-container .section {
	float: left;
	width: 25%;
	border-right: 1px solid #333;
}

.megamenu-container .section:last-child {
	border-right: none;
}

.megamenu-container.col-2 .section {
	width: 50%;
}

.megamenu-container.col-3 .section {
	width: 33.33333333%;
}

.megamenu-container.col-4 .section {
	width: 25%;
}

.megamenu-container.col-5 .section {
	width: 20%;
}

.menu li.megamenu ul li a {
	position: relative;
}

.menu li.megamenu ul li a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	border-left: 5px solid #fff;
	opacity: 0;
	content: "";
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.menu li.megamenu ul li a:hover:before {
	opacity: 1;
}

.menu li.megamenu:hover > .megamenu-container {
	display: block;
}

.sf-arrows .sf-with-ul:after {
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "FontAwesome";
	content: "\f107";
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}

.sf-arrows > li:hover > .sf-with-ul:after {}

.sf-arrows ul .sf-with-ul:after {
	right: 15px;
	content: "\f105";
}

.sf-arrows ul li:hover > .sf-with-ul:after {}


.menu li.active > a
{
	color: #fff;
	text-decoration: none;
}

.menu li.sfHover > a {
	/* color: #fff; */
	text-decoration: none;
}

@media (min-width: 768px) and (max-width: 991px) {

	.menu {
		display: none;
	}

}

@media (max-width: 767px) {

	.menu {
		display: none;
	}

}

/***********************************************************************************
*	- MOBILE MENU
***********************************************************************************/

#mobile-menu-button {
	position: absolute;
	top: 28px;
	right: 15px;
	display: none;
	font-size: 24px;
	line-height: 24px;
	color:#fff;
}

#mobile-menu-button:hover,
#mobile-menu-button:focus {
	color: #fff;
}

#mobile-menu,
#mobile-menu ul {
	list-style: none;
	display: none;
	margin: 0;
	background-color: #ED1C24;
	padding:0px;
	margin:0px;
}

#mobile-menu {
	border-bottom: 1px solid #fff;
}

#mobile-menu li a {
	display: block;
	padding: 10px 20px;
	border-top: 1px solid #fff;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
}

#mobile-menu > li > a {
	font-size: 14px;
	font-weight: 500;
}

#mobile-menu ul a {
	padding-left: 40px;
}

#mobile-menu ul ul a {
	padding-left: 60px;
}

#mobile-menu .megamenu-container {
	display: none;
	margin-left: 0;
}

#mobile-menu .megamenu-container .section {
	float: none;
	width: 100%;
	margin-bottom: -1px;
	padding: 0 20px 20px 20px;
}

#mobile-menu .megamenu-container .section ul {
	display: block;
	margin: 0 -25px -20px;
}

#mobile-menu .megamenu-container .section ul a {
	padding-left: 40px;
}

#mobile-menu .megamenu-container .section > ul li a:before {
	display: none;
}

#mobile-menu .megamenu-container .section ul li:last-child a {
	border-bottom: 1px solid #fff;
}

#mobile-menu li.dropdown > a,
#mobile-menu li.megamenu > a {
	position: relative;
}

#mobile-menu li.dropdown > a:after,
#mobile-menu li.megamenu > a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	font-family: "FontAwesome";
	font-size: 15px;
	content: "\f107";
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}

#mobile-menu li.dropdown > a.open:after,
#mobile-menu li.megamenu > a.open:after {
	content: "\f106";
}

#mobile-menu li.search a {
	display: none;
}

@media (min-width: 768px) and (max-width: 991px) {

	#mobile-menu-button {
		display: block;
	}

}

@media (max-width: 767px) {

	#mobile-menu-button {
		display: block;
	}

}

/***********************************************************************************
*	- STICKY
***********************************************************************************/

#header-sticky [class^="col-"] {
	position: static;
}

#header-sticky.header-sticky-small #logo {
	padding: 10px 0;
}

#header-sticky {
	position: fixed;
	z-index: 8000;
	top: 0;
	right: 0;
	left: 0;
	display: none!important;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
	background-color: #1c0533;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

#header-sticky.header-sticky-small .menu > li> a {
	padding-top: 17px;
	padding-bottom: 17px;
}

#header-sticky.header-sticky-small #search-form {
	top: 4px;
}

@media (min-width: 1200px) {

	#header-sticky:after {
		width: 35%;
	}

	#header-sticky [class^="col-"] {
		position: relative;
	}

}

@media (min-width: 768px) and (max-width: 991px) {

	#header-sticky {
		visibility: hidden;
	}

}

@media (max-width: 767px) {

	#header-sticky {
		visibility: hidden;
	}

}




/***********************************************************************************
*	- Profile
***********************************************************************************/

.profile img {
border: 1px solid #111;
border-radius: 50%;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset;
display: inline;
float: left;
width: 25px;
width:35px;
height:35px;
}

.profile{ float:left;}
.profile ul{ right:0; left:0; margin:0 auto!important; float:left;}
.profile ul li{}

























.dropbtn {
padding:0px;
border: none;
cursor: pointer;
}

.dropbtn img{	border-radius:50%;
width:35px;
height:35px;
}


.dropdown-content {
display: none;
position: absolute;
right: 0;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
background:#fff;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
display: block;
}

.dropdown:hover .dropbtn {
}


	.foot1{
		padding-top: 100px;
	}
.logoset{
	    width: 0;
		background-color: #fff;
		/* padding: 10px; */
}

.bg-index{
	background-image:-webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),  url(../images/banner.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	height: 100vh;
}
.textbox{

	color: #fff;
}
.hometext{
	background: rgba(255,127,127, 0.8);
	width: 520px;
	padding: 40px;
	font-size:10px;

	margin: 0 auto;
	margin-top: 36vh;
	/* position: absolute; */
}
.hometext h1{

font-size: 30px!important;

}
.pad-l-30{
	padding-left: 36px;
}
.ng-foot{
	background: #ED1C24;
	color: #fff;
	bottom: 0!important;
    position: fixed;
	width: 100%;
	margin: 0 auto;
}
.quote{
	float: left;
    font-size: 70px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
    margin-top: 16px;
    color: #fff;
    margin-right: 10px;
}
.mar-t-50{
	margin-top: 50px;
}
.quote1{
	/* float: right; */

	font-size: 70px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
    margin-top: -22px;
    color: #fff;
    margin-left: 5px;
    position: absolute;
}
.bg-about{
padding-bottom:50px;
}
.pad-t-100{
	padding-top:100px;
}
.abothead{
	color: #ed0482;
	font-size:30px;
	font-weight: bold;
	text-transform: uppercase;
}
.abothead4{
	color: #ed0482;
	font-size:25px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 15px;
}
.pad-l-20{
	/* padding-left: 40px; */
}
.aboutbox{
margin-top: 8vh;
	background-color:rgba(255, 255, 255, 1);
	padding: 50px;
	text-align: justify;
}
.aboutbox1{

	background-color:rgba(255, 255, 255, 1);
	padding: 50px;
	text-align: justify;
}
.aboutbox2{

	background-color:rgba(255, 255, 255, 1);
	padding: 50px;
	text-align: justify;
}
.aboutbox-gal{
	background-color:rgba(255, 255, 255, 1);
	padding: 50px;
	text-align: justify;
	display: grid;
}
.bg-set{
	padding:10px 30px;
}
.img-bod{
	/* border: 2px solid #fff; */
	margin-top: -100px;
	margin-left: 40px;
	padding: 0px 70px 20px;
}
.bg-contact{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/contact.jpg);
width: 100%;
height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow-y: scroll;
	background-attachment: fixed;

}
.bg-mar{
	margin-bottom: 40px;
}
.bg-img-set{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/aboutbg.jpg);
width: 100%;
height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  background-attachment: fixed;

}

.bg-services{
	background-image: url(../images/bg-invite.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		/* background-position: center; */
}
.bg-design-decor{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/design-decor.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
}
.bg-bride1{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-bride.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
}
.bg-wedding-enter{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-wedding.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		/* background-position: center; */
    background-attachment: fixed;
    padding-bottom: 20px;
}
.bg-light-sound{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-light.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
}
.bg-gifts{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-gifts.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
}
.bg-catering{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-catering.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
}
.bg-photo-video{
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/bg-photo.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
    background-attachment: fixed;
    /* padding-bottom: 20px; */
}
.bg-ceremonies{
	background-image:  url(../images/about3.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
    background-attachment: fixed;
    /* padding-bottom: 50px; */
}
.bg-objects{
	background-image:  url(../images/obj.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
    background-attachment: fixed;
    /* padding-bottom: 50px; */
}
.bg-gallery{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/serv2.jpg);
	width: 100%;
	/* height: 100vh; */
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	background-attachment: fixed;
	overflow-y: scroll;
}
.bg-galleryvideos{
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),  url(../images/serv2.jpg);
	width: 100%;
	height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	background-attachment: fixed;
	overflow-y: scroll;
}
.mar-center{
margin-top: 30vh;
}
.pad-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.mart-t-30{
	margin-top: 30px;
}
.objects-list ul li{
list-style: none;
margin-bottom: 10px;
}

.objects-list ul{
	margin: 0;
  padding-left: 0;
}
.mar-center1{
	margin-top: 10vh;
}
.mar-center2{
	margin-top: 6vh;
}
.pad-t-70{
	padding-top: 50px;
}
.mar-t-20{
	margin-top: 20px;
}

/* lightbox */
#photos img {
	/* width: 24%; */
	/* float: left; */
	display: block;
	/* height: 200px; */
	margin: 5px;
	border-radius: 5px;
  }

  #photo-gallery {
	list-style: none;
	display: block;
	max-width: 100%;
	height: auto;
	text-align: center;
  }

  #invis{
	color:white;
  }
  .about{
	text-align:center;
	font-size:20px;
	margin-top: 70px;
	margin-bottom:30px;
	width:680px;
	margin-left:16%;
  }
  .pt-3 strong{
	font-weight: 700;
  }
  .one-kind{
	line-height: 0px;
  }
  .paragraph {
	width: 680px;
	margin: 0px auto;
	text-align: justify;
	padding: 0 30px;
  }
  .lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
  }

  .lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
  }

  .lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	border-radius: 3px;
  }

  .lightbox a img {
	border: none;
  }

  .lb-outerContainer {
	position: relative;
	background-color: white;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
  }

  .lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
  }

  .lb-container {
	padding: 4px;
  }

  .lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
  }

  .lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(https://raw.githubusercontent.com/lokesh/lightbox2/master/src/images/loading.gif) no-repeat;
  }

  .lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
  }

  .lb-container > .nav {
	left: 0;
  }

  .lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  }

  .lb-prev,
  .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
  }

  .lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../images/prev.png) left 48% no-repeat;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }

  .lb-nav a.lb-prev:hover {
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

  .lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../images/next.png) right 48% no-repeat;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }

  .lb-nav a.lb-next:hover {
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

  .lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
  }

  .lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
  }

  .lb-data {
	padding: 0 4px;
	color: #ccc;
  }

  .lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
  }

  .lb-data .lb-caption {
	font-size: 13px;
	line-height: 1em;
  }

  .lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
  }

  .lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(../images/close.png) top right no-repeat;
	text-align: right;
	outline: none;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;

  }

  .lb-data .lb-close:hover {
	cursor: pointer;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }
  .bg-bod{
	  border: 1px solid #f1f1f1;
	  padding: 20px;
  }
  .bg-bod i{
color: #3FC1BE;
font-size:35px;
}
.text-height{
	background-color: #f1f1f1;
	height: 60px;
	border: none;

}
.text-height1{
	background-color: #f1f1f1;
	/* height: 60px; */
	border: none;

}

.menu li:hover a:hover{
	color: #fff!important;
}
.menu li:first-child:hover{
background: #ED1C24;
color: #fff!important;
}
.menu li:nth-child(2):hover{
	background: #3CBCB6;
	color: #fff!important;
	}
	.menu li:nth-child(3):hover{
		background: #ED0482;
		color: #fff!important;
		}
		.menu li:nth-child(4):hover{
			background: #8DC63F;
			color: #fff!important;
			}
			.menu li:nth-child(5):hover{
				background: #FFC20E;
				color: #fff!important;
				}
				.menu li:nth-child(6):hover{
					background: #3CBCB6;
					color: #fff!important;
					}
					.menu li:nth-child(7):hover{
						background: #348D6D;
						color: #fff!important;
						}
						.menu li:nth-child(8):hover{
							background: #5357A6;
							color: #fff!important;
							}
							.menu li:nth-child(9):hover{
								background: #822A81;
								color: #fff!important;
								}
.bg-img1 .col-lg-5{

background-image: url(../images/wedding-ring.jpg);
background-repeat:no-repeat;
background-size:cover;
}



.pad-t-50{
	padding-top: 30px;
}
.pad-t-10 {
  padding-top: 10px;
}

::-webkit-scrollbar {
	width: 10px;
	display: none;
  }

  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: red;
	border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #b30000;
  }
  .bg-design .col-lg-4{
	background-image: url(../images/decor.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-bride .col-lg-4{
	background-image: url(../images/bride.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-wed .col-lg-4{
	background-image: url(../images/wed.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-lightsound .col-lg-4{
	background-image: url(../images/light.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-gift .col-lg-4{
	background-image: url(../images/wedgifts.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-cater .col-lg-4{
	background-image: url(../images/cat.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-invite .col-lg-4{
	background-image: url(../images/invites.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
  .bg-photo .col-lg-4{
	background-image: url(../images/phot.jpg);
	background-repeat:no-repeat;
	background-size:cover;
  }
.engagaed:hover{
	text-decoration: none;
}
.div-hovering:hover{
	background-color: #f1f1f1;
	border-radius: 10px;
}
.div-hovering{
	padding: 20px;
}


  .img-setts{
  	width: 250px;
      height: 140px;
    }

.serv-list li a {
  color: #fff;
  margin-top: 0;
  padding: 10px;
}
/* .submenu{display:none;} */
.div-bottom{
	margin-top: 56vh;
}


.aboutbox1-in{
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px;
    text-align: justify;
    width: 500px;
    position: fixed;
    right: 50px;
    float: right;
    bottom: 50px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.6);
}

.bg-vit{
	height: 100vh;
}
.bg-vit2{
	height: 100vh;
}
.bg-vit-gal{
	height: 100vh;
}

.bg-cer1{
	width: 400px;
}
.mar-t-5{
	margin-top:10px;
}
.mar-20{
	margin-left: 20px;
}
.mar-t-30{
	margin-top: 30px;
}

@media (max-width: 800px) {
	.mar-t-5{
		margin-top:3px;
	}
	.bg-vit-ser{
		height:auto;
		margin-top: -61vh!important;
}
  #header-container {
    position: relative;
    background: none;
    /* height: 100vh; */
}
.div-cla {
    margin-top: -55vh;
width: 430px;
}
.div-cla h1 {
  font-size: 22px!important;
}


.bg-abt{
    margin-top: -57vh;
      padding: 20px;
}

.aboutbox1-inmb {
  background-color: rgba(255, 255, 255, 1);
  padding: 30px;
  margin: 0 auto;
  float: none;
  /* bottom: 0; */
  position: initial;
  }
  .bg-vit{
    height: auto;
margin-top: -54vh!important;
  }
 /* .bg-vit-gal{
	height: auto;
	margin-top: -54vh!important; 
 } */
  .fir {
    margin-top: 30px;
  }
  .bg-ceremonies {
    height: auto;
  }
  .bg-objects {
    height: auto;
  }

  .bg-index{
	  height: auto;
  }
.bg-wedding-enter{
	height: auto;
}
.bg-img-set{
	height: auto;
}
.bg-services{
	height: auto;
}
.bg-bride1{
	height: auto;
}
.bg-catering{
	height: auto;
}
.bg-design-decor{
	height: auto;
}
.bg-gallery{
	height: auto;
}
.bg-gifts{
	height: auto;
}
.bg-light-sound{
	height: auto;
}
.bg-photo-video{
	height: auto;
}
.bg-contact{
	height: auto;
}
/* .hide-div{
	overflow: hidden;
} */
.bg-cer1{
	width: auto;
}
}



@media (max-width: 768px){
	.bg-index{
		height: auto;
	}
.div-cla {
    margin-top: -55vh;
    width: 430px;
}
.bg-abt{
    margin-top: -57vh;
      padding: 20px;
}
.fir {
  margin-top: 30px;
}
.bg-ceremonies {
  height: auto;
}
.bg-objects {
  height: auto;
}
}

@media (max-width: 650px){
.bg-abt{
    margin-top: -57vh;
      padding: 20px;
}
.aboutbox1-inmb {
  background-color: rgba(255, 255, 255, 1);
  padding: 30px;
  margin: 0 auto;
  float: none;
  width: auto;
  /* bottom: 0; */
  /* position: initial; */
  }
  .bg-vit{
    height: auto;
margin-top: -54vh!important;
padding-bottom: 20px;
  }
  .bg-index{
	height: auto;
}
}





@media (min-width: 360px) and (max-width: 480px)  {
.abothead {
	font-size: 25px!important;
  }
  #header-container {
    position: relative;
    background: none;
    height: 99.9vh;
}
.mar-center1{
	margin-top: 0px;
}
.bg-vit2{
	height: auto;
	margin-top: -65vh!important;
}
.div-cla {
    margin-top: -55vh;
    width: 330px!important;
}
.div-cla h1 {
  font-size: 18px!important;
}
.quote {
    float: left;
    font-size: 52px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
    margin-top: 9px;
    color: #fff;
    margin-right: 7px;
margin-left: 10px;
}
.quote1 {
    /* float: right; */
    font-size: 50px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
    margin-top: -14px;
    color: #fff;
    margin-left: 5px;
    position: absolute;
  }

  .bg-img-set{

  height: auto;

  }
  .bg-abt{
      padding: 20px;
      margin-top: -59vh;
  }
  .aboutbox1-inmb {
      background-color: rgba(255, 255, 255, 1);
      padding: 30px;
      width: auto;
      right: 40px!important;
      left: 40px;
position: initial;
bottom: 0;
    }
    .bg-vit{
height:auto;
margin-top: -77vh!important;
	}
	.bg-vit-ser{
		height:auto;
		margin-top: -61vh!important;
}
    .objects-list ul li img {
      width: 30px;
  height: 30px;
    }
    .bg-objects{
      height: auto;
    }
    .bg-contact .aboutbox1 {
      padding: 30px;
    }
    .fir {
      margin-top: 30px;
	}
	.bg-index{
		height: auto;
	}
	.bg-cer1{
		width: auto;
	}
}
@media( max-width: 320px ){
	.bg-vit2{
		height: auto;
		margin-top: -69vh!important;
	}
	.objects-list ul li img {
		width: 30px;
		height: 30px;
	}
  .div-cla {
      margin-top: -55vh;
      width: 280px!important;
  }
  .bg-photo-video {
    height: auto;
  }
  .div-cla h1 {
    font-size: 18px!important;
  }
  .quote {
      float: left;
      font-size: 52px;
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
      margin-top: 9px;
      color: #fff;
      margin-right: 7px;
  margin-left: 10px;
  }
  .quote1 {
      /* float: right; */
      font-size: 50px;
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
      margin-top: -14px;
      color: #fff;
      margin-left: 5px;
      position: absolute;
    }
    .bg-img-set{
    height: auto;
    }
    .bg-abt{
        margin-top: -59vh;
        padding: 20px;
    }
    .aboutbox1-inmb {
        background-color: rgba(255, 255, 255, 1);
        padding: 30px;
        width: auto;
        right: 40px!important;
        left: 40px;
        position: initial;
        bottom: 0;
	  }
	  .bg-vit-ser {
		height: auto;
		margin-top: -72vh!important;
	}
      .bg-vit{
        height:auto;
        margin-top: -71vh!important;
      }
      .abothead {
        font-size: 26px!important;
	  }
	  .fir {
        margin-top: 20px;
      }
      .bg-contact .aboutbox1 {
        padding: 20px;
      }
      .bg-wedding-enter{
        height: auto;
      }
     
      .bg-ceremonies {
        height: auto;
      }
      .bg-objects {
        height: auto;
	  }
	  .bg-cer1{
		width: auto;
	}
	 
}
@media (min-device-width: 500px) and (max-device-width: 940px) and (orientation : landscape)  {
	#logo {
		min-width:20%;
		max-width: 20%;
	
}
.bg-vit-ser{
	margin-bottom: 20px;
}
.bg-vit{
	margin-bottom: 20px;
}
.home-head1{
position: relative !important; 
background: none!important;
}
.hometext{
	margin-bottom: 10px;
	padding: 20px;
	width: 400px;
}
.div-cla{
margin-top: -60vh;
}
.bg-index{
height: auto;
	}
	.hometext h1 {
		font-size: 20px!important;
	}
	.quote {
		float: left;
		font-size: 60px;
		font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
		margin-top: 9px;
		color: #fff;
		margin-right: 9px;
	}
	.quote1 {
	
		font-size: 60px;
		font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif !important;
		margin-top: -16px;
		color: #fff;
		margin-left: 9px;
		position: absolute;
	}
	.aboutbox1-in{
		margin-top: -46vh!important;
		position: relative;
		right: 0;
		float: none;
		margin: 0 auto;
		bottom: 0;
		left: 0;
}
.bg-img-set{
	height: auto!important;
	overflow-y: scroll;
	}
	.marb{
	margin-bottom: 20px;
	}
	.bg-ceremonies {
		height: auto;
		overflow-y: scroll;
	  }
	  .bg-objects {
		height: auto;
		overflow-y: scroll;
	  }
	
	  .bg-index{
		  height: auto;
	  }
	.bg-wedding-enter{
		height: auto;
	}
	.bg-img-set{
		height: auto;
	}
	.bg-services{
		height: auto;
	}
	.bg-bride1{
		height: auto;
	}
	.bg-catering{
		height: auto;
	}
	.bg-design-decor{
		height: auto;
	}
	.bg-gallery{
		height: auto;
		overflow-y: scroll;
	}
	.bg-gifts{
		height: auto;
	}
	.bg-light-sound{
		height: auto;
	}
	.bg-photo-video{
		height: auto;
	}
	.bg-contact{
		height: auto;
	}
	.abothead{
		font-size: 24px;
	}
	.bg-cer1{
		width: 400px;
	}
	.aboutbox1-in {
		background-color: rgba(255, 255, 255, 1);

	}
	.bg-vit-gal{
margin-top:-50vh;
	}
	.fir{
		margin-top: 30px;
	}
}


@media (max-width: 1024px) {

	.logo-gal {
	
		padding: 40px 21px!important;
	
	}
}