/********************************
*********************************

-----All Rights Reserved at Createrix Labs 2017
-----Auther: Omalka Menuwan 

Main stylesheet for ---- Website
1. General Stylings
1.1 Fonts include
1.2 Reset stylings
1.3 General styling for css
1.3.1 Menu
1.3.2 Footer
1.3.3 Reservations
1.3.4 Other

********************************	
********************************/
/* ~ 1. General Stylings ~ */
/* ~~ 1.1 Fonts include ~~ */

@font-face {
	font-family: 'Classica';
	src: url('../fonts/classica/Classica.ttf');
	font-weight:400;
	font-style:normal;
}

@font-face {
	font-family: 'Classica';
	src: url('../fonts/classica/Classica-Bold.ttf');
	font-weight:700;
	font-style:normal;
}

/* ~~ 1.2 Reset stylings ~~ */
*{
	margin:0;
	padding:0;
}
*:focus{
	outline: none;
}
body{
	font-family: 'Roboto', sans-serif;
	position: relative;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #fff;
	color:#1f1f1f;
	font-weight: 500;
	line-height: 1.5;
	padding:30px 0;
}
::-webkit-scrollbar {
	width: 6px;
} 
::-webkit-scrollbar-track {
	background:#aaa;
} 
::-webkit-scrollbar-thumb {
	background-color: #3a539b;
	outline: 1px solid #000;
}
::-moz-selection { 
	background: #3a539b; 
	color:#f1f1f1;
}
::selection { 
	background: #3a539b; 
	color:#f1f1f1;
}
p{
	width: 80%;
	position: relative;
	text-align: justify;
	display: block;
	margin :20px auto;
}
.tbl{
	display: table;
}
.tbl-cell{
	display: table-cell;
	vertical-align: middle;
}
div#wrapper{
	visibility: hidden;
}
nav#normal{
	display: block;
}
nav#responsive{
	display: none;
}
.loader {
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #3a539b;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
img.logo{
	width: 300px;
	margin: auto;
	margin-bottom:3vh;
	display: block;
}
img.icon{
	width: 100px;
	margin: auto;
	display: block;
}
.y{
	display:none;
}
.y h1{
	color: #3a539b;
	text-align: center;
}

.cs{
	text-align: center;
	color: #1E824C;
	font-size: 3.9vw;

}
.para{
	font-size: 11px;
	font-weight: 400;
	line-height: 2.5;
	margin: 0;
}
.button{
	padding: 5px 10px;
	background-color: #F03434;
	color: #f1f1f1;
	box-shadow: none;
	margin: 20px auto;
	display: block;
	border: none;
	font-size: 20px;
	font-weight: 200;
}
.button:hover{
	background: #D91E18;
}
ol{
	list-style: none;
	margin-bottom: 20px;
	color: #067e56;
}
ul{
	list-style:initial;
	text-align: left;
	display: flex;
	flex-direction: column;
	position: relative;
	width: 70%;
	margin: 0 auto;
}
li, li a{
	font-size: 15px;
	color: #666;
	line-height: 2;
	font-weight: 500;
}
li a:hover{
	color:#045f41;
}
h1{
	color: #F03434;
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
	margin-top: 30px;
}
h1 a, h1 a:hover{
	color:inherit;

}
h3{
	font-size: 14px;
	font-weight: 700;
	color: #000;
	position: relative;
	margin: 3vh 0;
	display: inline-block;
}
h1 span{
	color:#1e824c;
}
h5{
	text-align: center;
	margin: 0 0 25px;
}
span{
	/* margin-top:30px; */
	font-weight:700;
	color:#3a539b;
	font-size: 18px;
	display: block;
}
.modal-footer{

}
.modal-content{
	margin-top: 10vh;
	display: block;
	margin: auto;
	max-width: 400px;
	width:90vw;
	background-color: #f1f1f1;
	color:#333232;
	padding:20px;
	border:10px solid #F03434;
	line-height: 1.4;
}
.modal-content .button{
	background: #3a539b;
}
.outer-layer{
	height:100vh;
	width:100%;
	position: relative;

}
.inner-layer{
	margin: auto;
	display: block;
	text-align: center;
	padding: 0 30px;
	width: 60vw;
}
.f{
	width: 100%;
}
.close{
	opacity: 1;
	color: #333232;
	transition: all .3s ease-in-out;
}
.close:hover{
	color:#1f1f1f;
	opacity: 1;
}
input:focus, textarea:focus, select:focus {
	outline-offset: 0px;
	outline: none;
}
input, textarea{
	margin-bottom: 10px;
	border: 0px;
	border-bottom: 1px solid #333232;
	background: transparent;
	color:#1f1f1f;
	font-weight: 300;
}
label{
	font-size:14px;
	font-weight: 400;
	color:#333232;
}

div#menu-area {
	width: 100%;
	position: relative;
	margin: 25px 0;
}
div#menu-area ul{
	width:100%;
	position:relative;
	list-style:none;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
div#menu-area ul li{
	text-transform:uppercase;
	font-weight:600;
	display:inline;
	white-space:nowrap;
	padding: 0 15px;
	position:relative;
}
div#menu-area ul li:after{
	content:'';
	position:absolute;
	top:0;
	background:#d91e18;
	height:100%;
	width:2px;
	right:0;
}
div#menu-area ul li:nth-last-child(1):after{
	background:transparent;
}
div#menu-area ul li a{
	color:#d91e18;
	font-size: 15px;
	font-weight: 600;
}

ol.sg {
	width: 50%;
	position: relative;
	margin: 0 auto;
	text-align: left;
	list-style: decimal;

}
ol.sg li{
	color:#1f469b;
	margin-bottom: 15px;
}

span.copyrights {
	font-size: 12px;
	font-weight: 500;
	color: #333232;
}

.pic-small {
	width: 200px;
	height: 200px;
	margin: 20px auto;
	background-color: #666;
}

div#ref-cover {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content:center;
	-webkit-justify-content:center;
}

.ref-box {
	width: 30%;
	margin: calc(10% / 6);
	border: 2px solid #666;
	padding: 50px 10px 20px;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	position: relative;
}
.ref-box-lg{
	width:46.5%;
}
.ref-box h2{
	margin: 0 0 10px;
	font-size:20px;
	text-transform:uppercase;
	font-weight:800;
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	padding-top: 15px;
}
div#ref-cover h3{
	width:100%;
	font-size:25px;
	margin: 20px;
}

.important-quote {
	/* width: 50%; */
	/* margin: 30px auto 35px; */
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
}
.important-quote q{
	margin: 0 0 15px;
	position: relative;
	display: block;
}
.important-quote h4{
	font-size:16px;
	margin:0;
}
.important-quote h5{
	margin:0;
}
.important-quote h6{
	margin:0;
}

.pic-medium {
	margin: 0px auto 30px;
	width: 60%;
	/* height: 300px; */
	background: #666;
}

p.main-p {
	margin-bottom: 30px;
}

.gallery-body {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: center;
	-webkit-justify-content: center;
}

h3.gallery-title {
	font-size: 20px;
	width: 100%;
	margin: 20px 0;
	text-transform: uppercase;
}
.gallery-img-box a{
	width: 30%;
	height: 200px;
	margin: 20px calc(10% / 4);
}
.gallery-box {
	background-color: #666;
	background-position:center;
	background-size:cover;
	width: 100%;
	height: 100%;
}

.gallery-img-box {
	display: flex;
	display: -webkit-flex;
	width: 100%;
	flex-direction: row;
	-webkit-flex-direction: row;
	justify-content: space-between;
	margin: 20px auto;
	/* max-height: 200px; */
	height: 200px;
	align-items: center;
	-webkit-justify-content: center;
	position:relative;
	text-align: center;
}
.gallery-img-box video{
	height: 100%;
	position: relative;
	display: block;
	margin: 0 auto;
	min-width: 350px;
	width: 350px;
}
.gallery-img-box.single{
	justify-content:center;
}

img.gallery-image {
	position: relative;
	display: inline-flex;
	height: 100%;
	width: auto;
}
/*Gallery*/
#pa-1{
	background-image: url(../images/gallery/parties/1.jpg);
}
#pa-2{
	background-image: url(../images/gallery/parties/2.jpg);
}
#pa-3{
	background-image: url(../images/gallery/parties/3.jpg);
}
#ev-1{
	background-image: url(../images/gallery/events/1.jpg);
}
#ev-2{
	background-image: url(../images/gallery/events/2.jpg);
}
#ev-3{
	background-image: url(../images/gallery/events/3.jpg);
}
#ev-4{
	background-image: url(../images/gallery/events/4.jpg);
}
#ev-5{
	background-image: url(../images/gallery/events/5.jpg);
}
#ev-6{
	background-image: url(../images/gallery/events/6.jpg);
}
#pr-1{
	background-image: url(../images/gallery/products/1.jpg);
}
#pr-2{
	background-image: url(../images/gallery/products/2.jpg);
}
#pr-3{
	background-image: url(../images/gallery/products/3.jpg);
}
#pr-4{
	background-image: url(../images/gallery/products/4.jpg);
}
#pr-5{
	background-image: url(../images/gallery/products/5.jpg);
}
#pr-6{
	background-image: url(../images/gallery/products/6.jpg);
}
#pr-7{
	background-image: url(../images/gallery/products/7.jpg);
}
#pr-8{
	background-image: url(../images/gallery/products/8.jpg);
}
#pr-9{
	background-image: url(../images/gallery/products/9.jpg);
}
#pr-10{
	background-image: url(../images/gallery/products/10.jpg);
}
#sv-1{
	background-image: url(../images/gallery/services/1.jpg);
}
#sv-2{
	background-image: url(../images/gallery/services/2.jpg);
}
#sv-3{
	background-image: url(../images/gallery/services/3.jpg);
}
#sv-4{
	background-image: url(../images/gallery/services/4.jpg);
}
#sv-5{
	background-image: url(../images/gallery/services/5.jpg);
}
#sv-6{
	background-image: url(../images/gallery/services/6.jpg);
}




.gallery-img-box.video-sec {
	justify-content: space-evenly;
	height: 380px;
	-webkit-justify-content: center;
	flex-direction: column;
	-webkit-flex-direction: column;
}

.hplink {
	display: initial;
	font-size: 14px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	color: inherit;
}
.hplink:hover{
	text-decoration :none;
}

p.video-sec {
	margin: 20px 0 10px;
}

.top-align-gallery {
	background-position: top;
	background-size: contain;
	background-repeat: no-repeat;
}

.modal-loader {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	top: 0;
	left: 0;
	z-index: 20;
	display: none;
}

.loader-body {
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
}

.gallery-img-box.video-sec.video-sec-2 {
	height: auto;
}

.gallery-img-box.video-sec.video-sec-2.event-video {
	margin-bottom: 20px;
}

.video-sec h6 {
	font-size: 18px;
	position: ra;
}

