/* CSS Document */

body
{
	margin:0px; padding:0px;
	width:100%; height:auto;
	background:#000;
	font-family: 'Roboto', sans-serif; font-size:16px; font-weight:300; color:#c0bfbf;
}
div,a,ul,li,section,input,select,textarea,img,p,h1,h2,h3,h4,h5,h6,label
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
ul,h1,h2,h3,h4,h5,h6,p{ margin:0px; padding:0px; }
li{ list-style:none; }
a
{
	text-decoration:none; color:#1a0dbd;
}
a:hover
{
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	text-decoration:underline;
}
input,select,button
{
	outline:0px; border:0px;
}
select{ cursor:pointer; }
input[type='submit']{ border:0px; cursor:pointer }



/* Table */
.table
{
	width:100%; height:auto;
	border-spacing: 0;
	border-collapse: collapse;
	display: table;
	border:1px solid #666;
}
.table thead
{
	background:#eef2f4;
}
.table th
{
	padding:10px;
	border: 1px solid #666; font-weight:500; text-align:left;
}
.table td
{
	padding:10px;
	border: 1px solid #666;
}
.table tbody tr.grey{ background:#f5f6fa; }
.table tbody td
{
	border-top: 1px solid #666;
}


textarea{ 
	font-family:"Open Sans", Arial, sans-serif;
}
a
{
	text-decoration:none; color:#0093DE;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
a:hover
{
	text-decoration:underline;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
}
h1,h2,h3,h4,h5,h6,p,ul,li{ margin:0px; padding:0px; font-weight:inherit; }
img{ border:0px; }
div,li,span,a
{
	list-style:none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input,select,textarea{ color:#555; font-family:"Open Sans", Arial, sans-serif; }
input,select,textarea:focus{ outline:0px; }
input,select,textarea
{
	
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
input,select,textarea:focus{ outline:0px; }
button{ border:0px; cursor:pointer; }
button:focus{ outline:0px; }



/* Form Fields */
input[type='text'],input[type='email'],input[type='number'],textarea,input[type='password'],select,input[type='date'],input[type='time'],input[type='number']
{
	width:100%; height:40px; float:left; outline:0px;
	padding-left:15px; padding-right:15px;
	border:1px solid #666;
	font-size:13px; color:#CCC; font-family:"Open Sans", Arial, sans-serif;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
    -webkit-transition: width 1s ease;  
    -moz-transition: width 1s ease;  
    -o-transition: width 1s ease;  
    -ms-transition: width 1s ease;  
    transition: width 1s ease;
	
    transition:border 0.7s;
	border-radius:10px;
	background:rgb(28, 27, 25);
}
input[type='text']:focus,input[type='email'],input[type='number']:focus,input[type='password']:focus,textarea:focus,input[type='date']:focus,input[type='time']:focus,select:focus
{
	border:1px solid #666;
}
input[type="text"]:disabled{ cursor:not-allowed; }
input[type="submit"]{ border:0px; cursor:pointer; }
button
{
	width:auto; height:40px; float:left;
	background:#deaf25; border:0px;
	outline:0px; cursor:pointer;
	font-size:14px; color:#FFF;
	border-radius:10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
    -webkit-transition: width 1s ease;  
    -moz-transition: width 1s ease;  
    -o-transition: width 1s ease;  
    -ms-transition: width 1s ease;  
    transition: width 1s ease;
}
button:hover{ background:#ca9e1d; }
.btn
{
	width:auto; height:27px; float:left;
	background:#672b75; border:0px;
	outline:0px; cursor:pointer;
	font-size:12px; color:#FFF;
}
.btn:hover{ background:#51195e; }
.btn:active{ background:#5c5c5c; }


.error
{
	width:98%; height:auto; float:left; position:relative;
	margin-left:1%; margin-right:1%; margin-bottom:25px;
	background:#f64b2f;
	padding:10px; padding-left:35px;
	font-size:13px; color:#FFF; font-weight:600;
}
.error i
{
	font-size:21px; color:#9a1903;
	position:absolute; z-index:99; left:15px; top:12px;
}
.error ul{ margin-left:15px; }
.error li{ margin-bottom:4px; list-style:none; }

.success
{
	width:98%; height:auto; float:left; position:relative;
	margin-left:1%; margin-right:1%; margin-bottom:25px;
	background:#7eb62e;
	padding:10px; padding-left:35px;
	font-size:13px; color:#FFF; font-weight:600;
}

.success i
{
	font-size:21px; color:#598a10;
	position:absolute; z-index:99; left:15px; top:12px;
}
.success ul{ margin-left:15px; }
.success li{ margin-bottom:4px; list-style:none; }

input,select,textarea{ color:#555; font-family:"Open Sans", Arial, sans-serif; }
input,select,textarea:focus{ outline:0px; }
input,select,textarea
{
	
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
input,select,textarea:focus{ outline:0px; }
button{ border:0px; cursor:pointer; }
button:focus{ outline:0px; }
.container{ width:96%; height:auto; max-width:1441px; margin:0 auto; position:relative; }

.pull-right{ float:right; }


#header
{
	width:100%; height:auto; position:fixed; left:0px; top:0px; z-index:9997;
	padding-top:10px; padding-bottom:10px;
	background:#000;
	box-shadow: 0px 0px 2px 0px rgba(222,175,37,0.75);
-webkit-box-shadow: 0px 0px 2px 0px rgba(222,175,37,0.75);
-moz-box-shadow: 0px 0px 2px 0px rgba(222,175,37,0.75);
}
.header_other
{
	background:#000;
}

#logo
{
	width:auto; height:auto; float:left;
	margin-top:5px; margin-bottom:5px; margin-right:35px;
}

#logo img
{
	width:auto; height:65px; float:left;
}


#mobmenu
{
	width:38px; height:32px; position:absolute; left:235px; top:45px;
	display:none;
	border:2px solid #000;
	text-align:center;
	cursor:pointer;
}
#mobmenu i{ font-size:24px; line-height:27px; color:#000; }

#nav
{
	float:left; margin-top:30px;
	font-family: 'Montserrat', sans-serif;
}
#nav ul{ margin:0px; padding:0px; float:left; }
#nav ul li{ float:left; list-style:none; margin-right:15px; padding-bottom:16px; position:relative; }
#nav ul li a
{
	float:left; padding-left:2px; padding-right:2px;
	font-size:16px; color:#deaf25; text-transform:uppercase; font-weight:500;
	padding-bottom:5px;
}
#nav ul li a:hover{ text-decoration:none; color:#FFF; padding-bottom:2px; border-bottom:1px solid #FFF; }


#nav ul ul
{
	width:230px; height:0px; position:absolute; top:25px; left:0px; z-index:999;
	overflow:hidden;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#nav ul ul:before
{
	display: none;
	position:absolute; top:-1px; left:0%; margin-top:-16px;
	margin-left:24px;
	font-size:26px; color:#222;
	font-family: FontAwesome;
	content: "\f0d8";
}
#nav ul ul li{ width:100%; height:auto; float:left; margin-left:0px; padding-bottom:0px; }
#nav ul ul li a
{
	width:100%; height:auto; float:left;
	font-size:13px; color:#c8c8c8; font-weight:inherit;
	padding-top:9px; padding-bottom:9px; padding-left:20px;
	border-bottom:1px solid #333;
	background:#222;
}
#nav ul ul li a:hover{ color:#FFF; }

#nav ul li:hover > ul:before{ display:block; }
#nav ul li:hover > ul{ display:block; height:inherit; overflow:inherit; }


#header_right
{
	float: right; width:auto; height:auto;
}

#header_hotline
{
	float:left; width:auto; height:auto; color:#deaf25;
	margin-top:25px; padding-bottom:2px;
	font-size:18px; font-weight:600;
	border-bottom:1px solid #deaf25;
}
#header_hotline:hover{ text-decoration:none; }

#header_my
{
	float:left; width:45px; height:45px; color:#deaf25;
	margin-top:21px; margin-left:25px;
	font-size:24px;
}


#header_book
{
	float:left; width:auto; height:40px;
	margin-top:17px;
	padding-left:20px; padding-right:20px;
	font-size:14px; color:#FFF; line-height:40px;
	background:#deaf25;
}
#header_book:hover{ background:#ca9e1d; text-decoration:none; }

#home-slider
{
	width:100%; height:90vh; float:left; position:relative;
	overflow:hidden;
	background:#000;
}
#home-slider img{ width:100%; height:auto; opacity:0.8; }

#home-slider-in{ width:100%; height:90vh; float:left; position:relative;background:#000; }

#home-slider .owl-wrapper-outer
{
    border: 0px solid #fff;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}


#home-slider .owl-controls
{
	width:100px; height:45px; position:absolute; right:4%; bottom:50px; z-index:9990;
}
#home-slider .owl-theme .owl-controls .owl-buttons div{
	width:35px; height:35px; top:0px; right:0px;
    color: #FFF;
    text-align:center; line-height:35px;
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}
#home-slider .owl-theme .owl-controls .owl-buttons{ width:50px; float:right; }
#home-slider .owl-controls .owl-buttons .owl-prev
{
	right:70px;
}
#home-slider .owl-next
{
	right:70px;
}
#home-slider .owl-theme .owl-controls .owl-buttons div i
{
	font-size:52px;
}

.home-slider-cont
{
	width:100%; height:auto; position:absolute; bottom:20%; left:0px;
	color:#FFF;
}

.home-slider-cont h2
{
	width:65%; height:auto; float:left;
	margin-right:5%;
	font-size:62px; font-weight:600;
}

.home-slider-cont p
{
	width:30%; height:auto; float:left;
	margin-top:50px;
	font-size:22px;
}

#home_start_book
{
	width:100%; height:auto; float:left;
	padding:45px 0px 45px 0px;;
	background:#000;
	color:#EEE;
}

#home_start_book h2
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	font-size:36px; font-weight:500; color:#deaf25; text-align:center; text-transform:uppercase;
}
#home_start_book label
{
	width:100%; height:auto; float:left;
	font-size:16px; color:#EEE;
	margin-bottom:5px;
}
#home_start_book input
{
	width:100%; height:46px;; float:left;
	font-size:16px; color:#CCC;
	border:0px; border-bottom:2px solid #deaf25;
	background:rgb(28, 27, 25);
}
#home_start_book button
{
	width:100%; height:46px; float:left;
}

#home_start_book_p
{
	width:25%; height:auto; float:left;
	margin-right:1%;
}
#home_start_book_d
{
	width:25%; height:auto; float:left;
	margin-right:1%;
}
#home_start_book_f
{
	width:18%; height:auto; float:left;
	margin-right:1%;
}
#home_start_book_t
{
	width:18%; height:auto; float:left;
	margin-right:1%;
}
#home_start_book_btn
{
	width:10%; height:auto; float:left;
	margin-top:25px;
}

#home_about
{
	width:100%; height:auto; float:left;
	background:#181818 url(../images/about_right_bg.png) right center no-repeat; background-size:auto 100%;
	margin-right:65px; padding-bottom:65px; padding-top:65px;
}
#home_about_l
{
	width:40%; height:auto; float:left;
	margin-right:5%;
}
#home_about_l img
{
	width:100%; height:auto; float:left;
}
#home_about_r
{
	width:55%; height:auto; float:left;
	margin-top:20px;
}
#home_about_r h3
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	font-size:16px; font-weight:600; color:#deaf25;
}
#home_about_r h1
{
	width:100%; height:auto; float:left;
	font-size:46px; font-weight:600; color:#EEE;
	margin-bottom:30px
}
#home_about_r p
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	font-size:16px; color:#c0bfbf; text-align:justify;
}

#home_services
{
	width:100%; height:auto; float:left;
	background:#000;
	padding-bottom:45px; padding-top:65px;
}
#home_services-in
{
	width:100%; height:auto; float:left;
}
#home_services h3
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	font-size:16px; font-weight:600; color:#deaf25; text-align:center;
}
#home_services h2
{
	width:100%; height:auto; float:left;
	font-size:46px; font-weight:600; color:#EEE; text-align:center;
	margin-bottom:30px
}

#home_services img{ width:100%; height:auto; float:left; margin-top:15px; margin-bottom:15px; }
#home_services h3{ width:100%; height:auto; float:left; }
#home_services p{ width:100%; height:auto; float:left; }
#home_services .owl-carousel{ background:none; }
#home_services .owl-wrapper-outer
{
    border: 0px solid #fff;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}


#home_services .owl-controls
{
	width:100%; height:45px; position:absolute; right:0%; bottom:-70px; z-index:9990;
}
#home_services .owl-theme .owl-controls .owl-buttons div{
	width:100%; height:35px; top:0px; right:0px;
    color: #FFF;
    text-align:center; line-height:35px;
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}
#home_services .owl-controls .owl-buttons .owl-prev
{
	right:70px;
}
#home_services .owl-next
{
	right:70px;
}
#home_services .owl-theme .owl-controls .owl-buttons div i
{
	font-size:52px;
}
#home_services li
{
	width:100%; height:auto; float:left;
}
#home_services li a
{
	width:100%; height:auto; float:left;
}
#home_services li a:hover
{
	background:#deaf25;
	color:#FFF;
}

#home_services li a:hover img
{
	padding:0px 5px 0px 5px;
}
#home_services li a:hover h3{ color:#FFF; }


#home_process
{
	width:100%; height:auto; float:left;
	padding-top:55px; padding-bottom:30px;
	background: #181818;
}
#home_process_l
{
	width:35%; height:auto; float:left;
	margin-right:5%;
}
#home_process_l h2
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	color:#deaf25; font-size:42px; font-weight:600;
}
#home_process_l h3
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	color:#deaf25; font-size:24px; font-weight:600;
}
#home_process_l p
{
	color:#EEE; font-size:16px; text-align:justify;
	margin-bottom:30px;
}
#home_process_r
{
	width:60%; height:auto; float:left;
}
#home_process_r ol
{
	width:100%; height:auto; float:left;
	margin:0px; padding:0px;
}
#home_process_r ol li
{
	width:100%; height:55px; float:left; position:relative;
	list-style:none;
	background:#333;
	margin-bottom:20px; padding:15px 25px 15px 150px;
	font-size:16px; color:#FFF;
	border-radius: 25px 25px 25px 25px;
	-webkit-border-radius: 25px 25px 25px 25px;
	-moz-border-radius: 25px 25px 25px 25px;
}
#home_process_r ol li strong
{
	width:120px; height:45px;
	position:absolute; left:5px; top:5px;
	background:#222;
	border-radius: 25px 25px 25px 25px;
	-webkit-border-radius: 25px 25px 25px 25px;
	-moz-border-radius: 25px 25px 25px 25px;
	color:#FFF; text-align:center; line-height:45px;
}




#home_why
{
	width:100%; height:auto; display:inline-block;
	padding-top:65px; padding-bottom:55px;
	background:#000 url(../images/elite_why_bg.png) center no-repeat;
	background-size:auto 70%;
}
#home_why h2
{
	width:100%; height:auto; display:inline-block;
	font-size:42px; text-align:center; font-weight:600; color:#EEE;
	margin-bottom:20px;
}
#home_why h3
{
	width:100%; height:auto; float:left;
	margin-bottom:5px;
	font-size:16px; font-weight:600; color:#deaf25; text-align:center;
}
#home_why_l
{
	width:33.33%; height:auto; float:left;
	margin-top:55px;
}

#home_why_l ul{ width:100%; height:auto; margin:0px; padding:0px; }
#home_why_l ul li
{
	width:90%; height:auto; float:left; margin-bottom:20px; padding:20px;
	list-style:none;
	background:#212121;
	border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
}
#home_why_l ul li h4{ font-size:18px; font-weight:500; margin-bottom:10px; color:#c9c7c7; }
#home_why_l ul li p{ margin:0px; padding:0px; font-size:16px; line-height:23px; color:#c0bfbf; }
#home_why_l_ml{ margin-left:10%; }
#home_why_c
{
	width:33.33%; height:auto; float:left;
	text-align:center;
}
#home_why_c img{ height:auto; max-width:80%; margin-left:5%; }
#home_why_r
{
	width:33.33%; height:auto; float:left;
	margin-top:55px;
}

#home_why_r ul{ width:100%; height:auto; margin:0px; padding:0px; }
#home_why_r ul li
{
	width:90%; height:auto; float:right; margin-bottom:20px; padding:20px;
	list-style:none;
	background:#212121;
	border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
}
#home_why_r ul li h4{ font-size:18px; font-weight:500; margin-bottom:10px; color:#c9c7c7; }
#home_why_r ul li p{ margin:0px; padding:0px; font-size:16px; line-height:23px; color:#c0bfbf; }
#home_why_r_ml{ margin-right:10%; }



#home_cat
{
	width:100%; height:auto; display:inline-block;
	padding-top:65px; padding-bottom:65px;
	background:#181818 url(../images/about_right_bg.png) no-repeat right center;
	background-size:auto 80%;
}

#home_cat-in
{
	width:100%; height:auto; float:left;
	background:none;
}
#home_cat-in li
{
	margin-left:2%; margin-right:2%;
}
#home_cat-in li a
{
	width:100%; height:auto; float:left;
	border:10px solid #333; background:#212121;
	border-radius:20px;
	padding:25px;
}
#home_cat h2
{
	width:100%; height:auto; float:left;
	font-size:46px; font-weight:600; color:#FFF; text-align:center;
	margin-bottom:30px
}

#home_cat img{ width:80%; height:auto; float:left; margin-top:15px; margin-bottom:15px; margin-left:10%; }
#home_cat h3
{
	width:100%; height:auto; float:left;
	font-size:16px; text-align:center; color:#deaf25; font-weight:400;
}
#home_cat .owl-wrapper-outer
{
	background:none;
    border: 0px solid #fff;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}


#home_cat .owl-controls
{
	width:80px; height:45px; position:absolute; right:0%; bottom:-70px; z-index:9990;
	background:none;
}
#home_cat .owl-theme .owl-controls .owl-buttons div{
	width:40px; height:35px; top:0px; right:0px;
    color: #FFF;
    text-align:center; line-height:35px;
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}
#home_cat .owl-controls .owl-buttons .owl-prev
{
	right:70px;
}
#home_cat .owl-next
{
	right:70px;
}
#home_cat .owl-theme .owl-controls .owl-buttons div i
{
	font-size:52px;
}



#home_blog
{
	width:100%; height:auto; float:left;
	margin-top:65px;
}
#home_blog_head
{
	width:96%; height:auto; float:left;
	margin-left:2%;
}
#home_blog_head_l
{
	width:65%; height:auto; float:left;
	margin-right:5%;
}
#home_blog_head_l h3
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:600; color:#deaf25;
}
#home_blog_head_l h2
{
	width:100%; height:auto; float:left;
	font-size:42px; font-weight:600; color:#EEE;
	margin-bottom:30px
}
#home_blog_head_r
{
	width:30%; height:auto; float:left;
	margin-top:25px;
}
#home_blog_head_r p
{
	width:100%; height:auto; float:left;
	font-size:18px; line-height:26px;
}
#home_blog ul
{
	width:100%; height:auto; float:left;
}
#home_blog ul li
{
	width:96%; height:auto; float:left;
	margin-left:2%; margin-right:2%;
}
#home_blog ul li a
{
	width:100%; height:auto; float:left; position:relative;
	overflow: hidden;
	border-radius:15px;
}
#home_blog ul li img
{
	width:100%; height:auto; float:left;
	border-radius:15px;
	transition: transform 0.3s ease-in-out;
}
#home_blog ul li a:hover img {
    transform: scale(1.1);
	border-radius:15px;
}
#home_blog ul li a h3
{
	width:90%; height:auto; float:left; position: absolute; left:5%; bottom:65px;
	color:#FFF; font-size:22px; font-weight:500;
}
#home_blog ul li a span
{
	width:auto%; height:auto; float:left; position: absolute; left:5%; bottom:25px;
	color:#FFF; font-size:16px; font-weight:500;
	border-bottom:1px solid #FFF;
	padding-bottom:2px;
}
#home_blog .owl-carousel{ background:none; }

#home_blog_footer
{
	width:100%; height:auto; float:left;
	margin-top:30px;
	text-align:center;
}
#home_blog_footer a
{
	width:auto; height:45px; color:#FFF; display:inline-block;
	margin-top:17px;
	padding-left:20px; padding-right:20px;
	font-size:14px; color:#FFF; line-height:45px;
	background:#deaf25;
}
#home_blog_footer a:hover{ background:#ca9e1d; text-decoration:none; }


/* Footer Styling */
.footer {
	width:100%; height:auto; float:left;
	margin-top:65px;
    background-color: #222;
    color: white;
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 23%;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 8px;
    color: #ff9800;
}

/* Social Media Links */
.social-links a {
    display: inline-block;
    color: white;
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff9800;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }
}


#header_other
{
	width:100%; height:550px; float:left; position:relative;
	overflow:hidden;
	background:#000;
}
#header_other img
{
	width:auto; height:550px; float:left;
	opacity:0.7;
}
#header_other_content
{
	width:100%; height:auto; position:absolute; top:335px; left:0px; z-index:99;
	color:#FFF;
}
#header_other h1
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:52px; font-weight:600;
}
#header_other p
{
	width:70%; height:auto; float:left;
	font-size:18px; line-height:24px;
}

#about_cont
{
	width:100%; height:auto; float:left;
	margin-bottom:-65px;
	background:#000;
}

#about_vision
{
	width:100%; height:auto; float:left; position:relative;
	margin-bottom:65px; margin-top:65px;
}
#about_vision img
{
	width:100%; height:auto; float:left;
	border-radius:25px;
}

#about_vision_in
{
	width:48%; height:auto; position:absolute; left:0px; top:45px;
	background:rgba(0,0,0,0.9);
	border-radius: 0px 10px 9px 0px;
	-webkit-border-radius: 0px 10px 9px 0px;
	-moz-border-radius: 0px 10px 9px 0px;
	padding:35px;
	color:#EEE;
}
#about_vision_in h3
{
	width:100%; height:auto; float:left;
	font-size:28px; font-weight:500; color:#deaf25;
	margin-bottom:20px;
}
#about_vision_in p
{
	width:100%; height:auto; float:left;
	font-size:16px; line-height:26px;
}

#about_mission_in
{
	width:48%; height:auto; position:absolute; right:0px; bottom:45px;
	background:rgba(0,0,0,0.9);
	border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;
	-moz-border-radius: 10px 0px 0px 10px;
	padding:35px;
	color:#EEE;
}
#about_mission_in h3
{
	width:100%; height:auto; float:left;
	font-size:28px; font-weight:500; color:#deaf25;
	margin-bottom:20px;
}
#about_mission_in p
{
	width:100%; height:auto; float:left;
	font-size:16px; line-height:26px;
}

#about_values
{
	width:100%; height:auto; float:left; position:relative;
	margin-bottom:65px;
	color:#EEE;
}
#about_values h3
{
	width:100%; height:auto; float:left;
	font-size:36px; font-weight:500; text-align:center; color:#deaf25;
	margin-bottom:20px;
}
#about_values p
{
	width:100%; height:auto; float:left;
	font-size:16px; line-height:26px; text-align:justify;
}



#about_aims
{
	width:100%; height:auto; float:left; position:relative;
	padding-bottom:45px;
}
#about_aims h2
{
	width:100%; height:auto; float:left;
	font-size:36px; font-weight:500; text-align:center; color:#deaf25;
	margin-bottom:20px;
}
#about_aims ul
{
	width:100%; height:auto; float:left;
}
#about_aims ul li
{
	width:100%; height:auto; float:left;
	padding:25px; border-radius:20px;
	margin-bottom:25px;
	background:#212121; color:#c0bfbf;
	font-size:16px; line-height:26px; text-align:center;
}



#fleet_cont
{
	width:100%; height:auto; float:left;
	margin-bottom:-65px; margin-top:-10px;
	padding-top:45px; padding-bottom:65px;
	background:#000;
}


.fleet_box
{
	width:100%; height:auto; float:left;
	background:#212121;
	margin-top:25px;
	border-radius:20px;
	padding:25px;
}

.fleet_box_image
{
	width:25%; height:auto; float:left;
	background:#FFF;
	border-radius:20px;
	padding:5px; margin-right:1%;
}
.fleet_box_image img
{
	width:100%; height:auto; float:left;
}

.fleet_box_details
{
	width:50%; height:auto; float:left;
	background:#111;
	border-radius:20px;
	padding:20px; margin-right:1%;
	font-size:16px; line-height:24px; color:#c0bfbf;
}
.fleet_box_details h3
{
	width:100%; height:auto; float:left;
	font-size:22px; font-weight:500; color:#EEE;
	margin-bottom:20px;
}
.fleet_box_details h4
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:500;
	margin-bottom:10px; margin-top:25px;
}

.fleet_box_details ul
{
	width:100%; height:auto; float:left;
}


.fleet_box_details ul li
{
	width:50%; height:auto; float:left;
	margin-bottom:8px;
	font-size:16px;
}
.fleet_box_details ul li img{ width:22px; height:auto; margin-bottom:-6px; }

.fleet_box_price
{
	width:23%; height:auto; float:left;
	background:#111; color:#c0bfbf;
	border-radius:20px;
	padding:10px;
}

.fleet_box_price p
{
	width:100%; height:auto; float:left;
	border:2px solid #eee1ad;
	border-radius:20px;
	margin-bottom:15px;
	font-size:16px; text-align:center; line-height:40px; font-weight:600;
	background:#212121;
}
.fleet_box_price h4
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:500; text-align:center;
	margin-bottom:10px;
}

.fleet_box_price a
{
	float:left; width:100%; height:40px; color:#FFF;
	border-radius:20px;
	padding-left:20px; padding-right:20px;
	font-size:14px; color:#FFF; line-height:40px; text-align:center;
	background:#deaf25;
}
.fleet_box_price a:hover{ background:#ca9e1d; text-decoration:none; }


.fleet_box_price ul
{
	width:100%; height:auto; float:left;
}


.fleet_box_price ul li
{
	width:100%; height:auto; float:left;
	margin-bottom:5px; padding:10px;
	font-size:16px;
}



#fleet_view_cont
{
	width:100%; height:auto; float:left;
	margin-bottom:-65px; margin-top:-10px;
	padding-top:45px; padding-bottom:65px;
	background:#181818 ;
}

.fleet_view_box
{
	width:100%; height:auto; float:left;
	background:#212121;
	margin-top:25px;
	border-radius:20px;
	padding:25px;
	color:#c0bfbf;
}

.fleet_view_box_image
{
	width:25%; height:auto; float:left;
	background:#FFF;
	border-radius:20px;
	padding:20px; margin-right:1%;
}
.fleet_view_box_image img
{
	width:100%; height:auto; float:left;
	margin-top:21px; margin-bottom:21px;
}

.fleet_view_box_details
{
	width:40%; height:auto; float:left;
	background:#111;
	border-radius:20px;
	padding:20px; margin-right:1%;
}
.fleet_view_box_details h3
{
	width:100%; height:auto; float:left;
	font-size:22px; font-weight:500;
	margin-bottom:20px;
}

.fleet_view_box_details ul
{
	width:100%; height:auto; float:left;
}


.fleet_view_box_details ul li
{
	width:100%; height:auto; float:left;
	margin-bottom:5px;
	font-size:16px;
}
.fleet_view_box_details
{
	width:43%; height:auto; float:left;
	background:#111;
	border-radius:20px;
	padding:25px;
	font-size:16px; line-height:24px;
}
.fleet_view_box_details h4
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:500;
	margin-bottom:10px; margin-top:25px;
}
.fleet_view_box_details p
{
	width:100%; height:auto; float:left;
	font-size:16px; text-align:center; line-height:40px; font-weight:600;
	
}


.fleet_view_box_price
{
	width:30%; height:auto; float:left;
	background:#111;
	border-radius:20px;
	padding:10px;
	padding-top:15px; padding-bottom:15px;
}
.fleet_view_box_price h4
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:500; text-align:center;
	margin-bottom:10px;
}

.fleet_view_box_price p
{
	width:100%; height:auto; float:left;
	border:2px solid #eee1ad;
	border-radius:20px;
	margin-bottom:15px;
	font-size:16px; text-align:center; line-height:40px; font-weight:600;
	background:#212121;
}

.fleet_view_box_price ul
{
	width:100%; height:auto; float:left;
}


.fleet_view_box_price ul li
{
	width:100%; height:auto; float:left;
	margin-bottom:5px; padding:5px;
	font-size:16px;
	background:#333; border:1px solid #000;
	border-radius:20px;
}

.fleet_view_box_price ul li label{ width:100%; height:auto; float:left; }
.fleet_view_box_price ul li img{ float:left; height:40px; width:auto; background:#FFF; padding:4px; border-radius:10px; margin-right:10px; }
.fleet_view_box_price ul li span{ float:left; margin-top:10px; }
.fleet_view_box_price ul li input{ float:left; margin-top:15px; }
.fleet_view_box_price button
{
	float:left; width:100%; height:48px; color:#FFF;
	border-radius:20px;
	padding-left:20px; padding-right:20px; margin-top:25px;
	font-size:14px; color:#FFF; line-height:48px; text-align:center;
	background:#deaf25;
}
.fleet_view_box_price button:hover{ background:#ca9e1d; text-decoration:none; }

#bookingm
{
	width:100%; height:auto; float:left; position:relative;
	margin-bottom:65px; margin-top:25px; color:#c0bfbf;
}
#booking_l
{
	width:40%; height:auto; float:left; position:relative;
	margin-bottom:65px;
	border:1px solid #666;
	padding:20px; border-radius:20px;
}
#booking_l h2
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	font-size:32px; font-weight:500; color:#deaf25;
}
#booking_l img
{
	width:100%; height:auto; float:left;
	padding:25px; margin-bottom:25px;
	border-radius:25px;
	border:2px solid #666;
}

#booking_l_details ul
{
	width:100%; height:auto; float:left;
	border-top:1px solid #666;
	padding-top:25px;
}


#booking_l_details ul li
{
	width:100%; height:auto; float:left;
	margin-bottom:10px; padding-bottom:10px;
	border-bottom:1px solid #666;
	font-size:16px;
}
#booking_c
{
	width:30%; height:auto; float:left; position:relative;
	margin-bottom:65px; margin-left:1%;
	border:1px solid #666;
	padding:20px; border-radius:20px;
}
#booking_c h2
{
	width:100%; height:auto; float:left;
	font-weight:600;
	margin-bottom:15px; color:#deaf25;
}
#booking_c label
{
	width:100%; height:auto; float:left;
	font-size:16px; 
	margin-top:15px; margin-bottom:5px;
}
#booking_c input{ height:35px; background:rgb(28, 27, 25) !important; border:1px solid #666; color:#EEE; }
#booking_c textarea{ height:95px; background:rgb(28, 27, 25) !important; border:1px solid #666; color:#EEE; }

#booking_r
{
	width:28%; height:auto; float:left; position:relative;
	margin-bottom:65px; margin-left:1%;
	border:1px solid #666;
	padding:20px; border-radius:20px;
}
#booking_r h3
{
	width:100%; height:auto; float:left;
	font-weight:600; color:#deaf25;
	margin-bottom:15px;
}
#booking_r table{ border-radius:20px; }

.booking_rate_row_hide{ display:none; }
.booking_rate_row
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	border:1px solid #DDD;
	border-radius:10px;
}

#payment_options_booking
{
	width:100%; height:auto; float:left;
}
#payment_options_booking ul
{
	width:100%; height:auto; float:left;
}
#payment_options_booking ul li
{
	width:100%; height:auto; float:left;
	border-radius:20px;
	border:1px solid #666;
	padding:5px;
	margin-bottom:10px;
}
#payment_options_booking button
{
	width:100%;
	border-radius:20px;
	margin-top:25px;
}

#success-msg
{
	width:100%; height:auto; float:left;
	margin-top:65px;
}

#success-msg h3
{
	width:100%; height:auto; float:left;
	font-size:22px;
	margin-bottom:10px;
}
#success-msg p
{
	width:100%; height:auto; float:left;
	font-size:16px;
	margin-bottom:10px;
}


#service-cont
{
	width:100%; height:auto; float:left;
	padding-top:65px; margin-bottom:-65px; padding-bottom:70px;
	background:#000; color:#c0bfbf;
}

#service-cont ul
{
	width:100%; height:auto; float:left;
}
#service-cont ul li
{
	width:31.33%; height:auto; float:left;
	background:#212121; color:#c0bfbf;
	margin-left:1%; margin-right:1%; margin-bottom:35px;
	padding:10px;
	background:#212121; color:#c0bfbf;
	border-radius:20px;
}

#service-cont ul li img
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	border-radius:20px;
}
#service-cont ul li h3
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	font-size:22px; font-weight:600;
}
#service-cont ul li p
{
	width:100%; height:auto; float:left;
	margin-bottom:15px;
	font-size:16px; line-height:24px; text-align:justify;
}

#service-cont ul li a
{
	float:left; width:auto; height:40px; color:#FFF;
	margin-top:17px;
	padding-left:20px; padding-right:20px;
	font-size:14px; color:#FFF; line-height:40px;
	background:#deaf25;
	border-radius:20px;
}
#service-cont ul li a:hover{ background:#ca9e1d; text-decoration:none; }





#service-view-cont
{
	width:100%; height:auto; float:left;
	margin-top:65px; margin-bottom:65px;
	font-size:16px; line-height:24px;
}

#service-view-cont h2
{
	width:100%; height:auto; float:left;
	font-size:36px; color:#deaf25;
	margin-bottom:25px; margin-top:15px;
}

#service-view-cont h3
{
	width:100%; height:auto; float:left;
	font-size:32px; color:#deaf25;
	margin-bottom:25px; margin-top:15px;
}

#service-view-cont h4
{
	width:100%; height:auto; float:left;
	font-size:22px; color:#deaf25;
	margin-bottom:25px; margin-top:15px;
}

#service-view-cont p
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	text-align:justify; font-size:16px; line-height:26px;
}


#contact-banner
{
	width:100%; height:auto; float:left;
	margin-top:95px;
}

#contact-banner iframe
{
	width:100%; height:400px; float:left;
}

#contact_cont {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: -65px;
    margin-top: -10px;
    padding-top: 45px;
    padding-bottom: 65px;
    background: #000;
	color:#c0bfbf;
}


#contact-info
{
	width:100%; height:auto; float:left;
	margin-bottom:65px;
	text-align:center;
}


#contact-info h1
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	text-align:center; font-size:42px; font-weight:600;
}
#contact-info p
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	text-align:center; font-size:18px; font-weight:600;
}
#contact-info ul
{
	width:100%; height:auto; float:left;
	margin-bottom:25px;
	text-align:center; font-size:18px; font-weight:600;
}
#contact-info ul li
{
	margin-left:15px; margin-right:15px;
	display:inline-block;
}



#contact-form
{
	width:100%; height:auto; float:left;
	border-radius:20px;
	background:#212121; color:#c0bfbf;
}

#contact-form-l
{
	width:45%; height:auto; float:left;
	margin-right:5%; padding:45px;
}

#contact-form-l h2
{
	width:100%; height:auto; float:left;
	font-size:42px; color:#deaf25; font-weight:600;
	margin-bottom:20px;
}
#contact-form-l p
{
	width:100%; height:auto; float:left;
	font-size:16px; color:#c0bfbf;
	margin-bottom:20px;
}
#contact-form-l label
{
	width:100%; height:auto; float:left;
	font-size:16px;
	margin-bottom:5px;
}
#contact-form-l input
{
	width:100%; height:40px;; float:left;
	margin-bottom:20px;
	font-size:16px;
}
#contact-form-l textarea
{
	width:100%; height:90px;; float:left;
	margin-bottom:20px;
	font-size:16px;
}
#contact-form-l button
{
	width:100%; float:left;
	margin-bottom:20px;
	font-size:16px;
	border-radius:20px;
}
#contact-form-r
{
	width:50%; height:auto; float:left;
}

#contact-form-r img
{
	width:100%; height:auto; float:left;
}


#myaccount_content
{
	width:100%; height:auto; float:left;
	margin-top:125px; margin-bottom:65px;
}

#sign_in
{
	width:36%; height:auto; float:left;
	margin-left:32%; margin-right:32%;
}

#sign_in h1
{
	width:100%; height:auto; float:left;
	font-size:52px; color:#deaf25; font-weight:600; text-align:center;
	margin-bottom:20px;
}

#sign_in p
{
	width:100%; height:auto; float:left;
	font-size:16px; text-align:center;
	margin-bottom:40px;
}

#sign_in label
{
	width:100%; height:auto; float:left;
	font-size:16px; font-weight:600;
	margin-bottom:15px;
}

#sign_in input
{
	width:100%; height:47px; float:left;
	font-size:16px; font-weight:600;
	margin-bottom:25px;
}

#sign_in button
{
	width:100%; height:47px; float:left;
	font-size:16px; font-weight:600;
	margin-top:-15px;
}

#my_nav
{
	width:100%; height:auto; float:left;
	text-align:center;
	border-bottom:1px solid #666;
	padding-bottom:25px; margin-bottom:45px;
}

#my_nav ul
{
	width:100%; height:auto; float:left;
	text-align:center;
}

#my_nav ul li
{
	width:auto; height:auto; display:inline-block;
	text-align:center;
}

#my_nav ul li a
{
	width:auto; height:auto; display:inline-block;
	text-align:center;
	border:1px solid #666;
	padding:10px 25px 10px 25px;
	margin:0px 5px 0px 5px;
	font-size:16px; color:#CCC;
}
#my_nav ul li a:hover{ background:#222; text-decoration:none; color:#FFF; }

#my_orders
{
	width:100%; height:auto; float:left;
}

#my_orders h1
{
	width:100%; height:auto; float:left;
	font-size:36px; color:#deaf25; font-weight:600; text-align:center;
	margin-bottom:20px;
}

#my_orders table table{ margin-bottom:15px; }
#my_orders table td{ padding:25px; }

#my_orders table h3
{
	width:100%; height:auto; float:left;
	font-size:18px; font-weight:600;
	margin-bottom:5px;
}
#my_orders table h4
{
	width:100%; height:auto; float:left;
	font-size:14px; font-weight:400;
	margin-bottom:15px;
}

#my_orders table table td{ width:50%; padding:10px; }

#my_orders table ul
{
	width:100%; height:auto; float:left;
	font-size:14px;
	margin-bottom:15px;
}
#my_orders table ul li
{
	width:50%; height:auto; float:left;
	font-size:14px;
	margin-bottom:15px;
}

#my_profile
{
	width:60%; height:auto; float:left;
	margin-left:20%; margin-right:20%;
}

#my_profile h1
{
	width:100%; height:auto; float:left;
	font-size:36px; color:#deaf25; font-weight:600; text-align:center;
	margin-bottom:20px;
}

#my_profile label
{
	width:100%; height:auto; float:left;
	margin-bottom:5px;
}

#my_profile td{ width:50%; }

#my_profile button
{
	width:100%;
}

#myreviews
{
	width:100%; height:auto; float:left;
	margin-top:25px;
}

#myreviews h3
{
	width:100%; height:auto; float:left;
	font-size:22px; color:#222; font-weight:600; text-align:center;
	margin-bottom:20px;
}

/* The Modal (background) */
/* The Modal (background) */
.error-alert {
	display:none;
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* Error alert content */
.error-alert-content {
  background-color: #f44336; /* Red */
  color: white;
  padding: 20px;
  margin: 15% auto;
  border-radius: 5px;
  width: 80%;
  max-width: 400px;
  text-align: left;
  font-size: 16px;
  position: relative;
}
.error-alert-content h2{ margin-bottom:15px; font-size:22px; font-weight:600; }

/* Close button */
.error-close-btn {
  color: white;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* Close button hover effect */
.error-close-btn:hover,
.error-close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Style for the unordered list */
.error-alert ul {
  padding-left: 20px;
  list-style-type: disc;
}

.error-alert ul li {
  margin: 5px 0;
  list-style:inside
}


#wafloat{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


#footer
{
	width:100%; height:auto; float:left;
	background:#181818 url(../images/about_right_bg.png) no-repeat right center;
	margin-top:65px; padding-top:65px; padding-bottom:65px;
}
#footer_l
{
	width:30%; height:auto; float:left;
	margin-right:5%;
}
#footer_l h3
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:32px; color:#deaf25; font-weight:600;
}
#footer_l p
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:16px; text-align:justify;
}

#footer_l_contact
{
	width:20%; height:auto; float:left;
	margin-right:5%;
}
#footer_l_contact h3
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:26px; color:#deaf25; font-weight:600;
}
#footer_l_contact p
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:16px; text-align:justify;
}
#footer_c
{
	width:10%; height:auto; float:left;
	margin-right:5%;
}
#footer_c h3
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:22px; color:#deaf25; font-weight:600;
}
#footer_c ul
{
	width:100%; height:auto; float:left;
}
#footer_c ul li
{
	width:100%; height:auto; float:left;
	margin-bottom:10px;
}
#footer_c ul li a
{
	width:100%; height:auto; float:left;
	font-size:16px; color:#c0bfbf;
}
#footer_r
{
	width:25%; height:auto; float:left;
}
#footer_r h3
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:22px; color:#deaf25; font-weight:600;
}
#footer_r p
{
	width:100%; height:auto; float:left;
	margin-bottom:20px;
	font-size:16px; text-align:justify;
}
#footer_r input
{
	width:60%; height:45px; float:left;
	margin-bottom:60px;
	font-size:16px; text-align:justify;border-radius: 10px 0px 0px 10px;
-webkit-border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
}
#footer_r button
{
	width:40%; height:45px; float:left;
	margin-bottom:60px;
	font-size:16px; text-align: center;
	border-radius: 0px 10px 9px 0px;
-webkit-border-radius: 0px 10px 9px 0px;
-moz-border-radius: 0px 10px 9px 0px;
}

#footer_r_social
{
	width:100%; height:auto; float:left;
	text-align:center;
}
#footer_r_social a
{
	width:45px; height:45px; display:inline-block;
	margin-right:8px; margin-left:8px;
	background:#000; border:1px solid rgba(222, 175, 37, 0.8);
	text-align:center; line-height:45px; color:#EEE;
	border-radius:5px;
}
#footer_r_social a:hover{ background:rgba(222, 175, 37, 0.8); }

#footer_copy
{
	width:100%; height:auto; float:left;
	margin-top:65px; padding-top:45px;
	border-top:1px solid #666;
	text-align:center;
}
#footer_copy a{ color:#c0bfbf; }