/*** 

====================================================================
			Fonts
====================================================================

***/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:400,500,700|Oswald:200,300,400,500,600,700|Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&amp;display=swap');

/*
font-family: 'Rajdhani', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
*/

@import url('flaticon.css');
@import url('jquery-ui.css');
@import url('fontawesome-all.css');
@import url('animate.css');
@import url('owl.css');
@import url('swiper.css');
@import url('jquery.bootstrap-touchspin.css');
@import url('jquery.mCustomScrollbar.min.css');
@import url('jquery.fancybox.min.css');

/*** 

====================================================================
		Reset
====================================================================

***/

* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	font-size: 100%;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/

body {

	font-size: 14px;
	color: #999999;
	line-height: 28px;
	font-weight: 400;
	background: #252525;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #ffbc00;
}

a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-weight: normal;
	margin: 0px;
	background: none;
	line-height: 1.2em;
	font-family: 'Rajdhani', sans-serif;
}

textarea {
	overflow: hidden;
	resize: none;
}

button {
	outline: none !important;
	cursor: pointer;
}

p,
.text {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #ffffff;
	margin: 0;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

::selection {
	background: #ffbc00;
	color: #ffffff;
}

::-moz-selection {
	background: #ffbc00;
	color: #ffffff;
}

::-webkit-selection {
	background: #ffbc00;
	color: #ffffff;
}

.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
	z-index: 99;
}

main {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #121212;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

main .content-inner {
	position: relative;
}

.sidenav-bar .mCSB_inside>.mCSB_container {
	margin-right: 0;
}

.sidenav-bar .mCSB_scrollTools {
	opacity: 0 !important;
}

ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.hr li{
    list-style: number;
    color: white !important;
}

.theme-btn {
	display: inline-block;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-family: "Roboto", sans-serif;
}

.centered {
	text-align: center !important;
}

/*Btn Style One*/

.btn-style-one {
	position: relative;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	padding: 13px 35px;
	font-weight: 500;
	background-color: #252525;
	border: 2px solid #252525;
	overflow: hidden;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
	-moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
	-ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
	-o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.btn-style-one .btn-title {
	position: relative;
}

.btn-style-one:hover {
	color: #ffffff;

}

.btn-style-one:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #ffbc00;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	/* easeInOutQuint */
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	/* easeInOutQuint */
}

.btn-style-one:hover:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

/*Btn Style Two*/
.btn-style-two {
	position: relative;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	padding: 15px 40px;
	font-weight: 700;
	background-color: #ffbc00;
	overflow: hidden;
}

.btn-style-two .btn-title {
	position: relative;
}

.btn-style-two:hover {
	color: #ffbc00;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
	-ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
	-o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-two:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-color: #ffffff;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
	-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	/* easeInOutQuint */
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	/* easeInOutQuint */
}

.btn-style-two:hover:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}

/*=== List Style One ===*/
.list-style-one {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.list-style-one li {
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #f1f1f1;
	font-weight: 400;
	padding-left: 35px;
	margin-bottom: 15px;
}

.list-style-one li:before {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 25px;
	color: #ffbc00;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
}

/*=== List Style Two ===*/
.list-style-two {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.list-style-two li {
	position: relative;
	font-size: 14px;
	line-height: 20px;
	color: #999999;
	font-weight: 500;
	padding-left: 35px;
	margin-bottom: 15px;
	font-family: "Archivo", sans-serif;
}

.list-style-two li:before {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 20px;
	color: #ffbc00;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: "\f061";
}

.theme_color {
	color: #ffbc00;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.preloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #252525;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../images/icons/preloader.svg);
}

.logo a {
	display: flex;

}

.logo img {
	width: 60px !important;
	border-radius: 10px;
}

.brand-name {
	font-weight: 900;
	font-size: 24px;
	text-align: center;
	color: white;
	padding-left: 12px;
}

.tagline {
	font-size: 14px;
	color: #ffffff;
	margin-top: 2px;
	/* text-align: left; */
	display: block;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}



/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
	display: block !important;
	position: fixed;
	left: 40px;
	bottom: 30px;
	height: 30px;
	width: 30px;
	font-size: 22px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	z-index: 100;
	background: #252525;
	
	border-radius: 0;
	margin: 0 auto;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.scroll-to-top:hover {
	background: #ffffff;
	color: #222222;
}

/*** 

====================================================================
	Main Header
====================================================================

***/

.main-header .outer-box {
	position: relative;
	float: right;
}

.main-header .btn-box {
	position: relative;
	float: right;
	margin-left: 20px;
	padding: 8px 0;
}


/*** 

====================================================================
	Sidenav Bar
====================================================================

***/
.whatsapp-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
}
/* Sticky Header Styles */
.top-header {
    background-color: #ffffff;
    color: #fff;
    padding: 0;
   
    z-index: 9999;
    width: 100%;
    font-family: Arial, sans-serif;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left .logo {
    height: 130px;
    width: 150px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.header-center marquee {
    color: #ffca28;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
}

.header-right a {
    color: #34a973;
    margin-left: 8px;
    font-size: 28px;
}

.header-right a:hover {
    color: #ffca28;
}

/* Navigation Bar */
.main-nav {
    background-color: #2c2c2c;
    padding: 10px 0;
    position: sticky;
    top: 0px;
    z-index: 9998;
    width: 100%;
}

.nav-menu-right{
    margin-left: 45%;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: left;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
	font-size: 22px;
}

.nav-menu li a:hover {
    color: #ffca28;
}

.nav-menu li {
  position: relative;
}

.nav-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1f1f1f;
  padding: 10px 0;
  min-width: 220px;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-menu .submenu li {
  display: block;
}

.nav-menu .submenu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.nav-menu .submenu li a:hover {
  background-color: #1e7c4d;
}

.nav-menu li.dropdown:hover > .submenu {
  display: block;
}


.animated-box {
  background-color: #4aa525;
  padding: 10px 20px;
  margin-top: 10px;
  text-align: center;
  color: white;
  font-weight: bold;
  animation: btnWiggle 2s infinite;
  border-radius: 5px;
  max-width: 100%;
  display: inline-block;
}

@keyframes btnWiggle {
  0%   { transform: rotate(0deg); }
  2%   { transform: rotate(-2deg); }
  3.5% { transform: rotate(2deg); }
  5%   { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
/* ------------------------ */


/*** 

====================================================================
		Section Title
====================================================================

***/

.sec-title {
	position: relative;
	padding-top: 60px;
	margin-bottom: 60px;
}

.sec-title h2 {
	position: relative;
	display: inline-block;
	font-size: 50px;
	line-height: 1.2em;
	color: #ffbc00;
	font-weight: 700;
	transform: scaleY(0);
	transform-origin: bottom;
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

.sec-title h2 span {
	color: #ffffff;
}

.sec-title.active h2 {
	transform: scale(1);
}

.sec-title .text {
	position: relative;
	margin-top: 20px;
	font-size: 16px;
}

.sec-title .float-text {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 200px;
	line-height: .65em;
	color: #131313;
	font-weight: 700;
	font-family: "Rajdhani", sans-serif;
	letter-spacing: .2em;
	text-transform: uppercase;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-ms-transition: all 2s ease;
	-o-transition: all 2s ease;
	transition: all 2s ease;
}

.sec-title.text-center .float-text {
	right: 0;
	margin: 0 auto;
}

.sec-title.active .float-text {
	text-shadow: 0 0 40px rgba(0, 0, 0, 0.50);
	letter-spacing: 0;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title {
	position: relative;
	text-align: center;
	padding: 200px 0px 150px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.page-title:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.60);
}

.page-title .auto-container {
	position: relative;
}

.page-title h2 {
	position: relative;
	color: #ffffff;
	font-size: 74px;
	line-height: 1.2em;
	margin-bottom: 10px;
	font-weight: 700;
	text-transform: capitalize;
}

.page-breadcrumb {
	position: relative;
	margin-top: 5px;
}

.page-breadcrumb li {
	position: relative;
	display: inline-block;
	margin-right: 10px;
	padding-right: 15px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
}

.page-breadcrumb li:after {
	position: absolute;
	content: ">";
	right: -2px;
	top: 1px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
}

.page-breadcrumb li:last-child::after {
	display: none;
}

.page-breadcrumb li:last-child {
	padding-right: 0px;
	margin-right: 0px;
}

.page-breadcrumb li a {
	color: #ffffff;
	font-weight: 500;
	text-transform: capitalize;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
	color: #ffbc00;
}

.play-now {
	position: relative;
	display: block;
	z-index: 9;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.play-now .icon {
	position: relative;
	display: inline-block;
	height: 80px;
	width: 80px;
	text-align: center;
	line-height: 80px;
	background-color: #000000;
	color: #ffffff;
	z-index: 1;
	padding-left: 5px;
	font-size: 24px;
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-ms-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-o-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 70px;
	width: 70px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.play-now .ripple:before {
	-webkit-animation-delay: .9s;
	-moz-animation-delay: .9s;
	-ms-animation-delay: .9s;
	-o-animation-delay: .9s;
	animation-delay: .9s;
	content: "";
	position: absolute;
}

.play-now .ripple:after {
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-ms-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


/*** 

====================================================================
		Banner Section Three
====================================================================

***/

.banner-section-three {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.banner-section-three .layer-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.banner-section-three .shape-outer {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	top: 0;
	opacity: .80;
}

.banner-section-three .left-shape {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgb(14, 14, 14);
	background: -moz-linear-gradient(left, rgba(14, 14, 14, 1) 0%, rgba(36, 36, 36, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(14, 14, 14, 1) 0%, rgba(36, 36, 36, 1) 100%);
	background: linear-gradient(to right, rgba(14, 14, 14, 1) 0%, rgba(36, 36, 36, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0e0e0e', endColorstr='#242424', GradientType=1);
}

.banner-section-three .left-shape:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: .20;
	background: -moz-linear-gradient(top, rgba(14, 14, 14, 1) 0%, rgba(19, 19, 19, 0) 1%, rgba(255, 255, 255, 0.5) 50%, rgba(36, 36, 36, 0) 100%);
	background: -webkit-linear-gradient(top, rgba(14, 14, 14, 1) 0%, rgba(19, 19, 19, 0) 1%, rgba(255, 255, 255, 0.5) 50%, rgba(36, 36, 36, 0) 100%);
	background: linear-gradient(to bottom, rgba(14, 14, 14, 1) 0%, rgba(19, 19, 19, 0) 1%, rgba(255, 255, 255, 0.5) 50%, rgba(36, 36, 36, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0e0e0e', endColorstr='#00242424', GradientType=0);
	content: "";
}

.banner-section-three .center-stipts:before,
.banner-section-three .center-stipts:after,
.banner-section-three .center-stipts {
	position: absolute;
	left: 40%;
	top: 20%;
	height: 70px;
	width: 500px;
	opacity: .50;
	background: -moz-linear-gradient(left, rgba(255, 188, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 188, 0, 1) 0%, rgba(125, 185, 232, 0) 100%);
	background: linear-gradient(to right, rgb(0 135 255) 0%, rgba(125, 185, 232, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbc00', endColorstr='#007db9e8', GradientType=1);
	content: "";
}

.banner-section-three .center-stipts:after {
	margin-top: 100px;
	left: 100px;
	opacity: 1;
}

.banner-section-three .center-stipts:before {
	margin-top: 200px;
	left: 200px;
	opacity: 1;
	display: none;
}

.banner-section-three .content-outer {
	position: relative;
	height: 100vh;
	width: 100%;
	display: table;
	vertical-align: middle;
}

.banner-section-three .content-box {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 9;
}

.banner-section-three .inner {
	position: relative;
	width: 50%;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.banner-section-three h2 {
	position: relative;
	display: block;
	font-size: 54px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 25px;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.banner-section-three .wrap {
	display: inline-block;
	color: #ffbc00;
	line-height: 1em;
}

.banner-section-three .text {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
	max-width: 450px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.banner-section-three .social-icon-two {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 99;
}

/*** 

====================================================================
			About Us								
====================================================================

***/

.about-us {
	position: relative;
	padding: 120px 0 70px;
}

.about-us .sec-title {
	margin-bottom: 30px;
}

.about-us .content-column {
	position: relative;
	margin-bottom: 50px;
}

.about-us .content-column .inner-column {
	padding-right: 70px;
}

.about-us .about-years {
	position: relative;
	margin-bottom: 30px;
	padding: 10px 30px;
	background-color: #252525;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.30);
	text-transform: capitalize;
}

.about-us .about-years span {
	position: relative;
	font-size: 28px;
	font-weight: 700;
	margin-right: 10px;
	line-height: 1em;
}

.about-us .about-years h3 {
	position: relative;
	display: inline-block;
	font-size: 24px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
}

.about-us .content-column .text-box {
	margin-bottom: 30px;
}

.about-us .content-column .text-box p {
	position: relative;
	margin-bottom: 20px;
}

.feature-block {
	position: relative;
	margin-bottom: 30px;
}

.feature-block .inner-box {
	position: relative;
	padding-left: 65px;
}

.feature-block .icon-box {
	position: absolute;
	left: 0;
	top: 15px;
}

.feature-block .icon-box .icon {
	display: block;
	font-size: 42px;
	line-height: 1em;
	color: #ffbc00;
	font-weight: 400;
}

.feature-block h4 {
	font-size: 20px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 10px;
}

.feature-block h4 a {
	color: #ffffff;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.feature-block h4 a:hover {
	color: #ffbc00;
}

.feature-block .text {
	font-size: 15px;
	line-height: 25px;
	font-weight: 400;
}

.about-us .image-column {
	position: relative;
	margin-bottom: 50px;
}

.about-us .image-column .inner-column {
	position: relative;
	padding-top: 20px;
}

.about-us .image-column .inner-column:before {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 500px;
	width: 400px;
	border: 20px solid #ffbc00;
	content: "";
	transform: translateX(50px);
}

.about-us .image-column .image {
	position: relative;
	z-index: 9;
	padding: 50px;
	margin-bottom: 0;
	text-align: center;
}

.about-us .image-column .image img {
	display: inline-block;
	width: auto;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.80);
}

.about-us .single-item-carousel {
	position: relative;
	padding-bottom: 30px;
}

.about-us .single-item-carousel .owl-nav {
	display: none;
}

.about-us .single-item-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	text-align: center;
}

.about-us .single-item-carousel .owl-dot {
	position: relative;
	display: inline-block;
	height: 12px;
	width: 12px;
	background-color: rgba(255, 255, 255, .50);
	margin: 0 5px;
}

.about-us .single-item-carousel .owl-dot.active {
	background-color: #ffbc00;
}

/*** 


====================================================================
		About Section
====================================================================

***/

.about-section {
	position: relative;
	padding: 100px 0 00px;
	z-index: 0;
}

.about-section .bg-layer {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.about-section .sec-title {
	margin-bottom: 30px;
}

.about-section .content-column {
	position: relative;
	margin-bottom: 50px;
}

.about-section .content-column .inner-column {
	position: relative;
}

.about-section .content-column .message {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1.4em;
	color: #ffffff;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	margin-bottom: 30px;
}

.about-section .text-box {
	position: relative;
	display: block;
	margin-bottom: 40px;
}

.about-section .text-box p {
	position: relative;
	margin-bottom: 20px;
	color: white;
	text-align: justify;
}

.about-section .list-style-two li {
	float: left;
	width: 50%;
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	font-family: "Rajdhani", sans-serif;
}

.about-section .btn-box {
	position: relative;
	display: block;
}

.about-section .image-column {
	position: relative;
	margin-bottom: 50px;
}

.about-section .image-column .inner-column {
	position: relative;
	padding: 50px 50px 0;
}

.about-section .image-column .image {
	position: relative;
	margin-bottom: 0;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.50);
}

.about-section .image-column .image:before {
	position: absolute;
	left: -50px;
	top: -50px;
	height: 100%;
	width: 100%;
	border: 15px solid #ffbc00;
	content: "";
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.50);
	z-index: -1;
}

.about-section .image-column .image img {
	display: block;
	width: 100%;
	height: 500px;
}

/*** 

====================================================================
			Welcome Section								
====================================================================

***/

.welcome-section {
	position: relative;
	text-align: center;
	padding: 150px 0 60px;
}

.welcome-section .sec-title {
	margin-bottom: 100px;
}

.welcome-section .sec-title h2 .logo {
	position: relative;
	display: inline-block;
	top: -5px;
}

.welcome-section .row {
	margin: 0 -40px;
}

.welcome-section .column {
	position: relative;
	padding: 0 40px;
	margin-bottom: 60px;
}

.welcome-section .column .inner-column {
	position: relative;
	background-color: #252525;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.welcome-section .column .lower-content {
	position: relative;
	border-bottom: 5px solid #ffbc00;
	border-radius: 0 0 15px 15px;
	padding: 50px 30px;
}

.welcome-section .column .image {
	position: relative;
	margin-bottom: 0;
}

.welcome-section .column .image img {
	display: block;
	width: 100%;
}

.welcome-section h3 {
	position: relative;
	display: block;
	font-size: 32px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
}

/*** 

====================================================================
		Features Section
====================================================================

***/

.features-section {
	position: relative;
	padding: 80px 0 0px;
	border-top: 2px solid #4aa525;
}

.features-section .text-column {
	position: relative;
	margin-bottom: 70px;
}

.features-section .text-column .inner-column {
	position: relative;
	padding-top: 10px;
}

.features-section .text-column p {
	position: relative;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 25px;
	text-align: justify;
}

.features-section .text-column ul {
	margin-bottom: 40px;
}

.feature-block-two {
	position: relative;
	margin-bottom: 30px;
}

.feature-block-two .inner-box {
	position: relative;
	padding: 20px 30px;
	padding-left: 120px;
	background-color: #252525;
	border-radius: 15px;
	min-height: 130px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
	border-bottom: 2px solid #ffbc00;
}

.feature-block-two .inner-box .icon {
	position: absolute;
	left: 30px;
	top: 30px;
	font-size: 64px;
	line-height: 1em;
	color: #ffbc00;
}

.feature-block-two h4 {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1em;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 15px;
}

.feature-block-two .text {
	font-size: 14px;
	line-height: 24px;
	color: #aaaaaa;
	max-width: 380px;
}

.right-column .feature-block-two .inner-box {
	padding-left: 30px;
	padding-right: 120px;
	text-align: right;
}

.right-column .feature-block-two .inner-box .icon {
	left: auto;
	right: 30px;
}

/*** 

====================================================================
		Service Section Two
====================================================================

***/

.services-section-two {
	position: relative;
	padding: 90px 0 50px;
	border-top: 2px solid #4aa525;
}

.service-block-two {
	position: relative;
	margin-bottom: 50px;
}

.service-block-two .inner-box {
	position: relative;
	display: block;
	background-color: #252525;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.50);
	border-radius: 10px;
	overflow: hidden;
	border-bottom: 4px solid #ffbc00;
}

.service-block-two .inner-box {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
  }
  
  .service-block-two .inner-box:hover {
	transform: scale(1.02);
  }
  
  .service-block-two .image-box {
	position: relative;
  }
  
  .service-block-two .image-box .image img {
	width: 100%;
	display: block;
	transition: transform 0.4s ease;
  }
  
  .service-block-two .inner-box:hover .image img {
	transform: scale(1.1);
  }
  
  /* Overlay styles */
  .service-block-two .lower-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	padding: 20px;
	text-align: center;
	transition: opacity 0.4s ease;
  }
  
  .service-block-two .inner-box:hover .lower-content {
	opacity: 1;
  }
  
  .service-block-two .lower-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #fff;
  }
  
  .service-block-two .lower-content .text {
	font-size: 15px;
	margin-bottom: 15px;
  }
  
  .service-block-two .lower-content .read-more {
	background: #ff4c4c;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
  }
  
  .service-block-two .lower-content .read-more:hover {
	background: #e43c3c;
  }
  
.service-block-two h3 {
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 600;
	border-top: 1px solid rgba(255, 255, 255, .10);
	margin-bottom: 15px;
}

.service-block-two h3 a {
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block-two h3 a:hover {
	color: #ffbc00;
}

.image-box figure{
	margin: 0;
}

.service-block-two .text {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 25px;
}

.service-block-two .read-more {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 600;
	padding: 5px 20px;
	border-radius: 3px;
	background-color: #ffbc00;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.service-block-two .read-more:hover {
	background-color: #ffffff;
	color: #222222;
}

/*** 

====================================================================
		Service Details
====================================================================

***/

.service-detail-section {
	position: relative;
	padding: 80px 0px 50px;
	z-index: 9;
}

.service-detail-section .sidebar-side,
.service-detail-section .content-side {
	position: relative;
	margin-bottom: 50px;
}

.service-detail {
	position: relative;
}

.service-detail .image-box {
	position: relative;
	margin-bottom: 40px;
}

.service-detail .image-box .image {
	position: relative;
	margin-bottom: 0px;
}

.service-detail .image-box .image img {
	display: block;
	width: 100%;
	height: auto;
}

.service-detail .content-box {
	position: relative;
}

.service-detail .content-column {
	position: relative;
}

.service-detail .content-column .inner-column {
	position: relative;
}

.service-detail .content-box h2 {
	position: relative;
	font-size: 30px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 30px;
}

.service-detail .content-box h4 {
	position: relative;
	font-size: 24px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 20px;
}

.service-detail .content-box p {
	position: relative;
	font-size: 16px;
	line-height: 27px;
	color: #999999;
	font-weight: 400;
	margin-bottom: 27px;
}

.service-detail .two-column {
	position: relative;
	margin-top: 40px;
}

.service-detail .two-column .text-column {
	position: relative;
	margin-bottom: 13px;
}

.service-detail .two-column .text-column p {
	margin-bottom: 28px;
}


.service-detail .two-column .image-column {
	position: relative;
	margin-bottom: 40px;
}

.service-detail .two-column .image {
	position: relative;
	margin-bottom: 0;
}

.service-detail .two-column .image img {
	display: block;
	width: 100%;
}

.service-detail .feature-box {
	position: relative;
	margin-top: 50px;
	margin-bottom: 20px;
}

.service-detail .feature-block-two h4 {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1em;
	color: #ffffff;
	margin-bottom: 15px;
}

.help-box .info-box {
	position: relative;
	margin-bottom: 30px;
}

.help-box .info-box li {
	position: relative;
	display: block;
	font-size: 17px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 8px;
	padding-left: 30px;
}

.info-box .info-box-title {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: normal;
  color:white;
}


/*** 

====================================================================
		Video Section
====================================================================

***/

.video-section {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 120px 0 140px;
}

.video-section:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: #252525;
	opacity: .50;
	content: "";
}

.video-section .content-box {
	position: relative;
	text-align: center;
}

.video-section .content-box .text {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	color: #ffbc00;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.video-section .content-box h2 {
	display: block;
	font-size: 48px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 700;
}

.content-box h3{
    color: #d8cfcf;
}

.video-section .play-now {
	position: relative;
	display: inline-block;
	margin-top: 50px;
}

.video-section .play-now .icon {
	height: 100px;
	width: 100px;
	line-height: 100px;
	background-color: #ffbc00;
	padding-left: 0;
	font-size: 50px;
}

/*** 

====================================================================
		Project Section
====================================================================

***/

.project-section {
	position: relative;
	padding: 120px 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.project-section.pd-top-extra {
	padding-top: 200px;
}

.project-block {
	position: relative;
	opacity: .80;
	pointer-events: none;
}

.project-block.swiper-slide-active {
	pointer-events: unset;
	opacity: 1;
}

.project-block .inner-box {
	position: relative;
	overflow: hidden;
}

.project-block .inner-box .image {
	position: relative;
	margin-bottom: 0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

/* .project-block .inner-box:hover .image {} */

.project-block .inner-box .image img {
	display: block;
	width: 100%;
	height: auto;
}

.project-block .caption-box {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	padding: 40px 40px 30px;
	background-color: rgba(37, 37, 37, .90);
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.project-block.swiper-slide-active .inner-box:hover .caption-box {
	opacity: 1;
	transform: scale(1);
}

.project-block .caption-box h4 {
	position: relative;
	display: block;
	font-size: 26px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.project-block.swiper-slide-active .inner-box:hover .caption-box h4 {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}

.project-block .caption-box h4 a {
	color: #ffffff;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.project-block .caption-box h4 a:hover {
	color: #ffbc00;
}

.project-block .caption-box .text {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 25px;
	color: #dddddd;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.project-block.swiper-slide-active .inner-box:hover .caption-box .text {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transition-delay: 400ms;
	-moz-transition-delay: 400ms;
	-ms-transition-delay: 400ms;
	-o-transition-delay: 400ms;
	transition-delay: 400ms;
}

.project-block .caption-box .read-more {
	position: relative;
	line-height: 20px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.project-block.swiper-slide-active .inner-box:hover .caption-box .read-more {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

/*** 

====================================================================
		Call Back Section
====================================================================

***/

.call-back-section {
	position: relative;
	padding: 70px 0;
	border-top: 2px solid #4aa525;
}

.call-back-section .outer-box {
	position: relative;
	max-width: 90%;
	margin: 0 auto;
}

.call-back-section .form-column {
	position: relative;
}

.call-back-section .form-column .inner-column {
	position: relative;
}

.request-form {
	position: relative;
	padding: 50px 30px;
	background-color: #222222;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.50);
	overflow: hidden;
	border-radius: 20px;
	border-bottom: 5px solid #ffbc00;
}

.request-form .form-group {
	position: relative;
	margin-bottom: 15px;
}

.request-form .form-group:last-child {
	margin-bottom: 0;
}

.request-form .form-group input[type="text"],
.request-form .form-group input[type="email"],
.request-form .form-group input[type="url"],
.request-form .form-group textarea,
.request-form .form-group select {
	position: relative;
	display: block;
	width: 100%;
	font-size: 16px;
	color: #cccccc;
	line-height: 20px;
	padding: 14px 20px;
	background-color: rgba(255, 255, 255, .10);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.30);
	font-weight: 400;
	border: 1px solid rgba(255, 255, 255, .10);
	height: 50px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.request-form .form-group textarea {
	height: 200px;
	resize: none;
}

.request-form .form-group input:focus,
.request-form .form-group textarea:focus,
.request-form .form-group select:focus {
	border-color: #ffbc00;
}

.request-form .form-group button {
	text-transform: capitalize;
	font-size: 14px;
	padding: 15px 40px;
	line-height: 20px;
	border-radius: 0;
}

.call-back-section .image-column {
	position: relative;
	text-align: center;
	z-index: 9;
}

.call-back-section .image-column .image-box {
	position: relative;
}

.call-back-section .image-column .image {
	position: relative;
	display: inline-block;
	margin-bottom: 0;
}

.call-back-section .image-column .image:before {
	position: absolute;
	left: 90px;
	top: 50px;
	width: 300px;
	height: 450px;
	border: 10px solid #ffbc00;
	z-index: -1;
	content: "";
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
}

/*** 

====================================================================
		Contact Page Section
====================================================================

***/

.contact-page-section {
	position: relative;
	padding: 120px 0 80px;
}

.contact-page-section .form-column {
	position: relative;
	margin-bottom: 40px;
}

.contact-page-section .form-column .inner-column {
	position: relative;
	padding-right: 50px;
}

.contact-page-section .sec-title {
	margin-bottom: 70px;
}

.contact-form {
	position: relative;
	background-color: #252525;
	padding: 50px 50px 50px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
	border-bottom: 2px solid #ffbc00;
	border-radius: 0 0 10px 10px;
}

.contact-form .row {
	margin: 0 -10px;
}

.contact-form .form-group {
	position: relative;
	padding: 0 10px;
	margin-bottom: 20px;
}

.contact-form .form-group:last-child {
	margin-bottom: 0;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="url"],
.contact-form .form-group textarea,
.contact-form .form-group select {
	position: relative;
	display: block;
	width: 100%;
	font-size: 18px;
	color: #999999;
	line-height: 20px;
	padding: 14px 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.20);
	border: 1px solid transparent;
	background-color: rgba(255, 255, 255, .10);
	font-weight: 400;
	height: 50px;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
	border-color: #ffbc00;
	color: #ffffff;
}

.contact-form .form-group textarea {
	height: 156px;
	resize: none;
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus {
	border-color: #ff0000;
}

.contact-form label.error {
	display: block;
	font-weight: 500;
	font-size: 13px;
	text-transform: capitalize;
	line-height: 24px;
	color: #ff0000;
	padding-top: 7px;
	margin-bottom: 0;
}

.contact-page-section .contact-column {
	position: relative;
	margin-bottom: 30px;
}

.contact-page-section .contact-column .text {
	position: relative;
	margin-bottom: 30px;
}

.contact-page-section .contact-info {
	position: relative;
	margin-bottom: 30px;
}

.contact-page-section .contact-info li {
	position: relative;
	padding: 5px 30px;
	padding-left: 70px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 10px;
}

.contact-page-section .contact-info li p {
	display: block;
	font-size: 14px;
	line-height: 25px;
	color: #999999;
	font-weight: 400;
}

.contact-page-section .contact-info li strong {
	display: block;
	font-size: 16px;
	line-height: 25px;
	color: #ffffff;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
}

.contact-page-section .contact-info li .icon {
	position: absolute;
	left: 0px;
	top: 5px;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 18px;
	line-height: 50px;
	background-color: #252525;
	border-radius: 50%;
	color: #ffffff;
}

.contact-page-section .contact-info li a {
	color: #999999;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.contact-page-section .contact-info li a:hover {
	color: #ffbc00;
}

.contact-page-section .social-icon-three {
	position: relative;
	padding: 10px 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/*** 

====================================================================
		Contact Info Section
====================================================================

***/

.contact-info-section {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 80px 0;
	text-align: center;
}

.contact-info-section:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #222222;
	opacity: .90;
	content: "";
}

.contact-info-section .content {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info-section .title {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1.2em;
	color: #ffbc00;
	margin-bottom: 20px;
}

.contact-info-section h2 {
	position: relative;
	display: block;
	font-size: 42px;
	line-height: 1.3em;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 20px;
}

/* .contact-info-section h2 span {} */

.contact-info-section .number {
	position: relative;
	display: block;
	font-size: 32px;
	line-height: 1em;
	color: #ffbc00;
	font-weight: 600;
	margin-bottom: 30px;
}

.contact-info-section .number a {
	color: #ffbc00;
}

/*** 

====================================================================
		Map Section
====================================================================

***/

.justify{
	text-align: justify;
}

.map-section {
	position: relative;
	display: block;
	padding-bottom: 120px;
}

.map-section iframe{
	width: 100%;
}


/***

==================================================================
		Main Footer
==================================================================

***/

.main-footer {
	position: relative;
	border-top: 2px solid #4aa525;
}

.main-footer .widgets-section {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 70px 0 0px;
}

.main-footer .footer-column {
	position: relative;
	margin-bottom: 40px;
}

.main-footer .footer-widget {
	position: relative;
}

.footer-widget img {
	width: 70px !important;
	filter: invert(1);
}

.main-footer .footer-column .widget-title {
	position: relative;
	font-size: 24px;
	font-weight: 500;
	color: #ffffff;
	line-height: 30px;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.main-footer .footer-column .widget-title:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 40px;
	background-color: #ffbc00;
	content: '';
}

.main-footer .about-widget {
	position: relative;
}

.main-footer .logo {
	position: relative;
	margin-bottom: 25px;
}

.main-footer .footer-logo figure {
	margin: 0;
}

.main-footer .footer-logo img {
	display: block;
	max-width: 100%;
}

.main-footer .about-widget .text {
	position: relative;
	margin-bottom: 30px;
}

.main-footer .about-widget .text p {
	font-size: 14px;
	line-height: 24px;
	color: #aaaaaa;
	font-weight: 400;
	margin-bottom: 30px;
}

.social-icon-two {
	position: relative;
	display: block;
}

.social-icon-two li {
	position: relative;
	display: inline-block;
	margin-right: 10px;
}

.social-icon-two li:last-child {
	margin-right: 0;
}

.social-icon-two li a {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 30px;
	width: 30px;
	color: #ffffff;
	text-align: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.40);
	background-color: #252525;
	border-radius: 15px;
	border-bottom: 2px solid #ffbc00;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.social-icon-two li a:hover {
	color: #ffbc00;
	border-color: #ffffff;
}

/*Recent Posts*/

.recent-posts {
	position: relative;
	padding-left: 40px;
}

.recent-posts .post {
	position: relative;
	min-height: 90px;
	margin-bottom: 30px;
}

.recent-posts .post:last-child {
	margin-bottom: 0;
}

.recent-posts .post .thumb {
	position: absolute;
	left: 0;
	top: 0;
	height: 90px;
	width: 90px;
	overflow: hidden;
}

.recent-posts .post .thumb a {
	display: block;
}

.recent-posts .post .thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.recent-posts .post h4 {
	position: relative;
	font-size: 18px;
	color: #ffffff;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 5px;
}

.recent-posts .post h4 a {
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.recent-posts .post h4 a:hover {
	color: #ffbc00;
}

.recent-posts .post .date {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: #bbbbbb;
}

.recent-posts .post .date span {
	color: #ffbc00;
	margin-right: 4px;
	opacity: .70;
}

/*=== User LInks ===*/

.useful-links {
	position: relative;
	padding-left: 50px;
}

.user-links li {
	position: relative;
	display: block;
	margin-bottom: 5px;
}

.user-links li a {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 400;
	padding: 0 15px;
	border-left: 1px solid #ffbc00;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.user-links li a:hover {
	color: #ffbc00;
}

.main-footer .contact-list {
	position: relative;
}

.main-footer .contact-list li {
	position: relative;
	padding: 10px 30px;
	padding-left: 55px;
	margin-bottom: 10px;
	background-color: #252525;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.50);
}

.main-footer .contact-list li:last-child {
	margin-bottom: 0;
}

.main-footer .contact-list li .icon {
	position: absolute;
	left: 15px;
	top: 10px;
	font-size: 23px;
	line-height: 25px;
	color: #ffffff;
}

.main-footer .contact-list li .text {
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
}

.main-footer .contact-list li .text a {
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-footer .contact-list li .text a:hover {
	color: #ffbc00;
}

/*=== Footer Bottom ===*/

.main-footer .footer-bottom {
	position: relative;
	width: 100%;
	background-color: #252525;
}

.main-footer .footer-bottom .inner-container {
	position: relative;
}

.main-footer .footer-bottom .copyright-text {
	position: relative;

	padding: 20px 0;
}

.main-footer .footer-bottom .copyright-text p {
	position: relative;
	line-height: 20px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
}

.main-footer .footer-bottom .copyright-text a {
	color: #ffffff;
	font-weight: 600;
	font-family: "Rajdhani", sans-serif;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-footer .footer-bottom .copyright-text a:hover {
	color: #ffffff;
}

.main-footer .footer-bottom .footer-nav {
	position: relative;
	float: right;
}

.main-footer .footer-bottom .footer-nav ul {
	position: relative;
	padding: 15px 0;
}

.main-footer .footer-bottom .footer-nav ul li {
	position: relative;
	float: left;
	margin-left: 10px;
	font-family: "Oswald", sans-serif;
}

.main-footer .footer-bottom .footer-nav ul li a {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 10px;
	text-transform: uppercase;
	background-color: #333333;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-footer .footer-bottom .footer-nav ul li a:hover {
	color: #ffbc00;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
}

