

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i,900,900i|Open+Sans:400,400i,600,600i,700,700i,800|Poppins:300,400,400i,500,500i,600,600i,700,700i,800,800i,900|Rufina:400,700');

@import url('fontawesome-all.css');
@import url('animate.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.timepicker.min.css');
@import url('jquery.fancybox.min.css');
@import url('jquery.bootstrap-touchspin.css');
@import url('scrollbar.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/

*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	font-size: 100%;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

 

body {
	
	font-size:14px;
	color:#787878;
	line-height:1.6em;
	font-weight:400;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: 'Open Sans', sans-serif;
}

.dark-layout{
	background-color:#ffffff;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:#8F8F8F;
}



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;
	letter-spacing: -0.02em;
	font-family: 'Poppins', sans-serif;
    }

textarea{
	overflow:hidden;	
}

button{
	outline: none !important;
	cursor: pointer;
}

p{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
}

.text{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
	margin: 0;
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

.auto-container{
	position:static;
	max-width:1210px;
	padding:0px 10px;
	margin:0 auto;
	
}

.large-container{
	position:static;
	max-width:1600px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
	overflow: hidden;
	z-index: 9;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.theme-btn{
	display:inline-block;
	-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;
}


.theme-btn i{
	position: relative;
	display: inline-block;
	font-size: 14px;
	margin-left: 3px;
}

.centered{
	text-align:center !important;
}

/*Btn Style One*/

.btn-style-one{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #032C3E;
	padding: 8px 26px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:3px;
	background-color: #fa5f14;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
}

.btn-style-one .txt{
	position:relative;
	z-index:1;
}

.btn-style-one:before{
	position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
}

.btn-style-one:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover{
	color: #032C3E;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #032C3E;
	padding: 10px 37px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #ffffff;
	text-transform: uppercase;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
	font-family: 'Poppins', sans-serif;
}

.btn-style-two .txt{
	position:relative;
	z-index:1;
}

.btn-style-two:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #fa5f14;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-two:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-two:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #fa5f14;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-two:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 22px;
	line-height: 30px;
	padding: 14px 45px;
	font-weight: 700;
	overflow: hidden;
	letter-spacing:1px;
	border-radius:3px;
	background-color: #101010;
	text-transform: capitalize;
	color: rgba(255,255,255,0.30);
	font-family: 'Rufina', serif;
	border:1px solid rgba(255,255,255,0.10);
	box-shadow:0px 0px 15px rgba(0,0,0,0.15);
}

.btn-style-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #fa5f14;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-three:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-three:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #fa5f14;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-three:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-three .txt{
	position:relative;
}

.btn-style-three:hover{
	color: #ffffff;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #ffffff;
	padding: 9px 37px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #fa5f14;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
}

.btn-style-four .txt{
	position:relative;
	z-index:1;
}

.btn-style-four:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #222222;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-four:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-four:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #222222;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-four:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-four .txt{
	position:relative;
}

.btn-style-four:hover{
	color: #ffffff;
}

/*=== List Style One ===*/

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #ffffff;
	font-weight:400;
	padding-left:32px;
	margin-bottom: 12px;
}

.list-style-one li:before{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	content: "\f176";
	font-weight:700;
	font-family: "Flaticon";
}

.list-style-one li a:hover{
	color: #ffffff;;
}

/*=== List Style Two ===*/

.list-style-two{
	position:relative;
}

.list-style-two li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #797979;
	font-weight:400;
	margin-bottom: 14px;
}

/*=== List Style Three ===*/

.list-style-three{
	position:relative;
}

.list-style-three li{
	position:relative;
	font-size:20px;
	line-height:24px;
	color: #032C3E;	
	font-weight:400;
	padding-left:32px;
	margin-bottom: 16px;
	font-family: 'Rufina', serif;
}

.list-style-three li:before{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 24px;
	color: #fa5f14;
	content: "\f176";
	font-weight:700;
	font-family: "Flaticon";
}

.list-style-three li a:hover{
	color:#ffffff;
}

.logo-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content; /* let content define width */
  animation: scroll 40s linear infinite;
}

.logo-card {
  min-width: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo-card img {
  max-height: 40px;
  max-width: 100%;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* move half (because we duplicated logos) */
}


/*=== List Style Four ===*/

.list-style-four{
	position:relative;
}

.list-style-four li{
	position:relative;
	font-size:20px;
	line-height:24px;
	color: #797979;
	font-weight:700;
	margin-bottom: 16px;
	font-family: 'Rufina', serif;
}

.theme_color{
	color:#fa5f14;
}

.pull-right{
	float: right;
}

.pull-left{
	float: left;
}

.preloader{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:999999; 
	background-color:#ffffff; 
	background-position:center center; 
	background-repeat:no-repeat; 
	background-image:url(../images/icons/preloader.svg);
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

.dropdown-toggle::after{
	display: none;
}

.fa{
	line-height: inherit;
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #032C3E; /* your brand navy */
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* make it circular */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

/* When active */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Hover Effect */
.scroll-to-top:hover {
  background: #fa5f14; /* gold accent */
  color: #032C3E;
  transform: translateY(-4px);
}




/*** 

/*====================================================================
	Main Header Style
====================================================================*/

/* Top Header */
.top-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    padding-left: 185px;
    font-size: 10;
    font-weight: 300;
    height: 41px;
    background: #032c3e; /* Base dark blue */
    margin-bottom: 9px;
    overflow: hidden;
}

/* White shape overlay with diagonal cut */
.top-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 37%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

/* Contact Info (Left Section) */
.top-header .contact-info {
    position: relative;
    z-index: 1;
    font-weight: 510;
}

.contact-info ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
	font-weight: 400;
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-info ul li i {
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Contact Icon Colors */
.contact-info ul li i.bi-telephone-fill { color: #007bff; }   /* Blue */
.contact-info ul li i.bi-envelope-fill { color: #dc3545; }   /* Red */
.contact-info ul li i.bi-geo-alt-fill   { color: #28a745; }   /* Green */

/* Hover Effects for Icons */
.contact-info ul li:hover i.bi-telephone-fill { color: #25D366; transform: scale(1.2); }
.contact-info ul li:hover i.bi-envelope-fill { color: #EA4335; transform: scale(1.2); }
.contact-info ul li:hover i.bi-geo-alt-fill   { color: #FF6D01; transform: scale(1.2); }


/* Hover Effects for Text Links */
.contact-info ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info ul li:hover a { color: #fa5f14; }

/* Social Icons (Right Section) */
.top-header .social-icons {
    position: relative;
    z-index: 1;
    display: flex;
    padding-right: 100px;
    align-items: center;
    gap: 20px;
}

.top-header .social-icons a {
    font-size: 17px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.top-header .social-icons a:hover { transform: scale(1.2); }

/* Individual Social Colors & Hover */
.social-icons a .bi-linkedin  { color: #0A66C2; }
.social-icons a:hover .bi-linkedin { color: #004182; }

.social-icons a .bi-facebook  { color: #1877F2; }
.social-icons a:hover .bi-facebook { color: #0e5aaf; }

.social-icons a .bi-twitter  { color: #1DA1F2; }
.social-icons a:hover .bi-twitter { color: #0d8ddb; }

/* Instagram Gradient */
.instagram-gradient {
    display: inline-block;
    font-size: 18px;
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Firefox */
    text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.instagram-gradient:hover {
    transform: scale(1); /* optional hover effect */
}

/*=== Main Header Navbar ===*/

.header-upper {
    background-color: #ffffff !important;
}

.main-header .header-upper {
    position: absolute;
    top: 40px; /* height of .top-header */
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,0.14);
    transform: translateY(0);
    transition: transform 0.3s ease, top 0.3s ease;
}

.fixed-header .header-upper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    animation: slideDown 0.7s forwards ease;
}

/* Logo */
.main-header .header-upper .logo-outer {
    position: relative;
    float: left;
    z-index: 25;
    padding: 10px 0px;
    transition: all 600ms ease;
}

.main-header .logo-outer .logo img {
    position: relative;
    display: flex;
    width: 290px;
    margin-top: 0px;
}

/* Navigation */
.main-header .header-upper .nav-outer {
    position: relative;
    float: right;
}

.main-menu {
    position: relative;
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    margin-left: 25px;
    transition: all 600ms ease;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 14.5px;
    line-height: 60px;
    font-weight: 510;
    opacity: 1;
    color: #032c3e;
    text-transform: none;
    transition: all 300ms ease;
    font-family: 'Poppins', sans-serif;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
    color: #FF6B00;
    font-weight: 600;
}

/* Enquiry Button Styles */
.main-menu .navigation > li:last-child {
    margin-left: 20px !important;
}

.btn-nav {
    background: linear-gradient(135deg, #032c3e 0%, #0a4d6e 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 24px !important;
    margin-left: 10px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    display: inline-block !important;
    font-size: 14px !important;
    height: 38px !important;
    margin-top: 10px !important;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #f67434 0%, #f57d41 100%) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(250, 95, 20, 0.2) !important;
    text-decoration: none !important;
}

/* For sticky header */
.fixed-header .btn-nav {
    margin-top: 7px !important;
    padding: 10px 10px !important;
    line-height: 1.8 !important;
    height: 39px !important;
}

/* Sticky nav style */
.fixed-header .main-menu .navigation > li > a {
    line-height: 57px;
    font-weight: 550;
}

.fixed-header .main-menu .navigation > li .btn-nav {
    line-height: 1.5 !important;
    margin-top: 7px !important;
}

/* Remove default hover color for enquiry button */
.main-menu .navigation > li .btn-nav:hover {
    color: white !important;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .main-menu .navigation > li {
        margin-left: 0;
        float: none;
        width: 100%;
        text-align: left;
    }
    
    .main-menu .navigation > li:last-child {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .btn-nav {
        margin-left: 0 !important;
        margin-top: 10px !important;
        display: inline-block !important;
        width: auto !important;
        text-align: center !important;
    }
    
    .main-menu .navigation > li > a {
        line-height: 40px;
        padding: 5px 15px;
    }
    
    .btn-nav {
        margin-left: 15px !important;
        margin-top: 5px !important;
    }
}

/* Keyframes for smooth slide-down effect */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
	position: relative;
	font-size: 36px;
	line-height: 40px;
	font-family: 'Playfire Display', sans-serif;
	cursor: pointer;
	color: #fa5f14;
	padding: 20px 0px 0px;
	display: none;
}

/* Mobile menu container */
.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	max-width: 100%;
	height: 100%;
	padding-right: 30px;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Menu scrollbar fix */
.mobile-menu .mCSB_inside > .mCSB_container {
	margin-right: 5px;
}

.mobile-menu .navbar-collapse {
	display: block !important;	
}

/* Logo area */
.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;	
}

/* When menu is visible */
.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
}

/* Backdrop */
.mobile-menu .menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #fa5f14;
	transform: translateX(101%);
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 0.70;
	visibility: visible;
	transform: translateX(0%);
}

/* Default (desktop) */
.nav-logo img.logo-desktop {
    display: inline-block;
    max-height: 70px;
}
.nav-logo img.logo-mobile {
    display: none;
    max-height: 55px;
}

/* Mobile header background */
    
/* Hamburger icon white */
    .mobile-nav-toggler .icon,
    .navbar-toggler .icon {
        color: #032c3e !important;
    }

/* On mobile */
@media (max-width: 991px) {
    .nav-logo img.logo-desktop {
        display: none;
    }
    .nav-logo img.logo-mobile {
        display: inline-block;
    }
}

/* Mobile menu logos */
.nav-logo img.logo-desktop {
    display: none;
	background: url("images/logo.png") no-repeat left center;  /* always hide header logo in mobile menu */
}

.nav-logo img.logo-mobile {
    display: inline-block;  /* always show footer logo in mobile menu */
    max-height: 55px;
}


/* Menu box */
.mobile-menu .menu-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: white;
	padding: 0;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transform: translateX(101%);
	transition: transform 0.6s ease, opacity 0.6s ease;
}


.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
	transform: translateX(0%);
}

/* Close button */
.mobile-menu .close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	transition: transform 0.6s ease, color 0.3s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
	transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
	color: #ffffff;
	transform: rotate(90deg);
}

/* Navigation links */
.mobile-menu .navigation {
	width: 100%;
	font-family: 'Poppins', sans-serif;
}

.mobile-menu .navigation li {
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child {
	border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a {
	display: block;
	padding: 10px 25px;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

/* Force mobile menu links to white */
.mobile-menu .navigation li > a {
    color: #032c3e !important;
}
.mobile-menu .navigation li > .btn-nav {
	color: #ffffff !important;  /* gold highlight on hover */
}

.mobile-menu .navigation li > .btn-nav:hover {
	color: #032c3e !important;  /* gold highlight on hover */
}
.mobile-menu .navigation li > a:hover,
.mobile-menu .navigation li.current > a {
    color: #fa5f14 !important;  /* gold highlight on hover/active */
}

.mobile-menu .navigation li.current > a{
	color:  #fa5f14;
}
.mobile-menu .navigation li > a:hover {
	color: #fa5f14;	
}

/* Social links */
.mobile-menu .social-links {
	text-align: center;
	padding: 30px 25px;
}

.mobile-menu .social-links li {
	display: inline-block;
	margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
	line-height: 32px;
	font-size: 16px;
	color: #ffffff;
	transition: color 0.3s ease;	
}

.mobile-menu .social-links li a:hover {
	color: #fa5f14;	
}



/*** 

====================================================================
		Section Title
====================================================================

***/

.features-link {
  color: #032C3E;
}

.features-link:hover {
  color: #fa5f14;
}


.sec-title{
	position:relative;
	margin-bottom:50px;
}

.sec-title h2{
	position: relative;
	display: block;
	font-size:38px;
	line-height: 1.2em;
	color: #032C3E;
	font-weight: 700;
}

.sec-title .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.9em;
	margin-top:12px;
}

.dark-layout .sec-title .text{
	color:#cccccc;	
}

.sec-title.light h2{
	color: #ffffff;
}

.sec-title.centered{
	text-align:center;
}

/*** 


/* ===============================
   HERO – ENTERPRISE ELITE (REFINED)
================================ */

/* Global Font */
.wow-hero,
.wow-hero h1,
.wow-hero p,
.wow-hero a,
.wow-hero li {
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   HERO SECTION
================================ */

.wow-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 130px 8%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;

    background:
        linear-gradient(
            100deg,
            rgba(5, 22, 38, 0.80) 0%,
            rgba(5, 22, 38, 0.75) 35%,
            rgba(5, 22, 38, 0.60) 65%,
            rgba(5, 22, 38, 0.45) 100%
        ),
        url("../images/slider.jpg") center/cover no-repeat;
}

/* Soft Accent Glow */
.wow-hero::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -180px;
    right: -180px;
    background: radial-gradient(
        circle,
        rgba(250,95,20,0.07) 0%,
        transparent 70%
    );
    z-index: 0;
}

/* ===============================
   LEFT CONTENT
================================ */

.wow-left {
    max-width: 820px;
    z-index: 2;
}

.wow-left h1 {
    font-size: clamp(42px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
}

.wow-left h1 span {
    color: #fa5f14;
    font-weight: 700;
}

.wow-left p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
}

/* ===============================
   BUTTON
================================ */

.wow-buttons {
    display: flex;
    gap: 22px;
}

.wow-btn.outline {
    border: 2px solid #fa5f14;
    color: #fa5f14;
    border-radius: 50px;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wow-btn.outline:hover {
    background: #fa5f14;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(250,95,20,0.35);
}

/* ===============================
   RIGHT SIDE CARD
================================ */

.wow-right {
    position: relative;
    z-index: 3;
}

/* Card */
.data-card {
    position: relative;
    animation: floatCard 7s ease-in-out infinite;

    background: rgba(18, 38, 65, 0.55);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    padding: 50px;
    border-radius: 22px;
    width: 340px;

    border: 1px solid rgba(255,255,255,0.05);

    box-shadow: 0 25px 60px rgba(0,0,0,0.45);

    transition: all 0.4s ease;
}

/* Hover */
.data-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 45px 100px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Floating Animation */
@keyframes floatCard {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* Card Title */
.data-card h3 {
    margin-bottom: 28px;
    font-size: 20px;
    font-weight: 600;
    color: #fa5f14;
    letter-spacing: 0.6px;
}

/* List */
.data-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-card li {
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.92);
}

.data-card li::before {
    content: "✔";
    margin-top: 3px;
    font-size: 14px;
    color: #fa5f14;
    font-weight: 700;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .wow-hero {
        flex-direction: column;
        text-align: center;
        padding: 110px 8%;
    }

    .wow-buttons {
        justify-content: center;
    }

    .wow-right {
        margin-top: 70px;
    }

    .data-card {
        width: 100%;
        max-width: 420px;
    }
}


/** Main Footer**/

.footer-luxury {
  position: relative;
  background: #032C3E; /* Dark navy base */
  color: #C8C8C8;
  padding: 90px 5px 38px 5px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Animated subtle pattern overlay */
.footer-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.08;
  animation: waveSlide 60s linear infinite;
  z-index: 0;
}

@keyframes waveSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-12%); }
}

/* Ensure content is above animation */
.footer-luxury * {
  position: relative;
  z-index: 1;
}

.footer-luxury .container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* About Section */
.footer-about img {
  max-width: 290px;
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
}

/* Section Headings */

/* Default Colors */
.footer-contact ul li i.bi-telephone-fill { color: #007bff; }   /* Blue */
.footer-contact ul li i.bi-envelope-fill { color: #dc3545; }   /* Red */
.footer-contact ul li i.bi-geo-alt-fill   { color: #28a745; }   /* Green */

/* Hover Effects */
.footer-contact ul li:hover i.bi-telephone-fill {
    color: #25D366;   /* WhatsApp Green */
    transform: scale(1.2);
}

.footer-contact ul li:hover i.bi-envelope-fill {
    color: #EA4335;   /* Gmail Red */
    transform: scale(1.2);
}

.footer-contact ul li:hover i.bi-geo-alt-fill {
    color: #FF6D01;   /* Google Maps Orange */
    transform: scale(1.2);
}

/* Hover link text also changes slightly */
.footer-contact ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-contact ul li:hover a {
    color: #fa5f14;   /* Golden for text */
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: #ffffff;
  font-size: 21px;
  white-space: nowrap;
  margin-bottom: 18px;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fa5f14;
  margin-top: 6px;
  border-radius: 2px;
}

/* Quick Links */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-links a {
  color: #d1d5db;
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #fa5f14;
}

/* Contact */
.footer-contact i {
  margin-right: 6px;
  color: white;
}

/* Footer Contact - match header style */
.footer-contact ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  
}

.footer-contact ul li i {
  font-size: 16px;   /* same as header */
  color: white;    /* gold/yellow */
  margin-right: 8px; /* spacing like header */
  line-height: 2;
}

.footer-contact ul li a {
  color: #d1d5db;    /* same as footer links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
  color: #fa5f14;    /* hover like header */
}

/* Newsletter */
.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 14px;
  color: #d1d5db;
}
.footer-newsletter form {
  display: flex;
  gap: 10px;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}
.footer-newsletter input:focus {
  box-shadow: 0 0 6px rgba(246, 180, 51, 0.6);
}
.footer-newsletter button {
  background: #fa5f14;
  border: none;
  padding: 14px 26px; /* slightly wider */
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  white-space: nowrap;
}

.footer-newsletter button:hover {
  background: #e5530f;
  transform: translateY(-2px);
}


/* Divider */
.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #fa5f14, transparent);
  margin-bottom: 25px;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  margin: 0;
  padding-bottom: 2px;
  font-size: 15px;
  color: #aaa9a9

}

/* Responsive */
@media(max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media(max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-newsletter form {
    flex-direction: column;
	color: #d1d5db;
	font-size: 15px;
  }
  .footer-newsletter button {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section{
	position:relative;
	padding:85px 0px 60px;
	background-color:#032C3E;
}

.services-section .title-box{
	position:relative;
	padding-left:32px;
	margin-bottom:55px;
	border-left:1px solid rgba(255,255,255,0.20);
}

.services-section .title-box h2{
	position:relative;
	color:#fa5f14;
	font-size:15px;
	line-height:1.3em;
}

.service-block{
	position:relative;
	margin-bottom:30px;
}

.service-block .inner-box{
	position:relative;
}

.service-block .inner-box .image{
	position:relative;
	overflow:hidden;
}

.service-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transform:translateX(50px) scale(1.3,1.3);
	-ms-transform:translateX(50px) scale(1.3,1.3);
	transform:translateX(50px) scale(1.3,1.3);
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover .image img{
	-webkit-transform:translateX(0px);
	-ms-transform:translateX(0px);
	transform:translateX(0px);
}

.service-block .inner-box .image a{
	position:relative;
	display:block;
}

.service-block .inner-box .lower-content{
	position:relative;
	padding-top:24px;
}

.service-block .inner-box .lower-content h3{
	position:relative;
	font-size:22px;
	font-weight:400;
	line-height:1.3em;
}

.service-block .inner-box .lower-content h3 a{
	position:relative;
	color:#ffffff;
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.service-block .inner-box .lower-content .text{
	position:relative;
	font-size:16px;
	color:#cccccc;
	font-weight:400;
	line-height:1.9em;
	margin-top:12px;
	margin-bottom:10px;
}

.service-block .inner-box .lower-content .read-more{
	position:relative;
	color:#fa5f14;
	font-size:15px;
	text-decoration:underline;
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box .lower-content .read-more:hover{
	color:#ffffff;
}

/*** 

====================================================================
	Services Section Two
====================================================================

***/

/* ==============================
   Intro Info Section Styles
================================ */

.gen-intro-section {
    background-color: #f4f4f4;
    padding: 80px 0;
}

/* Container */
.gen-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.gen-intro-header {
    text-align: center;
    margin-bottom: 45px;
}

.gen-intro-title {
    color: #f7641a;
    font-size: 42px;
    font-weight: 550;
    line-height: 1.3;
    margin-bottom: 10px;
}

.gen-intro-subtitle {
    color: #032c3e;
    font-size: 18px;
    font-weight: 600;
}

/* Info Boxes */
.gen-info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

/* Headings */
.gen-info-heading {
    color: #f9712e;
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 15px;
}

/* Text */
.gen-info-text {
	position:relative;
	color:#898989;
	font-size:16px;
	line-height:1.7em;
	margin-top:12px;
	-webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
	font-weight: 510;
}

/* List */
.gen-info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.gen-info-list li {
    position: relative;
	font-weight: 510;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #898989;
    line-height: 1.8;
}

.gen-info-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f76d29;
    font-weight: bold;
}

/* Image */
.gen-intro-image {
    text-align: center;
}

.gen-intro-image img {
    width: 100%;
    max-width: 350px;
}

.services-section-two{
	position:relative;
	padding:90px 0px 70px;
	background-color:#f2f0f8;
}

.service-block-two{
	position:relative;
	margin-bottom:30px;
}

.service-block-two .inner-box{
	position:relative;
	padding:35px 25px 30px;
	background-color:#ffffff;
}

.service-block-two .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	height:100%;
	width:0px;
	background-color:#1f576f;
	-webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-two .inner-box:hover::before,
.service-block-two .inner-box:hover::after{
	width:100%;
}

.service-block-two .inner-box .content{
	position:relative;
	padding-left:82px;
	z-index:1;
}

.service-block-two .inner-box .content .icon-box{
	position:absolute;
	left:0px;
	top:0px;
	color:#fa5f14;
	font-size:60px;
	line-height:1em;
	-webkit-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
    -moz-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

.service-block-two .inner-box:hover .content .read-more,
.service-block-two .inner-box:hover .content .text,
.service-block-two .inner-box:hover .content h3 a,
.service-block-two .inner-box:hover .content .icon-box{
	color:#ffffff;
}

.service-block-two .inner-box .content h3{
	position:relative;
	color:#032C3E;
	font-size:21px;
	font-weight:700;
	line-height:1.3em;
}

.service-block-two .inner-box .content h3 a{
	position:relative;
	color:#032C3E;
	-webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-two .inner-box .content .text{
	position:relative;
	color:#898989;
	font-size:16px;
	line-height:1.7em;
	margin-top:12px;
	-webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-two .inner-box .content .read-more{
	position:relative;
	color:#fa5f14;
	font-size:15px;
	font-weight:600;
	margin-top:15px;
	display:inline-block;
	text-decoration:underline;
	font-family: 'Poppins', sans-serif;
	-webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

/* ==============================
   Premium Attendee Section
================================ */

.gen-premium-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 90px 0;
}

.gen-premium-container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 40px;
}

/* Content */
.gen-premium-content {
    flex: 1;
}

.gen-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f87737;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.gen-premium-title {
    font-size: 38px;
    font-weight: 700;
    color: #032c3e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gen-premium-text {
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Feature Grid */
.gen-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gen-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.gen-feature-card:hover {
    transform: translateY(-5px);
}

.gen-feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #f87737;
    margin-bottom: 6px;
}

.gen-feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Footer Note */
.gen-premium-note {
    font-size: 16px;
    font-weight: 600;
    color: #032c3e;
}

/* Image */
.gen-premium-image {
    flex: 1;
    min-height: 520px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .gen-premium-container {
        flex-direction: column;
        text-align: center;
    }

    .gen-feature-grid {
        grid-template-columns: 1fr;
    }

    .gen-premium-image {
        width: 100%;
        min-height: 320px;
    }
}

/*** 

====================================================================
	Project Section
====================================================================

***/

.project-section{
	position:relative;
	padding:90px 0px;
	background-color:#282d31;
}

.project-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:45px;
}

.project-section .title-box h2{
	position:relative;
	color:#fa5f14;
	font-size:38px;
	font-weight:400;
}

.project-section .outer-container{
	position:relative;
	padding:0px 30px;
	margin:0px -2px;
}

.project-section .filters{
	position:relative;
	margin-bottom:50px;
}

.project-section .filters .filter-tabs{
	position:relative;
}

.project-section .filters li{
	position: relative;
    display: inline-block;
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
	margin:0px 30px 6px;
	padding:0px 0px 6px;
	text-transform:capitalize;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
	font-family: 'Rufina', serif;
}

.project-section .filters li:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	height:1px;
	width:0px;
	background-color:#e9c37a;
	transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.project-section .filters li.active,
.project-section .filters li:hover{
	color:#fa5f14;
}

.project-section .filters li.active::before,
.project-section .filters li:hover::before{
	width:100%;
}

.project-section.style-two .filters li:before{
	background-color:#032C3E;
}

.project-section.style-two{
	background-color:#cecece;
}

.project-section.style-two .filters li,
.project-section.style-two .title-box h2,
.project-section.style-two .more-projects .projects{
	color:#032C3E;
}

.project-section .gallery-item.large-block{
	width:40%;
	float:left;
	padding:0px 15px;
}

.project-section .gallery-item.small-block{
	width:20%;
	float:left;
	padding:0px 15px;
}

.project-section .more-projects{
	position:relative;
	margin-top:10px;
	text-align:center;
}

.project-section .more-projects .projects{
	position:relative;
	color:#fa5f14;
	font-size:22px;
	font-weight:400;
	font-family: 'Rufina', serif;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.project-section .more-projects .projects:hover{
	color:#ffffff;
}

/*Gallery Item*/

.gallery-item{
	position:relative;
	margin-bottom:30px;
}

.gallery-item .inner-box{
	position:relative;
	width:100%;
	overflow:hidden;
}

.gallery-item .image-box{
	position:relative;
	display:block;
	margin:0px;
}

.gallery-item .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.gallery-item .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	color:#ffffff;
	text-align:center;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease;
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	-o-transform:translateY(-100%);
	-moz-transform:translateY(-100%);
	transform:translateY(-100%);
	background-color:rgba(0,0,0,0.65);
}

.gallery-item .inner-box:hover .overlay-box{
	opacity:1;
	-webkit-transform:translateY(0%);
	-ms-transform:translateY(0%);
	-o-transform:translateY(0%);
	-moz-transform:translateY(0%);
	transform:translateY(0%);
}

.gallery-item .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
}

.gallery-item .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
	opacity:0;
	-webkit-transform:translateY(50px);
	-ms-transform:translateY(50px);
	transform:translateY(50px);
}

.gallery-item .overlay-inner .content h3{
	position:relative;
	font-size:18px;
	font-weight:500;
	line-height:1.3em;
	margin-bottom:18px;
}

.gallery-item .overlay-inner .content h3 a{
	position:relative;
	color:#ffffff;
}

.gallery-item .inner-box:hover .overlay-inner .content{
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	transform:translateY(0);
	opacity:1;
	transition:all 500ms ease 500ms;
	-webkit-transition:all 500ms ease 500ms;
	-ms-transition:all 500ms ease 500ms;
	-o-transition:all 500ms ease 500ms;	
}

.gallery-item .overlay-inner .link{
	position:relative;
	font-size:18px;
	color:#ffffff;
	width:46px;
	height:46px;
	line-height:44px;
	border-radius:50%;
	margin:0px 5px;
	font-weight:600;
	display:inline-block;
	border:1px solid #ffffff;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.gallery-item .overlay-inner .link .icon{
	position:relative;
}

.gallery-item .overlay-inner .link:hover{
	color:#fa5f14;
	background-color:rgba(255,255,255,1);
}

/*** 

====================================================================
	Fluid Section One
====================================================================

***/


.fluid-section-one{
	position:relative;
	background-color:#282d31;
}

.fluid-section-one .outer-container{
	position:relative;
	 display: flex;
    flex-wrap: wrap;
}

.fluid-section-one .image-column{
    position: relative;
    width: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100%; /* so it matches height */
}

.fluid-section-one .image-column .inner-column{
	position:static;
}

.fluid-section-one .image-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(0,0,0,0.20);
}

.fluid-section-one .image-column .image{
    width: 100%;
    display: none;
}

.fluid-section-one .image-column .image img{
    display: block;
    width: 100%;
}

.fluid-section-one .image-column .overlay-link{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.fluid-section-one .image-column .overlay-link .icon-box{
    position: absolute;
    left: 50%;
	top: 50%;
    width: 80px;
    height: 80px;
    color: #ffffff;
    font-size: 22px;
    padding-left: 6px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 50px;
    display: inline-block;
	margin-left: -40px;
	margin-top: -40px;
    background-color: #fa5f14;
}

.fluid-section-one .image-column .overlay-link .ripple,
.fluid-section-one .image-column .overlay-link .ripple:before,
.fluid-section-one .image-column .overlay-link .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:80px;
	height: 80px;
	border-radius:50%;
	-ms-border-radius:50%;
    -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-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;
}

.fluid-section-one .image-column .overlay-link .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.fluid-section-one .image-column .overlay-link .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 40px 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 40px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

/*Content Column*/

.fluid-section-one .content-column{
	position: relative;
    width: 55%;
    padding: 95px 50px 80px 50px; /* balanced padding */
    box-sizing: border-box;
}

.fluid-section-one .content-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:#032C3E;
}

.fluid-section-one .content-column .image-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-position:left top;
	background-repeat:no-repeat;
}

.fluid-section-one .content-column .content-box{
	position:relative;
	max-width:550px;
	float:right;
}

.fluid-section-one .content-column h2{
	position:relative;
	color:#ffffff;
	font-size:40px;
	font-weight:700;
	line-height:1.3em;
}

.fluid-section-one .content-column .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-top:12px;
	margin-bottom:28px;
}

.fluid-section-one .content-column .bold-text{
	position:relative;
	color:#ffffff;
	font-size:20px;
	font-weight:400;
	line-height:1.5em;
	margin-top:30px;
	font-family: 'Poppins', sans-serif;
}

.fluid-section-one .content-column .bold-text a{
	text-decoration:underline;
	color:#ffffff;
}

.fluid-section-one.style-two{
	background-color:#ffffff;
}

.fluid-section-one.style-two .content-column:before{
	background-color:#ffffff;
}

.fluid-section-one.style-two .content-column .text{
	color:#b1b1b1;
}

.fluid-section-one.style-two .content-column .bold-text,
.fluid-section-one.style-two .content-column h2{
	color:#ffffff;
}

.fluid-section-one.style-two .content-column .bold-text a{
	color:#fa5f14;
}

.fluid-section-one.style-two .list-style-one li:before,
.fluid-section-one.style-two .list-style-one li{
	color:#939393;
}

.fluid-section-one.style-three{
	background-color:#272a2c;
}

/*** 

====================================================================
	Testimonial Section
====================================================================

***/

.success-stories {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.success-stories .section-title {
    font-size: 37px;
    font-weight: 700;
    color: #032c3e;
    margin-bottom: 10px;
}

.success-stories .section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
}

.success-stories .title-underline {
    width: 50px;
    height: 3px;
    background-color: #fa5f14;
    margin: 20px auto 40px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.testimonial-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color:#696868;
}

.testimonial-card .service {
  font-style: italic;
  color: #fa5f14;
  margin-bottom: 10px;
}

.testimonial-card .feedback {
    color:#a0a0a0;
	font-family: 'Poppins', sans-serif;
    font-size: 15px;
	font-weight: 550;
    line-height: 1.6;
}

.rating {
  margin-top: 12px;
  font-size: 17px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
    }
}


/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section{
	position:relative;
	padding:75px 0px 50px;
	background-attachment:fixed;
	background-size:cover;
}

.featured-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(3,44,62,0.90);
}

.featured-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:50px;
}

.featured-section .title-box h2{
	position:relative;
	color:#ffffff;
	font-size:36px;
	font-weight:700;
	line-height:1.3em;
}

/* Feature Block */

.feature-block{
	position:relative;
	margin-bottom:30px;
}

.feature-block .inner-box{
	position:relative;
	text-align:center;
}

.feature-block .inner-box .icon-outer{
	position:relative;
	display:inline-block;
}

.feature-block .inner-box .icon-outer .icon-box{
	position:relative;
	width:136px;
	height:136px;
	color:#404040;
	font-size:60px;
	margin:0 auto;
	line-height:136px;
	border-radius:50%;
	background-color:#f0f0f0;
	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;
}

.feature-block .inner-box:hover .icon-outer .icon-box{
	background-color:#fa5f14;
	color:#ffffff;
}

.feature-block .inner-box .icon-outer .feature-number{
	position:absolute;
	right:0px;
	bottom:8px;
	width:40px;
	height:40px;
	color:#000000;
	font-size:20px;
	text-align:center;
	line-height:40px;
	border-radius:50px;
	font-weight:600;
	background-color:#f87737;
	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;
}

.feature-block .inner-box:hover .icon-outer .feature-number{
	background-color:#ffffff;
}

.feature-block .inner-box .lower-content{
	position:relative;
	padding-top:34px;
}

.feature-block .inner-box .lower-content h3{
	position:relative;
	font-size:20px;
	font-weight:700;
	line-height:1.3em;
	letter-spacing:1px;
}

.feature-block .inner-box .lower-content h3 a{
	position:relative;
	color:#f58248;
	transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.feature-block .inner-box .lower-content .text{
	position:relative;
	color:#cdcdcd;
	font-size:16px;
	line-height:1.8em;
	margin-top:14px;
	transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.feature-block .inner-box:hover .lower-content h3 a{
	color:#ffffff;
}

/*** 

====================================================================
	News Section
====================================================================

***/

.news-section{
	position:relative;
	padding:90px 0px 60px;
	background-color:#fafafa;
}

.news-section.style-two{
	background:none;
}

.news-block{
	position:relative;
	margin-bottom:30px;
}

.news-block .inner-box{
	position:relative;
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.news-block .inner-box .image{
	position:relative;
	display:block;
	overflow:hidden;
	background-color:#000000;
}

.news-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	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;
}

.news-block .inner-box:hover .image img{
	opacity:0.5;
	-webkit-transform:scale(1.07);
	-ms-transform:scale(1.07);
	transform:scale(1.07);
}

.news-block .inner-box .lower-content{
	position:relative;
	padding:30px 25px 25px;
	background-color:#ffffff;
}

.news-block .inner-box .lower-content{
	position:relative;
}

.news-block .inner-box .lower-content .post-meta{
	position:relative;
}

.news-block .inner-box .lower-content .post-meta li{
	position:relative;
	color:#797979;
	font-size:15px;
	display:inline-block;
	padding-right:15px;
	margin-right:15px;
	line-height:1.3em;
	border-right:1px solid #032C3E;
}

.news-block .inner-box .lower-content .post-meta li:last-child{
	margin-right:0px;
	border-right:0px;
	padding-right:0px;
}

.news-block .inner-box .lower-content .post-meta li span{
	position:relative;
	color:#032C3E;
}

.news-block .inner-box .lower-content h3{
	position:relative;
	font-size:20px;
	font-weight:400;
	line-height:1.6em;
	margin-top:15px;
}

.news-block .inner-box .lower-content h3 a{
	position:relative;
	color:#797979;
	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;
}

.news-block .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.news-block .inner-box .lower-content .read-more{
	position:relative;
	color:#fa5f14;
	font-size:16px;
	font-weight: 550;
	margin-top:14px;
	display:inline-block;
	font-family: 'Poppins', sans-serif;
	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;
}

.news-block .inner-box .lower-content .read-more:hover{
	color:#032C3E;
}

.news-block .inner-box .lower-content .read-more .icon{
	position:relative;
	top:1px;
	font-size:14px;
	margin-left:4px;
}

/*** 

====================================================================
	Services Section Three
====================================================================

***/

.services-section-three{
	position:relative;
	padding:95px 0px 60px;
}

.services-section-three .row{
	margin:0px -10px;
}

.services-section-three .service-block-three{
	padding:0px 10px;
}

.services-section-three .btn-box{
	margin-top:30px;
}

.service-block-three{
	position:relative;
	margin-bottom:30px;
}

.service-block-three .inner-box{
	position:relative;
}

.service-block-three .inner-box .image{
	position:relative;
	overflow:hidden;
}

.service-block-three .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transform:scale(1.3,1.3);
	-ms-transform:scale(1.3,1.3);
	transform:scale(1.3,1.3);
	-webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.service-block-three .inner-box:hover .image img{
	-webkit-transform:scale(1,1);
	-ms-transform:scale(1,1);
	transform:scale(1,1);
}

.service-block-three .inner-box .image a{
	position:relative;
	display:block;
}

.service-block-three .inner-box .image a:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	height:0px;
	width:100%;
	opacity:0.65;
	z-index:1;
	-webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
	background-color:#fa5f14;
}

.service-block-three .inner-box:hover .image a:before{
	height:100%;
}

.service-block-three .inner-box .lower-content{
	position:relative;
	padding:34px 20px 50px;
	text-align:center;
	background-color:#032C3E;
}

.service-block-three .inner-box .lower-content h3{
	position:relative;
	font-size:22px;
	font-weight:400;
	line-height:1.3em;
}

.service-block-three .inner-box .lower-content h3 a{
	position:relative;
	color:#ffffff;
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.service-block-three .inner-box .lower-content .text{
	position:relative;
	font-size:15px;
	color:#a0a0a0;
	font-weight:400;
	line-height:1.9em;
	margin-top:12px;
	margin-bottom:16px;
}

.service-block-three .inner-box .lower-content .read-more{
	position:relative;
	color:#fa5f14;
	font-size:15px;
	text-decoration:underline;
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-three .inner-box .lower-content .read-more:hover{
	color:#ffffff;
}

.service-block-three.style-two .inner-box .lower-content .read-more:hover{
	color:#032C3E;
}

.service-block-three.style-two .inner-box .lower-content h3 a:hover{
	text-decoration: underline;
	color: #fa5f14;
}

.service-block-three.style-two .inner-box{
	box-shadow:0px 0px 15px rgba(0,0,0,0.15);
}

.service-block-three.style-two .inner-box .lower-content{
	background-color:#ffffff;
}

.service-block-three.style-two .inner-box .lower-content h3 a{
	color:#032C3E;
}

.service-block-three.style-two .inner-box .lower-content .text{
	color:#a0a0a0;
}

/*** 

====================================================================
	Project Section Two
====================================================================

***/

.project-section-two{
	position:relative;
	padding:40px 0px 60px;
}

.project-section-two .outer-container{
	padding:0px 70px;
}

.project-section-two .outer-container .row{
	margin:0px -10px;
}

.project-section-two .outer-container .gallery-item{
	padding:0px 10px;
	margin-bottom:20px;
}

/*** 

====================================================================
	Interior Section
====================================================================

***/

.interior-section{
	position:relative;
	padding:20px 0px 0px;
}

.interior-section .inner-container{
	position:relative;
	z-index:1;
	background-color:#282d31;
}

.interior-section .image-column{
	position:relative;
}

.interior-section .image-column .inner-column{
	position:relative;
}

.interior-section .image-column .inner-column .image{
	position:relative;
}

.interior-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.interior-section .content-column{
	position:relative;
}

.interior-section .content-column .inner-column{
	position:relative;
	padding:75px 60px 40px;
}

.interior-section .content-column h2{
	position:relative;
	color:#ffffff;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
}

.interior-section .content-column .text{
	position:relative;
	color:#cccccc;
	font-size:16px;
	font-weight:400;
	line-height:1.7em;
	margin-top:16px;
	margin-bottom:50px;
}

.dark-layout .interior-section .content-column .text,
.dark-layout .interior-section .content-column .column-text,
.fluid-section-one.style-two .list-style-one li:before,
.fluid-section-one.style-two .list-style-one li,
.services-section-four .sec-title .text,
.team-section .sec-title .text{
	color:#cccccc;	
}

.interior-block{
	position:relative;
	margin-bottom:30px;
}

.interior-block .block-inner{
	position:relative;
	text-align:center;
}

.interior-block .block-inner .icon-box{
	position:relative;
	color:#797979;
	font-size:60px;
	line-height:1em;
}

.interior-block .block-inner h3{
	position:relative;
	color:#e3e3e3;
	font-size:16px;
	line-height:1.3em;
	margin-top:24px;
	font-family: 'Open Sans', sans-serif;
}

.interior-section .content-column .bold-text{
	position:relative;
	color:#fa5f14;
	font-size:21px;
	font-weight:600;
	margin-top:45px;
	font-family: 'Poppins', sans-serif;
}

.interior-section .content-column .column-text{
	position:relative;
	color:#cccccc;
	font-size:16px;
	line-height:1.7em;
	margin-top:10px;
}

.interior-section.style-two{
	padding-top:100px;
}

.interior-section.style-three{
	padding-top:0px;
}

/*** 

====================================================================
	Counter Section
====================================================================

***/

.counter-section{
	position:relative;
	padding:75px 0px 40px;
}

/*fact counter*/

.fact-counter{
	position:relative;
}

.fact-counter .column{
	position:relative;
	margin-bottom:50px;
}

.fact-counter .column .inner{
	position:relative;
}

.fact-counter .column .inner .content{
	position:relative;
	text-align:center;
}

.fact-counter .column .inner .icon{
	position:relative;
	color:#ea3a60;
	font-size:60px;
	text-align:center;
	line-height:1em;
	font-weight: 400;
	margin-bottom:28px;
	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;
}

.fact-counter .count-outer .percentage{
	display:inline-block;
	font-weight:600;
	color:#020e28;
	font-size:48px;
	line-height:1em;
}

.fact-counter .column .inner .count-outer{
	position:relative;
	font-weight:700;
	color:#ffffff;
	font-size:40px;
	line-height:1em;
	display:inline-block;
}

.fact-counter .column .inner .counter-title{
	position:relative;
	font-size:18px;
	font-weight:400;
	margin-top:14px;
	color:rgba(255,255,255,0.40);
}

.counter-section.style-two{
	background-color:#e5e9eb;
}

.counter-section.style-two:before{
	position:absolute;
	content:'';
	left:0px;
	top:-170px;
	width:100%;
	height:170px;
	background-color:#e5e9eb;
}

.counter-section.style-two .fact-counter .column .inner .counter-title,
.counter-section.style-two .fact-counter .column .inner .count-outer{
	color:#032C3E;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/

.banner-section{
	position:relative;
	padding:135px 0px 40px;
	background-size:cover;
	background-repeat:no-repeat;
}

.banner-section .form-column{
	position:relative;
	margin-bottom:30px;
}

.banner-section .form-column .inner-column{
	position:relative;
}

.banner-section .form-column .form-box{
	position:relative;
	padding:55px 30px 30px;
	background-color:rgba(255,255,255,0.95);
}

.banner-section .form-column .form-box h2{
	position:relative;
	color:#032C3E;
	font-size:27px;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:25px;
	text-align:center;
}

.banner-section .form-column .text{
	position:relative;
	color:#9e9d9d;
	font-size:10px;
	font-weight:600;
	margin:20px 10px 0px;
}

.banner-section .form-column .text a{
	position:relative;
	color:#e5441a;
}

.banner-section .content-column{
	position:relative;
	margin-bottom:30px;
}

.banner-section .content-column .inner-column{
	position:static;
}

.banner-section .content-column .content{
	position:absolute;
	margin-left:190px;
	bottom:0px;
	padding:18px 30px;
	display:inline-block;
	background-color:#000000;
}

.banner-section .content-column .content h3{
	position:relative;
	color:#fa5f14;
	font-size:30px;
	font-weight:400;
	line-height:1.3em;
}

.banner-section .content-column .content .text{
	position:relative;
	color:#cacaca;
	font-size:18px;
	font-weight:400;
	line-height:1.7em;
	margin-top:7px;
}

/*Custom Select*/

.form-group .ui-selectmenu-button.ui-button{
	width:100%;
	font-size:16px;
	font-style:normal;
	line-height:25px;
	color:#797979;
	padding:10.5px 20px;
	background:#ffffff;
	border-radius:0px;
	border:1px solid #dedddd;
}

.form-group .ui-button .ui-icon{
	background: none;
    position: relative;
    top: -1px;
    text-indent: 0px;
    color: #333333;
    font-size: 20px;
}

.form-group .ui-button .ui-icon:before{
	font-family: 'Font Awesome 5 Free';
	content: "\f0d7";
	position:absolute;
	right:0px;
	top:2px !important;
	top:13px;
	width:10px;
	height:30px;
	display:block;
	color:#929292;
	line-height:23px;
	font-size:18px;
	font-weight:800;
	text-align:center;
	z-index:5;
}

.ui-widget.ui-widget-content{
	border:1px solid #e0e0e0;
}

.ui-menu .ui-menu-item{
	font-size:14px;
	border-bottom:1px solid #e0e0e0;
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background-color:#fa5f14;
	border-color:#fa5f14;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px ;
	font-size:14px;
	line-height:24px;
}

/*Default Form*/

.default-form{
	position:relative;
}

.default-form .form-group{
	position:relative;
	margin-bottom:15px;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form select,
.default-form textarea{
	display:block;
	width:100%;
	line-height:28px;
	height:48px;
	font-size:15px;
	padding:10px 20px;
	background:#ffffff;
	color:#797979;
	border-radius:0px;
	border:1px solid #dddede;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.default-form textarea{
	height:240px;
	resize:none;
	font-size:16px;
	background:#ffffff;
}

.default-form input[type="text"]:focus,
.default-form input[type="email"]:focus,
.default-form input[type="password"]:focus,
.default-form select:focus,
.default-form textarea:focus{
	border-color:#fa5f14;
}

.default-form .submit-btn{
	position:relative;
	color:#ffffff;
	width:100%;
	font-size:18px;
	font-weight:600;
	border-radius:2px;
	padding:14px 10px;
	display:block;
	margin-top:20px;
	background-color:#e5441a;
}

/*** 

====================================================================
	Mission Section
====================================================================

***/

.mission-section{
	position:relative;
	padding:100px 0px 60px;
	background-color:#edf1f4;
}

.mission-section.style-two{
	padding-top:20px;
}

.mission-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.mission-section .image-column .inner-column{
	position:relative;
	margin-right:-50px;
}

.mission-section .image-column .inner-column .image{
	position:relative;
}

.mission-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
	border-radius: 15px;
}

.mission-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.mission-section .content-column .inner-column{
	position:relative;
	margin-left:70px;
}

.mission-section .content-column h2{
	position:relative;
	color:#032C3E;
	font-size:35px;
	font-weight:700;
	margin-bottom:25px;
}

.mission-section .content-column .bold-text{
	position:relative;
	color:#032C3E;
	font-size:22px;
	line-height:1.6em;
	margin-bottom:22px;
	font-family: 'Poppins', sans-serif;
}

.mission-section .content-column .text{
	position:relative;
	color:#797979;
	font-size:17px;
	line-height:1.8em;
	margin-bottom:22px;
}

.mission-section .content-column h3{
	position:relative;
	color:#032C3E;
	font-size:20px;
	font-weight:400;
	margin-bottom:20px;
}

.mission-section .content-column .mission-list{
	position:relative;
	margin-bottom:25px;
}

.mission-section .content-column .list-style-two li{
	position:relative;
	color:#797979;
	font-size:17px;
	margin-bottom:5px;
}

/*** 

====================================================================
	Services Section Four
====================================================================

***/

.services-section-four{
	position:relative;
	padding:90px 0px 90px;
	background-color:#272a2c;
}

.services-section-four .sec-title h2{
	font-size:34px;
}

.services-section-four .service-block-three{
	margin-bottom:50px;
}

.services-section-four .service-block-three .inner-box .lower-content{
	padding:35px 30px 40px;
}

.services-section-four .more-services{
	position:relative;
	text-align:center;
}

.services-section-four .more-services .services{
	position:relative;
	text-align:center;
	color:#fa5f14;
	font-size:22px;
	font-family: 'Rufina', serif;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.services-section-four .more-services .services:hover{
	color:#ffffff;
}

/*** 

====================================================================
	Team Section
====================================================================

***/

.team-section{
	position:relative;
	padding:90px 0px 60px;
}

.team-section.style-two{
	background-color:#edf1f4;
}

.team-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:182px;
	background-color:#282d31;
}

.team-section .sec-title .text{
	font-size:20px;
	font-family: 'Rufina', serif;
}

.team-section .team-block{
	float:left;
	padding:0px;
}

/* Team Block */

.team-block{
	position:relative;
	z-index:1;
	margin-bottom:30px;
}

.team-block .inner-box{
	position:relative;
}

.team-block .inner-box .image{
	position:relative;
	overflow:hidden;
}

.team-block .inner-box .image .overlay-box{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:-20px;
}

.team-block .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:1%;
	z-index:1;
	background-color:rgba(0,0,0,0.56);
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box:hover .image .overlay-box:before{
	height:100%;
}

.team-block .inner-box .image .overlay-box .social-icons{
	position:absolute;
	left:0px;
	right:0px;
	bottom:-60px;
	z-index:10;
	text-align:center;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box .image .overlay-box .social-icons li{
	position:relative;
	margin:0px 8px;
	display:inline-block;
}

.team-block .inner-box .image .overlay-box .social-icons li a{
	position:relative;
	font-size:20px;
	color:#ffffff;
	display:inline-block;
}

.team-block .inner-box .image .overlay-box .social-icons li a:hover{
	color:#fa5f14;	
}

.team-block .inner-box:hover .image .overlay-box .social-icons{
	bottom:50px;
	transition-delay: 400ms;
}

.team-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.team-block .inner-box .lower-content{
	position:relative;
	z-index:2;
	text-align:center;
	padding:18px 15px 20px;
	background-color:#ffffff;
	box-shadow:0px 0px 20px rgba(0,0,0,0.10);
}

.team-block .inner-box .lower-content h3{
	position:relative;
	color:#032C3E;
	font-size:22px;
	font-weight:700;
	line-height:1.3em;
}

.team-block .inner-box .lower-content h3 a{
	position:relative;
	color:#032C3E;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.team-block .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.team-block .inner-box .lower-content .designation{
	position:relative;
	color:#797979;
	font-size:16px;
	margin-top:5px;
	line-height:1.3em;
}

/*** 

====================================================================
	Project Section Three
====================================================================

***/

.project-section-three{
	position:relative;
	padding:90px 0px 100px;
	background-color:#222222;
}

.project-section-three .outer-container{
	position:relative;
	padding:0px 70px;
}

.project-section-three .project-tab{
	position:relative;	
}

.project-section-three .project-tab .project-carousel .owl-nav,
.project-section-three .project-tab .project-carousel .owl-dots{
	display:none;
}

.project-section-three .project-tab .tabs-header{
	position:relative;
	margin-bottom:45px;
}

.project-section-three .project-tab .project-tab-btns{
	position:relative;
	text-align:center;
}

.project-section-three .project-tab .project-tab-btns .p-tab-btn{
	position:relative;
	cursor:pointer;
	color:#ffffff;
	font-weight:400;
	font-size:20px;
	display:inline-block;
	margin:0px 30px;
	margin-bottom:7px;
	padding:0px 0px 6px;
	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;
	font-family: 'Rufina', serif;
}

.project-section-three .project-tab .project-tab-btns .p-tab-btn:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:0%;
	height:1px;
	opacity:0;
	background-color:#fa5f14;
	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;
}

.project-section-three .project-tab .project-tab-btns .p-tab-btn:hover::after,
.project-section-three .project-tab .project-tab-btns .p-tab-btn.active-btn::after{
	opacity:1;
	width:100%;
}

.project-section-three .project-tab .project-tab-btns .p-tab-btn:hover,
.project-section-three .project-tab .project-tab-btns .p-tab-btn.active-btn{
	color:#fa5f14;
}

.project-section-three .project-tab .p-tabs-content{
	position:relative;
	display:block;	
	padding:0px 0px;
}

.project-section-three .project-tab .p-tab{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:auto;
	opacity:0;
	visibility:hidden;	
}

.project-section-three .project-tab .p-tab.active-tab{
	position:relative;
	opacity:1;
	visibility:visible;
	z-index:5;
}

.project-section-three .gallery-item{
	margin-bottom:0px;
}

.p-tab .gallery-item{
	transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-webkit-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	-webkit-transform:scaleX(0);
	-ms-transform:scaleX(0);
	-o-transform:scaleX(0);
	-moz-transform:scaleX(0);
	transform:scaleX(0);	
}

.p-tab.active-tab .gallery-item{
	-webkit-transform:scaleX(1);
	-ms-transform:scaleX(1);
	-o-transform:scaleX(1);
	-moz-transform:scaleX(1);
	transform:scaleX(1);
}

/*** 

====================================================================
	Contact Form Section
====================================================================

***/

.contact-form-section{
	position:relative;
	padding:85px 0px 50px;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.contact-form-section .form-column{
	margin-bottom:20px;	
}

/*** 

====================================================================
	Contact Form
====================================================================

 ***/

/* Base */
.lead-section {
  background: linear-gradient(180deg, #f7f9fc, #eef2f7);
  padding: 90px 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.lead-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.lead-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.lead-badge {
  display: inline-block;
  background: #eaf1ff;
  color: #032c3e;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.lead-header h1 {
  font-size: 42px;
  color: #032c3e;
  margin-bottom: 15px;
}

.lead-header p {
  font-size: 17px;
  color: #5f6b7a;
  line-height: 1.7;
}

/* Grid */
.lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* Form Card */
.lead-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.lead-form h3 {
  font-size: 24px;
  color: #032c3e;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.form-group .full {
  width: 100%;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #dbe2ea;
  font-size: 15px;
  transition: 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #2457ff;
}

/* Button */
.btn-primary {
  width: 100%;
      background: linear-gradient(135deg, #032c3e 0%, #0a4d6e 100%) !important;
  color: #ffffff;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f67434 0%, #f57d41 100%) !important;
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: #7a8794;
  margin-top: 14px;
}

/* Info Panel */
.lead-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.info-card h4 {
  font-size: 20px;
  color: #032c3e;
  margin-bottom: 15px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  font-size: 15px;
  color: #4d5b6a;
  margin-bottom: 10px;
}

.contact-card a {
  color: #4d5b6a;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: none;
  color: #fa5f14;
}

/* Responsive */
@media (max-width: 992px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .lead-header h1 {
    font-size: 34px;
  }

  .form-group {
    flex-direction: column;
  }
}


/*** 

====================================================================
	Welcome Section
====================================================================

 ***/

.welcome-section{
	position:relative;
	padding:95px 0px 60px;
}

.welcome-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:55px;
}

.welcome-section .title-box h2{
	position:relative;
	color:#032C3E;
	font-size:30px;
	line-height:1.4em;
	padding-bottom:25px;
}

.welcome-section .title-box h2:before{
	position:absolute;
	content:'';
	left:50%;
	bottom:0px;
	height:2px;
	width:80px;
	margin-left:-40px;
	background-color:#fa5f14;
}

.welcome-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.welcome-section .content-column .inner-column{
	position:relative;
}

.welcome-section .content-column h2{
	position:relative;
	color:#032C3E;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
}

.welcome-section .content-column .text{
	position:relative;
	color:#797979;
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-top:22px;
	margin-bottom:25px;
}

.welcome-section .video-column{
	position:relative;
	margin-bottom:40px;
}

.welcome-section .video-column .inner-column{
	position:relative;
	padding-left:50px;
}

.welcome-section .video-column .video-box{
	position:relative;
}

.welcome-section .video-column .video-box img{
	position:relative;
	width:100%;
	display:block;
}

.welcome-section .video-column .video-box .overlay-box{
	position:absolute;
	right:40px;
	bottom:35px;
	width:80px;
	height: 80px;
	z-index:20;
	line-height: 80px;
	display:inline-block;
	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;
}

.welcome-section .video-column .video-box .overlay-box span{
	position: relative;
	z-index:99;
	width:80px;
	height: 80px;
	color: #032C3E;
	font-weight:400;
	font-size:24px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	display: inline-block;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	background-color:#fa5f14;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

/* ==============================
   Page Title Section
================================ */
.page-title {
  position: relative;
  padding: 90px 0 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* force left */
  text-align: left !important; /* override theme */
  overflow: hidden;
}

/* Overlay */
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 32, 53, 0.95) 0%,
    rgba(7, 32, 53, 0.85) 40%,
    rgba(7, 32, 53, 0.60) 65%,
    rgba(7, 32, 53, 0.20) 85%,
    rgba(7, 32, 53, 0.00) 100%
  );
}

/* Container */
.page-title .auto-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left !important; /* force left */
}

/* Title */
.page-title h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: left !important; /* force left */
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  justify-content: flex-start; /* force left */
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-breadcrumb li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.page-breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: rgba(245, 241, 241, 0.5);
}

.page-breadcrumb li a {
  color: #fa5f14;
  text-decoration: none;
}

.page-breadcrumb li a:hover {
  color: #ffffff;
}

/*** 

====================================================================
	Story Section
====================================================================

***/

.story-section{
	position:relative;
	padding:90px 0px 60px;
}

.story-section .content-column{
	position:relative;
}

.story-section .content-column .inner-column{
	position:relative;
	padding-right:50px;
	margin-bottom:40px;
}

.story-section .content-column .inner-column h2{
	position:relative;
	color:#032C3E;
	font-size:32px;
	font-weight:700;
	font-family: 'Poppins', sans-serif;
}

.story-section .content-column .inner-column .bold-text{
	position:relative;
	color:#032C3E;
	font-size:22px;
	font-weight:400;
	line-height:1.4em;
	margin-top:25px;
	margin-bottom:20px;
	font-family: 'Poppins', sans-serif;
}

.story-section .content-column .inner-column .text{
	position:relative;
}

.story-section .content-column .inner-column .text p{
	position:relative;
	color:#797979;
	font-size:17px;
	line-height:1.9em;
	margin-bottom:20px;
}

.story-section .content-column .inner-column .text p:last-child{
	margin-bottom:0px;
}

.story-section .image-column{
	position:relative;
}

.story-section .image-column .inner-column{
	position:relative;
	padding-left:50px;
}

.story-section .image-column .image{
	position:relative;
	margin-bottom:35px;
	padding-right:27px;
	padding-top:25px;
}

.story-section .image-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.story-section .image-column .image:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:30px;
	bottom:30px;
	background-color:#032c3e;
}

/*** 

====================================================================
	Team Page Section
====================================================================

***/

.team-page-section{
	position:relative;
	padding:85px 0px 45px;
}

.team-page-section .team-block{
	float:left;
	padding:0px;
	margin-bottom:60px;
}

/*** 

====================================================================
	Testimonial Page Section
====================================================================

***/

.testimonials-page-section{
	position:relative;
	padding:80px 0px 50px;
	background-color:#f0f0f0;
}

.testimonials-page-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:50px;
}

.testimonials-page-section .title-box h2{
	position:relative;
	color:#0e1322;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
}

.testimonials-page-section .title-box .text{
	position:relative;
	color:#032C3E;
	font-size:22px;
	font-weight:400;
	line-height:1.3em;
	margin-top:8px;
	font-family: 'Rufina', serif;
}

.testimonials-page-section .testimonial-block{
	margin-bottom:50px;
}

/*** 

====================================================================
	Services Page Section
====================================================================

***/

.services-page-section{
	position:relative;
	padding:85px 0px 55px;
	background-color:#F2F0F8;
}

.services-page-section .service-block-three{
	margin-bottom:50px;
}

.services-page-section  .service-block-three .inner-box .image a:before{
	background-color:#0e1322;
}

.services-page-section.style-two{
	background-color:#ffffff;
}

.services-page-section.style-two .service-block-three .inner-box .image a:before{
	background-color:#fa5f14;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
}

/* Expo Section */
.expo-v3 {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.expo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Sidebar Styles */
.expo-sidebar {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    align-self: flex-start;
}

.expo-sidebar h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4f8;
}

.expo-sidebar ul {
    list-style: none;
    margin-bottom: 35px;
}

.expo-sidebar ul li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f4f8;
    color: #5d6d7e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.expo-sidebar ul li:last-child {
    border-bottom: none;
}

.expo-sidebar ul li:hover {
    color: #fa5f14;
    padding-left: 8px;
}

.expo-sidebar ul li.active {
    color: #fa5f14;
    font-weight: 600;
}

.expo-sidebar ul li i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.expo-sidebar ul li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.sidebar-btn {
    display: block;
    background: linear-gradient(135deg, #032c3e 0%, #0a4d6e 100%) !important;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #f67434 0%, #f57d41 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.sidebar-btn i {
    margin-right: 8px;
}

/* Main Content Styles */
.expo-content {
    flex: 3;
    min-width: 300px;
}

/* Header Styles */
.expo-header {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.kicker {
    display: inline-block;
    background-color: #e8f4fc;
    color: #fa5f14;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expo-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.expo-header p {
    color: #5d6d7e;
    font-size: 1.1rem;
    max-width: 800px;
}

/* Feature Section Styles */
.expo-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.content-paragraph {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.content-paragraph h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4f8;
}

.content-paragraph p {
    color: #5d6d7e;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-paragraph p:last-child {
    margin-bottom: 0;
}

.feature-text h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-text p {
    color: #5d6d7e;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 10px 0;
    color: #5d6d7e;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: #2ecc71;
    margin-right: 12px;
    font-size: 1.1rem;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

/* Info Strip Styles */
.expo-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f4fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fa5f14;
    font-size: 1.5rem;
}

.info-box h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-box p {
    color: #5d6d7e;
    font-size: 0.95rem;
}

/* Stats Styles */

.expo-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.stat {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
}

.stat h3 {
    color: #fa5f14;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat span {
    color: #5d6d7e;
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Styles */
.expo-cta {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    text-align: center;
}

.expo-cta h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.expo-cta p {
    color: #5d6d7e;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #032c3e 0%, #0a4d6e 100%) !important;
    color: white !important;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #f67434 0%, #f57d41 100%) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.cta-btn i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .expo-container {
        flex-direction: column;
    }
    
    .expo-sidebar {
        width: 100%;
    }
    
    .expo-header h1 {
        font-size: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .expo-feature {
        flex-direction: column;
    }

	.content-paragraph {
        padding: 30px 25px;
	}
 .content-paragraph h3 {
        font-size: 1.6rem;
    }

    .expo-info {
        flex-direction: column;
    }
    
    .expo-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .expo-header, .expo-feature, .expo-cta {
        padding: 30px 25px;
    }
    
    .expo-cta h2 {
        font-size: 1.7rem;
    }
}

.sidebar-page-container{
	position:relative;
	padding:95px 0px 60px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:40px;
}

.sidebar-page-container .sidebar-side .sidebar{
	
}

/* Services Detail */

.services-detail{
	position:relative;
}

.services-detail .inner-box{
	position:relative;
	padding-right:40px;
}

.services-detail .inner-box h2{
	position:relative;
	color:#0e1322;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
}

.services-detail .inner-box .bold-text{
	position:relative;
	color:#032C3E;
	font-size:20px;
	line-height:1.5em;
	margin-top:0px;
	font-family: 'Rufina', serif;
}

.services-detail .inner-box .text{
	position:relative;
	margin-top:25px;
}

.services-detail .inner-box .text p{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:20px;
}

.services-detail .inner-box .text .two-column{
	position:relative;
	margin-top:40px;
	margin-bottom:20px;
}

.services-detail .inner-box .text .two-column .image{
	position:relative;
	margin-bottom:30px;
}

.services-detail .inner-box .text .two-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.services-detail .inner-box .text h3{
	position:relative;
	color:#032C3E;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	margin-bottom:15px;
}

.services-detail .inner-box .text h4{
	position:relative;
	color:#032C3E;
	font-size:28px;
	font-weight:700;
	line-height:1.4em;
	margin-bottom:25px;
}

.services-detail .inner-box .text .two-column .content-column{
	position:relative;
}

.services-detail .inner-box .text .two-column .content-column .inner-column{
	position:relative;
	padding-left:30px;
}

.services-detail .inner-box .service-contact-box{
	position:relative;
	color:#ffffff;
	font-size:26px;
	padding:25px 35px;
	line-height:1.5em;
	margin-top:50px;
	font-weight:700;
	background-color:#fa5f14;
	font-family: 'Rufina', serif;
}

.services-detail .inner-box .service-contact-box a{
	text-decoration:underline;
	color:#fa5f14;
}

.sidebar-widget{
    position: relative;
    margin-bottom: 50px;
}

/* Services List */

.services-list{
	position:relative;
}

.services-list li{
	position:relative;
}

.services-list li a{
	position:relative;
	color:#ffffff;
	font-size:20px;
	font-weight:400;
	padding:16px 30px;
	display:block;
	background-color:#032C3E;
	font-family: 'Rufina', serif;
	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;
	border:1px solid rgba(255,255,255,0.05);
}

.services-list li.active a,
.services-list li:hover a{
	color:#032C3E;
	border-color:#fa5f14;
	background-color:#fa5f14;
}

/* Contact Widget */

.sidebar-page-container .contact-widget .widget-content{
	position:relative;
	text-align:center;
	padding:50px 28px 50px;
	background-size:cover;
}

.sidebar-page-container .contact-widget .widget-content:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(0,0,0,0.60);
}

.sidebar-page-container .contact-widget .widget-content h3{
	position:relative;
	color:#ffffff;
	font-size:30px;
	font-weight:700;
	margin-bottom:20px;
}

.sidebar-page-container .contact-widget .widget-content .theme-btn:hover::before{
	display:none;
}

.sidebar-page-container .contact-widget .widget-content .theme-btn:hover{
	background-color: #ffffff;
	
}

.dark-layout .services-detail .inner-box .text h4,
.dark-layout .services-detail .inner-box .text h3,
.dark-layout .services-detail .inner-box h2{
	color:#ffffff;
}

.dark-layout .services-detail .inner-box .bold-text{
	color:#c3c3c3;
}

.dark-layout .list-style-four li,
.dark-layout .services-detail .inner-box .text p{
	color:#a1a1a1;
}

/*** 

====================================================================
	Portfolio Page Section
====================================================================

***/

.list-style-two a {
  font-size: 17px;
  color: #032c3e; /* default link color */
  text-decoration: none; /* optional: remove underline */
  transition: color 0.3s; /* smooth color transition */
}

.list-style-two a:hover,
.list-style-two a:focus {
  color: #fa5f14; /* color on hover/focus */
}

.portfolio-page-section{
	position:relative;
	padding:80px 0px 80px;
	background-color:#282d31;
}

.portfolio-page-section .outer-container{
	padding:0px 70px;
}

.portfolio-page-section .filters{
	position:relative;
	margin-bottom:60px;
}

.portfolio-page-section .filters .filter-tabs{
	position:relative;
}

.portfolio-page-section .filters li{
	position: relative;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
	margin:0px 14px 5px;
	display:inline-block;
	text-transform:capitalize;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.portfolio-page-section .filters .filter.active,
.portfolio-page-section .filters .filter:hover{
    color:#fa5f14;
	text-decoration:underline;
}

.gallery-item.mix{
	display:none;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:100px 0px 60px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:40px;
}

.sidebar-widget{
    position: relative;
    margin-bottom: 40px;
}

/*Search Box Widget*/

.sidebar .search-box .form-group{
	position:relative;
	margin:0px;	
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
	position:relative;
	line-height:30px;
	padding:10px 50px 10px 20px;
	background:#ffffff;
	display:block;
	font-size:15px;
	width:100%;
	height:52px;
	color:#797979;
	font-weight:400;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border:1px solid #d3d3d3;
}

.sidebar .search-box .form-group textarea::-webkit-input-placeholder,
.sidebar .search-box .form-group input::-webkit-input-placeholder{
	color:#797979;
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:52px;
	width:60px;
	display:block;
	font-size:16px;
	color:#585858;
	line-height:100%;
	font-weight:normal;
	background:none;
}

/*Sidebar Title*/

.sidebar-title{
    position: relative;
    margin-bottom:25px;
}

.sidebar-title h2{
    font-size: 24px;
    color: #032C3E;
    font-weight: 700;
    line-height: 1.2em;
	display:inline-block;
	padding-right:45px;
    text-transform: capitalize;
}

.sidebar-title h2:after{
	position:absolute;
	content:'';
	right:0px;
	bottom:2px;
	width:25px;
	height:2px;
	background-color:#e2b15e;
}

/*Blog Category*/

.cat-list{
	position:relative;
}

.cat-list li{
	position:relative;
}

.cat-list li a{
	position:relative;
	color:#797979;
	font-size:16px;
	font-weight:400;
	padding-bottom:12px;
	margin-bottom:12px;
	display:block;
	border-bottom:1px solid #e6e6e6;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.cat-list li:last-child a{
	border-bottom:0px;
	margin-bottom:0px;
	padding-bottom:0px;
}

.cat-list li a:after{
	position:absolute;
	content: "\f105";
	right:0px;
	top:0px;
	color:#c8c8c8;
	font-size:14px;
	font-weight:900;
	font-family: "Font Awesome 5 Free";
}

.cat-list li a:hover{
	color:#e2b15e;
}


.call-to-action-section {
  background-size: cover;
  background-image: url('../images/background/future.jpg');
  background-position: center center;
  padding: 70px 0px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.call-to-action-section h1 {
  font-family: 'Playfire Display' serif;	
  font-size: 40px;
  font-weight: 550;
  margin-bottom: 2px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.call-to-action-section .cta-text {
  font-size: 16px;
  padding: 5px;
  font-weight: 550;
  color: #c8c8c8 ;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


/*Post Widget*/

.sidebar .popular-posts .post{
	position:relative;
	font-size:14px;
	color:#666666;
	padding:0px 0px;
	padding-left:90px;
	min-height:90px;
	margin-bottom:22px;
	border-bottom:1px solid #e1e1e1;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
}

.sidebar .popular-posts .post .post-thumb{
	 position:absolute;
	 left:0px;
	 top:0px;
	 width:70px;
}

.sidebar .popular-posts .post .post-thumb img{
	display:block;
	width:100%;
	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;
}

.sidebar .popular-posts .post .text{
	position:relative;
	top:-4px;
	font-size:15px;
	margin:0px 0px 0px;
	color:#032C3E;
	line-height:1.5em;
	font-weight:600;
	text-transform:capitalize;
	font-family: 'Open Sans', sans-serif;
}

.sidebar .popular-posts .post .text a{
	color:#032C3E;
	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;
}

.sidebar .popular-posts .post a:hover{
	color:#e2b15e;
	text-decoration:underline;
}

.sidebar .popular-posts .post-info{
	font-size:14px;
	color:#9a9a9a;
	font-weight:400;
}

/*Popular Tags*/

.sidebar .popular-tags a{
	position:relative;
	display:inline-block;
	line-height:24px;
	padding:8px 18px 8px;
	margin:0px 6px 10px 0px;
	color:#a6a6a6;
	text-align:center;
	font-size:15px;
	background:none;
	font-weight:600;
	border:1px solid #e4e4e4;
	text-transform:capitalize;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.sidebar .popular-tags a:hover{
	border-color:#282d31;
	background-color:#282d31;
	color:#ffffff;	
}

.blog-classic.padding-right,
.blog-single.padding-right{
	padding-right:25px;
}

/*News Block*/

.news-block-two{
	position:relative;
	margin-bottom:80px;
}

.news-block-two .inner-box{
	position:relative;
}

.news-block-two .inner-box .image{
	position:relative;
	display:block;
	overflow:hidden;
	background-color:#0b0b0b;
}

.news-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	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;
}

.news-block-two .inner-box:hover .image img{
	opacity:0.5;
	-webkit-transform:scale(1.07);
	-ms-transform:scale(1.07);
	transform:scale(1.07);
}

.news-block-two .inner-box .lower-content{
	position:relative;
}

.news-block-two .inner-box .lower-content .upper-box{
	position:relative;
	padding-bottom:13px;
	border-bottom:1px solid #e4e4e4;
}

.news-block-two .inner-box .lower-content .upper-box .posted-date{
	position:relative;
	color:#fa5f14;
	font-size:22px;
	font-weight:700;
	margin-top:18px;
	line-height:1.2em;
	display:inline-block;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta{
	position:relative;
	padding-top:20px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li{
	position:relative;
	color:#797979;
	font-size:17px;
	padding-right:12px;
	margin-right:12px;
	font-weight:400;
	margin-bottom:6px;
	display:inline-block;
	font-family: 'Rufina', serif;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:after{
	position:absolute;
	content:'/';
	right:-5px;
	top:0px;
	color:#b8b8b8;
	font-size:17px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:last-child{
	margin-right:0px;
	padding-right:0px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:last-child::after{
	display:none;
}

.news-block-two .inner-box .lower-content .lower-box{
	position:relative;
	padding-top:30px;
}

.news-block-two .inner-box .lower-content .lower-box h3{
	position:relative;
	font-size:28px;
	font-weight:700;
	line-height:1.4em;
	margin-bottom:15px;
	color:#032C3E;
}

.news-block-two .inner-box .lower-content .lower-box h3 a{
	position:relative;
	color:#032C3E;
	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;
}

.news-block-two .inner-box .lower-content .lower-box h3 a:hover{
	color:#fa5f14;
}

.news-block-two .inner-box .lower-content .lower-box .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:20px;
}

.news-block-two .inner-box .lower-content .lower-box .read-more{
	position: relative;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
	padding:10px 25px;
	display:inline-block;
	background-color:#fa5f14;
	text-transform:uppercase;
	letter-spacing:3px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
	font-family: 'Open Sans', sans-serif;
}

.news-block-two .inner-box .lower-content .lower-box .read-more:hover{
	background-color: #101010;
}

.news-block-two:last-child{
	margin-bottom:50px;
}

.news-block-two.style-two .inner-box .lower-content .upper-box .post-meta{
	padding-top:12px;
}

.news-block-three{
	position: relative;
	margin-bottom: 40px;
}

.news-block-three .inner-box{
	position: relative;
	background-color: #f5f5f5;
}

.news-block-three .image-box{
	position: relative;
}

.news-block-three .image-box .image{
	position: relative;
	margin-bottom: 0;
	background-color: #010101;
	overflow: hidden;
}

.news-block-three .image-box .image img{
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
}

.news-block-three .inner-box:hover .image a img{
	opacity: .80;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.news-block-three .lower-content{
	position: relative;
	padding: 30px 25px 40px;
}

.news-block-three .image-box .date{
 	position: absolute;
 	left: 25px;
 	bottom: 25px;
	display: inline-block;
	font-size: 13px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	padding: 8px 25px;
	color: #fa5f14;
	text-transform: uppercase;
	background-color: #010101;
}

.news-block-three .lower-content h3{
	position: relative;
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	line-height: 1.3em;
	color: #032C3E;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.02em;
	margin-bottom: 15px;
}

.news-block-three .lower-content h3 a{
	color: #24262d;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}

.news-block-three .lower-content h3 a:hover{
	color: #fa5f14;
}

.news-block-three .lower-content .text{
	position: relative;
	font-size: 16px;
	line-height: 1.6em;
	color: #4a4a4a;
	font-weight: 400;
	margin-bottom: 30px;
}

.news-block-three .post-meta{
	position: relative;
	margin-bottom: 15px;
}

.news-block-three .post-meta .post-info{
	position: relative;
}

.news-block-three .post-info li{
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding-right: 15px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.news-block-three .post-info li a{
	color: #fa5f14;
	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;	
}

.news-block-three .post-info li:before{
	position: absolute;
	right: -4px;
	top: -2px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	content: "-";
	color: #5a5a5a;
}

.news-block-three .post-info li:last-child:before{
	display: none;
}

.news-block-three .post-info li a:hover{
	color: #24262d;
	text-decoration:underline;	
}

.news-block-three .link-box{
	position: relative;
}

.news-block-three .link-box .read-more{
	position: relative;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
	padding:10px 30px;
	line-height: 24px;
	display:inline-block;
	background-color:#101010;
	text-transform:uppercase;
	letter-spacing:2px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
	font-family: 'Poppins', sans-serif;
}

.news-block-three .link-box .read-more:hover{
	background-color: #fa5f14;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination{
	position:relative;
}

.styled-pagination li{
	position:relative;
	display:inline-block;
	margin:0px 6px 0px 0px;
}

.styled-pagination li a{
	position:relative;
	display:inline-block;
	line-height:40px;
	height:44px;
	font-size:18px;
	min-width:44px;
	color:#032C3E;
	font-weight:700;
	text-align:center;
	background:#ffffff;
	border:2px solid #d4d4d4;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	font-family: 'Open Sans', sans-serif;
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
	color:#ffffff;
	border-color:#282d31;
	background-color:#282d31;
}

/*** 

====================================================================
			Styled Pagination
====================================================================

***/

.shop-pagination{
	position:relative;
	display: block;
	width: 100%;
	padding-top: 20px;
	text-align: center;
}

.shop-pagination ul{
	position:relative;
	width: 100%;
}

.shop-pagination li{
	position:relative;
	display: inline-block;
	margin: 0 8px 8px;
	vertical-align: top;
}

.shop-pagination li a{
	position:relative;
	display: block;
	height:40px;
	width: 40px;
	text-align: center;
	line-height:38px;
	font-weight:400;
	font-size:14px;
	background:#ffffff;
	color:#222222;
	border:1px solid #bbbbbb;
	border-radius: 3px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.shop-pagination li.next a,
.shop-pagination li.prev a{
	background-color: #222222;
	color: #ffffff;
	font-size:18px;
}

.shop-pagination li a:hover,
.shop-pagination li.active a{
	color:#ffffff;	
	background:#fa5f14;
	border-color:#fa5f14;
}

.shop-pagination.style-two li a{
	border-radius: 50%;
}

/*** 

====================================================================
	Our Blogs Section
====================================================================

***/

.our-blogs-section{
	position:relative;
	padding:100px 0px 100px;
}



/* News Detail */

.blog-single{
	position:relative;
}

.blog-single .inner-box{
	position:relative;
}

.blog-single .inner-box .image-box{
	position: relative;
}

.blog-single .inner-box .image-box .image{
	position: relative;
	margin-bottom: 0;
	background-color: #010101;
	overflow: hidden;
}

.blog-single .inner-box .image-box .image img{
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
}

.blog-single .inner-box .lower-content{
	position: relative;
	padding: 30px 0px 0px;
}

.blog-single .inner-box .image-box .date{
 	position: absolute;
 	left: 25px;
 	bottom: 25px;
	display: inline-block;
	font-size: 13px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	padding: 8px 25px;
	color: #fa5f14;
	text-transform: uppercase;
	background-color: #010101;
}

.blog-single .post-meta{
	position: relative;
}

.blog-single .post-meta .post-info{
	position: relative;
}

.blog-single .post-meta .post-info li{
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding-right: 15px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.blog-single .post-meta .post-info li a{
	color: #fa5f14;
	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;	
}

.blog-single .post-meta .post-info li:before{
	position: absolute;
	right: -4px;
	top: -2px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	content: "-";
	color: #5a5a5a;
}

.blog-single .post-meta .post-info li:last-child:before{
	display: none;
}

.blog-single .post-meta .post-info li a:hover{
	color: #24262d;
	text-decoration:underline;	
}

.blog-single .inner-box .lower-content .lower-box{
	position:relative;
	padding-top:20px;
}

.blog-single .inner-box .lower-content .lower-box h3{
	position:relative;
	font-size:28px;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:18px;
	color:#032C3E;
}

.blog-single .inner-box .lower-content .lower-box .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.9em;
	margin-bottom:35px;
}

.blog-single .inner-box .lower-content .lower-box .text p{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:35px;
}

.blog-single .inner-box .lower-content .lower-box .text p a{
	color:#e2b15e;
	text-decoration:underline;
}

.blog-single .inner-box .lower-content .lower-box h4{
	position:relative;
	color:#032C3E;
	font-size:24px;
	font-weight:700;
	margin-bottom:20px;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area{
	position:relative;
	margin-bottom:55px;
}

.sidebar-page-container .group-title{
	position:relative;
	margin-bottom:28px;
}

.sidebar-page-container .group-title h2{
	position:relative;
	font-size:24px;
	color:#032C3E;
	font-weight:700;
	line-height:1.2em;
	padding-bottom:0px;
	display:inline-block;
}

.sidebar-page-container .comments-area .inner-box{
	position:relative;
	border:1px solid #eeeeee;
}

.sidebar-page-container .comments-area .comment-box{
	position:relative;
	padding:25px 25px 25px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border-bottom:1px solid #ebe8e8;
}

.sidebar-page-container .comments-area .comment-box:nth-child(2n + 0){
	background-color:#fcfcfc;
}

.sidebar-page-container .comments-area .comment-box:last-child{
	border-bottom:0px;
}

.sidebar-page-container .comments-area .comment{
	position:relative;
	font-size:14px;
	min-height:98px;
	padding:0px 0px 0px 100px;
}

.sidebar-page-container .comments-area .comment.reply-comment{
	margin-left:100px;
	margin-top:45px;
}

.sidebar-page-container .comments-area .comment .comment-inner{
	position:relative;
}

.sidebar-page-container .comments-area .comment .comment-reply{
	position:absolute;
	right:0px;
	top:0px;
	color:#9cc900;
	font-size:15px;
	font-weight:400;
	text-align:center;
	display:inline-block;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.sidebar-page-container .comments-area .comment .comment-reply span{
	font-size:14px;
	margin-right:4px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:73px;
	overflow:hidden;
	margin-bottom:20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img{
	width:75px;
	display:block;
}

.sidebar-page-container .comments-area .comment-info{
	color:#3e5773;
	line-height:24px;
	font-size:13px;	
}

.sidebar-page-container .comments-area .comment-box strong{
	font-size:18px;
	font-weight:700;
	color:#032C3E;
	line-height:16px;
	text-transform:capitalize;
	font-family: 'Rufina', serif;
}

.sidebar-page-container .comments-area .comment-box .text{
	color:#898989;
	font-size:16px;
    margin-top:5px;
    line-height: 1.7em;
	margin-bottom:8px;
}

.sidebar-page-container .comments-area .comment-time{
	position:relative;
	font-size:15px;
	color:#aeaeae;
}

.sidebar-page-container .comments-area .comment-box .theme-btn{
	padding:6px 27px;
}

.sidebar-page-container .comments-area .comment-box .post-info{
	position:relative;
}

.sidebar-page-container .comments-area .comment-box .post-info li{
	position:relative;
	padding-right:10px;
	line-height:1em;
	margin-right:10px;
	color:#aeaeae;
	font-size:15px;
	border-right:1px solid #bebebe;
	display:inline-block;
}

.sidebar-page-container .comments-area .comment-box .post-info li a{
	color:#fa5f14;
}

.sidebar-page-container .comments-area .comment-box .post-info li:last-child{
	border:0px;
}

/*** 

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form{
	position:relative;
}

.comment-form .form-inner{
	position:relative;
	padding:50px 35px 30px;
	background-color:#f7f7f7;
	border:1px solid #eeeeee;
}

.comment-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:33px;
	padding:10px 20px;
	height:45px;
	color:#737373;
	font-size:15px;
	background-color:#ffffff;
	border:1px solid #eeeeee;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus{
	border-color:#fa5f14;
}

.comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:15px 20px;
	color:#737373;
	height:170px;
	font-size:15px;
	resize:none;
	background-color:#ffffff;
	border:1px solid #eeeeee;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form .submit-btn{
	position: relative;
    color: #032C3E;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    padding: 14px 35px;
    display: inline-block;
    background-color: #fa5f14;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: 'Open Sans', sans-serif;
}

/***

==================================================================
		Contact Map Section
==================================================================

***/

.map-section{
	position: relative;
}

.map-section .map-outer{
	position: relative;
} 

.map-section .map-canvas{
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 490px;
}

.map-data{
	text-align:center;
	color:#0e2a4e;
	font-size:14px;
	font-weight:400;
	line-height:1.8em;
	padding:5px 10px;
}

.map-data h6{
	font-size:16px;
	font-weight:700;
	text-align:center;
	margin-bottom:10px;
	color:#121212;
}

/*** 

====================================================================
	Shop Banner Section
====================================================================

 ***/

.shop-banner-section{
	position:relative;
	padding:320px 0px 180px;
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
}

.shop-banner-section .content-box{
	position:relative;
	max-width:550px;
}

.shop-banner-section .content-box .box-inner{
	position:relative;
	display:block;
}

.shop-banner-section .content-box h2{
	position:relative;
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:15px;
}

.shop-banner-section .content-box .text{
	position:relative;
	font-size:18px;
	font-weight:400;
	line-height:1.8em;
	margin-bottom:35px;
	color:rgba(255,255,255,0.90);
}

/*** 

====================================================================
	Shop Features Section
====================================================================

***/

.shop-features-section{
	position:relative;
	padding:40px 0px 20px;
	background-color:#fa5f14;
}

.shop-feature-block{
	position:relative;
	margin-bottom:20px;
}

.shop-feature-block .inner-box{
	position:relative;
	padding-left:90px;
}

.shop-feature-block .inner-box .icon-box{
	position:absolute;
	left:0px;
	top:0px;
	color:#032C3E;
	font-size:56px;
	line-height:1em;
	margin-bottom:15px;
}

.shop-feature-block .inner-box h3{
	position:relative;
	font-size:25px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:8px;
}

.shop-feature-block .inner-box h3 a{
	color:#032C3E;
}

.shop-feature-block .inner-box .text{
	position:relative;
	color:#032C3E;
	font-size:16px;
	line-height:1.6em;
}

/*** 

====================================================================
	Shop Features Section
====================================================================

***/

.shop-section{
	position:relative;
	padding:90px 0px;
}

.shop-section .title-box{
	position:relative;
	margin-bottom:35px;
}

.shop-section .title-box h2{
	position:relative;
	color:#032C3E;
	font-size:35px;
	font-weight:700;
	display:inline-block;
	padding-right:20px;
}

.shop-section .title-box h2:before{
	position:absolute;
	content:'';
	left:100%;
	bottom:5px;
	height:2px;
	width:40px;
	background-color:#fa5f14;
}

/*Shop Item*/

.shop-item{
	position:relative;
	margin-bottom:50px;
}

.shop-item .inner-box{
	position:relative;
}

.shop-item .inner-box .image{
	position:relative;
	border-radius:5px;
	background:#fa5f14;
}

.shop-item .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.shop-item .inner-box:hover .image img{
	opacity:0.5;
}

.shop-item .inner-box .image img{
	position:relative;
	width:100%;
	border-radius:7px;
	display:block;
}

.shop-item .overlay-box{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height:100%;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	border-radius:5px;
	overflow: hidden;
	background-color:rgba(0,0,0,0.50);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.shop-item .inner-box:hover .overlay-box{
	opacity: 1;
	visibility: visible;
}

.shop-item .option-box{
	position: absolute;
	left:0;
	top:50%;
	width:100%;
	margin-top:-25px;
	padding:0px 10px;
	text-align:center;
	opacity:0;
	visibility:hidden;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
}

.shop-item .inner-box:hover .option-box{
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 300ms ease 100ms;
	-moz-transition: all 300ms ease 100ms;
	-ms-transition: all 300ms ease 100ms;
	-o-transition: all 300ms ease 100ms;
	transition: all 300ms ease 100ms;
}

.shop-item .option-box li{
	position: relative;
	display: inline-block;
	margin: 0 2px;
}

.shop-item .option-box li a{
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 16px;
	color: #1a224c;
	background-color: #ffffff;
	border-radius:50%;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.shop-item .option-box li a:hover{
	color: #ffffff;
	background: #fa5f14;
}

.shop-item .inner-box .tag-banner{
	position:absolute;
	right:0;
	top:20px;
	font-size:13px;
	line-height:24px;
	padding:0px 15px 0px 10px;
	color:#ffffff;
	background: #fa5f14;
	z-index:12;	
}

.shop-item .inner-box .tag-banner:before{
	content:'';
	position:absolute;
	left:-11px;
	top:0;
	border:8px solid transparent;
	border-top: 9px solid #fa5f14;
    border-right: 8px solid #fa5f14;
}

.shop-item .inner-box .tag-banner:after{
	content:'';
	position:absolute;
	left:-11px;
	bottom:0;
	border:8px solid transparent;	
	border-bottom: 9px solid #fa5f14;
    border-right: 8px solid #fa5f14;
}

.shop-item .inner-box .lower-content{
	position:relative;
	padding-top:25px;
	text-align:center;
}

.shop-item .inner-box .lower-content h3{
	position:relative;
	font-size:18px;
	font-weight:400;
	letter-spacing: 0.02em;
	line-height:1.2em;
	margin-bottom:12px;
}

.shop-item .inner-box .lower-content h3 a{
	color:#032C3E;
	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;
}

.shop-item .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.shop-item .inner-box .lower-content .price{
	position:relative;
	color:#fa5f14;
	font-size:20px;
	font-weight:600;
	font-family: 'Open Sans', sans-serif;
}

.shop-item .inner-box .lower-content .cart-btn{
	position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #032C3E;
    padding: 8px 26px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 1px;
    background-color: #fa5f14;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.shop-item .inner-box .lower-content .cart-btn:hover{
	background-color: #101010;
	color: #ffffff;
}

/*** 

====================================================================
	Products Section
====================================================================

***/

.products-section{
	position:relative;
	padding:80px 0px 50px;
	background-size:cover;
	background-color:#080808;
}

.products-section .product-column{
	position:relative;
}

.shop-item-two{
	position:relative;
	margin-bottom:30px;
}

.shop-item-two .inner-box{
	position:relative;
	background-color:#f1f2f2;
}

.shop-item-two .inner-box .image{
	position:relative;
}

.shop-item-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.shop-item-two .inner-box .lower-content{
	position:relative;
	text-align:center;
	padding-bottom:40px;
}

.shop-item-two .inner-box .lower-content h3{
	position:relative;
	font-size:18px;
	font-weight:400;
	padding: 5px 0px 0px;
	line-height:1.2em;
	margin-bottom:12px;
}

.shop-item-two .inner-box .lower-content h3 a{
	color:#032C3E;
	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;
}

.shop-item-two .inner-box .lower-content h3 a:hover{
	color:#fa5f14;
}

.shop-item-two .inner-box .lower-content .price{
	position:relative;
	color:#fa5f14;
	font-size:20px;
	font-weight:600;
	margin-bottom:24px;
	font-family: 'Open Sans', sans-serif;
}

.shop-item-two .inner-box .lower-content .cart-btn{
	position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #092146;
    padding: 5px 33px 5px;
    font-weight: 600;
    overflow: hidden;
    border: 2px solid #092146;
    background: none;
    border-radius: 50px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.shop-item-two .inner-box .lower-content .cart-btn:hover{
	color:#ffffff;
	border-color:#fa5f14;
	background-color:#fa5f14;
}

.products-section .content-column{
	position:relative;
}

.products-section .content-column .inner-column{
	position:relative;
	padding-top: 50px;
	padding-left:45px;
}

.products-section .content-column .inner-column h2{
	position:relative;
	color:#ffffff;
	font-size:48px;
	font-weight:700;
	line-height:1.1em;
	margin-bottom:25px;
}

.products-section .content-column .inner-column h2 span{
	color:#fa5f14;
	font-size:40px;
	display:block;
}

.products-section .content-column .inner-column .text{
	position:relative;
	color:#ffffff;
	font-size:18px;
	line-height:1.7em;
	margin-bottom:38px;
	font-family: 'Open Sans', sans-serif;
}

.products-section .content-column .inner-column .theme-btn{
	font-size:13px;
}

/*** 

====================================================================
	Shop Single Section
====================================================================

***/

.shop-single-section{
	position:relative;
	padding:100px 0px 0px;
}

.shop-single{
	position:relative;
	margin-bottom:90px;
}

.product-details .basic-details{
	position:relative;
	margin-bottom:40px;
}

.product-details .image-column,
.product-details .info-column{
	margin-bottom:40px;
}

.product-details .image-column .image-box{
	padding-right:40px;
}

.product-details .info-column .inner-column{
	position:relative;
	padding-left:15px;
}

.product-details .image-column .image-box img{
	position:relative;
	display:block;
	width:100%;
	background-color:#f4f4f4;
}

.product-details .basic-details h4{
	font-size:34px;
	font-weight:700;
	margin:-5px 0px 0px;
	line-height:1.2em;
	color:#032C3E;
	padding-bottom:20px;
}

.product-details .basic-details .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	padding:25px 0px;
	margin-bottom:22px;
	border-top:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
}

.product-details .basic-details .price{
	position:relative;
	color:#032C3E;
	font-size:18px;
	font-weight:500;
	margin-bottom:30px;
	font-family: 'Poppins', sans-serif;
}

.product-details .basic-details .price span{
	font-weight:700;
	font-size:22px;
	color:#032C3E;
	margin-left:10px;
	font-family: 'Lato', sans-serif;
}

.product-details .basic-details .quantity-spinner,
.cart-section input.quantity-spinner{
	line-height:24px;
	padding:10px 15px !important;
	height:46px !important;
	box-shadow:none !important;	
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical > .btn,
.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn{
	padding:11px 10px;
	background:#f4f5f6;	
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-section .bootstrap-touchspin .input-group-btn-vertical i{
	top:-2px;	
}

.product-details .basic-details .item-quantity{
	position:relative;
	margin-bottom:40px;
}

.product-details .info-column .inner-column .btn-style-eight{
	padding:11px 36px;
}

.product-details .basic-details .item-quantity .field-label{
	float:left;
	color:#032C3E;
	font-weight:600;
	font-size:18px;
	line-height:40px;
	margin-right:20px;
	display:inline-block;
	font-family: 'Poppins', sans-serif;
}

.product-details .basic-details .item-quantity .bootstrap-touchspin{
	width:80px;
}

.product-details .basic-details .cart-btn{
	position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #032C3E;
    padding: 9px 32px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 1px;
    background-color: #fa5f14;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.product-details .basic-details .cart-btn:hover{
	background: #032C3E;
	color: #ffffff;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
    content: "\f106";
	font-size: 18px;
	font-style:normal;
	font-weight:800;
	font-family: 'Font Awesome 5 Free';
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
    content: "\f107";
	font-size: 18px;
	font-style:normal;
	font-weight:800;
	font-family: 'Font Awesome 5 Free';
}

/*** 

====================================================================
	Product Tabs Style
====================================================================

***/

.shop-single .product-details .prod-tabs{
	position:relative;
	margin-bottom:60px;
}

.shop-single .product-details .prod-tabs .tab-btns{
	position:relative;
	z-index:1;	
	border-bottom:1px solid #e2e2e2;
}

.shop-single .product-details .prod-tabs .tab-btns .tab-btn{
	position:relative;
	top:1px;
	display:block;
	float:left;
	margin-right:10px;
	font-size:16px;
	background:#fa5f14;
	color:#ffffff;
	text-transform:capitalize;
	font-weight:600;
	line-height:24px;
	cursor:pointer;
	border:1px solid transparent;
	padding:11px 30px 9px;
	transition:all 500ms ease;
}

.shop-single .product-details .prod-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:0px;
	top:-2px;
	width:100%;
	height:3px;
	opacity:0;
	background-color:#fa5f14;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.shop-single .product-details .prod-tabs .tab-btns .tab-btn.active-btn::before,
.shop-single .product-details .prod-tabs .tab-btns .tab-btn:hover::before{
	opacity:1;
}

.shop-single .product-details .prod-tabs .tab-btns .tab-btn:hover:after,
.shop-single .product-details .prod-tabs .tab-btns .tab-btn.active-btn:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:-1px;
	width:100%;
	height:1px;
	background-color:#ffffff;
}

.shop-single .product-details .prod-tabs .tab-btns .tab-btn:hover,
.shop-single .product-details .prod-tabs .tab-btns .tab-btn.active-btn{
	color:#032C3E;
	border-color:#e2e2e2;
	background:#ffffff;
}

.shop-single .product-details .prod-tabs .tabs-content{
	position:relative;
	padding:50px 35px 30px;
	border:1px solid #e2e2e2;
	border-top:0px;
}

.shop-single .product-details .prod-tabs .tabs-content .tab{
	position:relative;
	display:none;
	border-top:0px;
}

.shop-single .product-details .prod-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.shop-single .product-details .prod-tabs .tabs-content .tab .content{
	position:relative;
}

.shop-single .product-details .prod-tabs .tabs-content .tab .content p{
	position:relative;
	font-size:16px;
	color:#797979;
	line-height:1.7em;
	margin-bottom:25px;
}

.prod-tabs .tabs-content .tab .title{
	position:relative;
	color:#232527;
	font-size:20px;
	font-weight:600;
	margin-top:10px;
	margin-bottom:25px;
	font-family: 'Montserrat', sans-serif;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.shop-single .comments-area{
	position:relative;
	margin-top:0px;
	margin-bottom:50px;
}

.shop-single .group-title{
	position:relative;
	margin-bottom:40px;
}

.shop-single .group-title h2{
	position:relative;
	font-size:24px;
	color:#232628;
	font-weight:600;
	padding-bottom:15px;
	text-transform:uppercase;
	border-bottom:1px solid #f2f2f2;
}

.shop-single .group-title h2:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:-1px;
	width:55px;
	height:2px;
	background-color:#fbd848;
}

.shop-single .comments-area .comment-box{
	position:relative;
	margin-bottom:30px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.shop-single .comments-area .comment-box:nth-child(1){
	padding-top:0px;	
}

.shop-single .comments-area .comment-box:hover{
	border-color:#eb5310;	
}

.shop-single .comments-area .comment{
	position:relative;
	font-size:14px;
	padding:0px 0px 0px 90px;
}

.shop-single .comments-area .comment .comment-inner{
	position:relative;
	padding:15px 20px;
	border:1px solid #f4f4f4;
}

.shop-single .comments-area .comment .comment-inner .rating{
	position:absolute;
	right:15px;
	top:15px;
}

.shop-single .comments-area .comment .comment-inner .rating .fa{
	display:inline-block;
	color:#fa5f14;
}

.shop-single .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	margin-bottom:20px;
}

.shop-single .comments-area .comment-box .author-thumb img{
	width:60px;
	display:block;
}

.shop-single .comments-area .comment-info{
	position:relative;
	color:#232527;
	line-height:24px;
	font-size:16px;	
	font-weight:600;
	font-family: 'Montserrat', sans-serif;
}

.shop-single .comments-area .comment-box .text{
	color:#848484;
	font-size:14px;
    margin-top:8px;
	font-weight:300;
    line-height: 1.8em;
	margin-bottom:0px;
}

/*Comment Form*/

.shop-comment-form{
	position:relative;
}

.shop-comment-form h2{
	position:relative;
	color:#232628;
	font-size:24px;
	font-weight:700;
	margin-bottom:30px;
	padding-bottom:15px;
	text-transform:uppercase;
	border-bottom:1px solid #f2f2f2;
}

.shop-comment-form h2:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-1px;
	width:55px;
	height:2px;
	background-color:#fa5f14;
}

.shop-comment-form .group-title{
	margin-bottom:20px;
}

.shop-comment-form .rating-box{
	position:relative;
	margin-bottom:30px;
}

.shop-comment-form .rating-box .text{
	position:relative;
	font-size:16px;
	color:#848484;
	margin-bottom:10px;
}

.shop-comment-form .rating-box .rating{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:10px;
	border-right:1px solid #ebebeb;
}

.shop-comment-form .rating-box .rating:last-child{
	border-right:0px;
}

.shop-comment-form .rating-box .rating .fa{
	position:relative;
	margin-right:6px;
	display:inline-block;
}

.shop-comment-form .rating-box .rating a{
	position:relative;
	color:#d6d6d6;
	font-size:14px;
	display:inline-block;
}

.shop-comment-form .rating-box .rating a:hover{
	color:#fa5f14;
}

.shop-comment-form .form-group{
	position:relative;
	margin-bottom:15px;
}

.shop-comment-form .form-group label{
	position:relative;
	color:#848484;
	font-size:14px;
	font-weight:400;
}

.shop-comment-form .form-group:last-child{
	margin-bottom:0px;
}

.shop-comment-form .form-group input[type="text"],
.shop-comment-form .form-group input[type="password"],
.shop-comment-form .form-group input[type="tel"],
.shop-comment-form .form-group input[type="email"],
.shop-comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 15px;
	border:1px solid #efefef;
	height:50px;
	color:#848484;
	font-weight:300;
	background:#ffffff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.shop-comment-form .form-group input[type="text"]:focus,
.shop-comment-form .form-group input[type="password"]:focus,
.shop-comment-form .form-group input[type="tel"]:focus,
.shop-comment-form .form-group input[type="email"]:focus,
.shop-comment-form .form-group select:focus,
.shop-comment-form .form-group textarea:focus{
	border-color:#fa5f14;
}

.shop-comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 15px;
	color:#848484;
	border:1px solid #efefef;
	height:115px;
	font-weight:300;
	background:#ffffff;
	resize:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.shop-comment-form button{
	position:relative;
	margin-top:10px;
}

.related-products{
	position:relative;
	margin-bottom:20px;
}

.related-products .title-box{
	position:relative;
	margin-bottom:35px;
}

.related-products .title-box h2{
	position:relative;
	color:#032C3E;
	font-size:35px;
	font-weight:700;
	display:inline-block;
	padding-right:20px;
}

.related-products .title-box h2:before{
	position:absolute;
	content:'';
	left:100%;
	bottom:5px;
	height:2px;
	width:40px;
	background-color:#fa5f14;
}






/*** 

====================================================================
	Cart Section style
====================================================================

***/

.cart-section{
	position:relative;
	padding:100px 0px 80px;
}

.cart-outer{
	position:relative;	
}

.checkout-page .cart-outer{
	margin-bottom:40px;	
}

.cart-outer .table-outer{
	position:relative;
	width:100%;
	overflow-x:	auto;
}

.cart-outer .cart-table{
	width:100%;
	min-width:900px;	
}

.cart-table .cart-header{
	position:relative;
	width:100%;
	text-transform:uppercase;
	font-size:13px;
	background:#f9f9f9;
	color:#1c1c1c;
	border:1px solid #ebebeb;
}

.cart-table thead tr th{
	line-height:24px;
	padding:13px 30px;
	font-weight:600;
	font-size:20px;
	color:#032C3E;
	text-transform:capitalize;
	border-right:1px solid #ebebeb;
	font-family: 'Rufina', serif;
}

.cart-table thead tr th .fa{
	font-size:18px;	
}

.cart-table thead tr th.prod-column{
	text-align:left;
}

.cart-table tbody tr td{
	line-height:24px;
	padding:25px 30px 25px;
}

.cart-table tbody tr .qty{
	width:200px;
	padding-right:80px;
}

.cart-table tbody tr .qty .quantity-spinner{
	background:#ffffff;	
}

.cart-table tbody tr .prod-column .column-box{
	position:relative;
	min-height:110px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb{
	position:relative;
	width:120px;	
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img{
	 display:block;
	 max-width:100%;
}

.cart-table tbody tr .prod-column .column-box h4{
	font-size:14px;
	color:#444444;
	font-weight:400;
	line-height:90px;
}

.cart-table tbody tr .prod-column .author{
	font-size:13px;
	color:#333333;
	margin-bottom:0px;
}

.cart-table tbody tr .sub-total{
	font-weight:400;
	color:#797979;
	font-size:17px;
	font-family: 'Open Sans', sans-serif;
}

.cart-table tbody tr .remove-btn{
	position:relative;
	font-size:14px;
	color:#1c1c1c;
	line-height:30px;
	font-weight:500;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.cart-table tbody tr .remove-btn .fa{
	position:relative;
	font-size:24px;
	line-height:30px;
}

.cart-table tbody tr .remove-btn:hover{
	color:#fa5f14;
}

.cart-table tbody tr{
	border-bottom:1px solid #e9e9e9;	
}

.cart-table tbody tr td{
	vertical-align:middle;
	color:#797979;
	font-size:17px;
	border-left:1px solid #ebebeb;
}

.cart-table tbody tr .total-price{
	font-weight:600;
	font-family: 'Open Sans', sans-serif;
}

.cart-table tbody tr td:last-child{
	border-right:1px solid #ebebeb;
	text-align:center;
}

.cart-table tbody tr td .prod-title{
	position:relative;
	font-size:17px;
	color:#797979;
	font-family: 'Lato', sans-serif;
}

.cart-table tbody tr td .quantity-spinner{
	padding:5px 0px 5px 20px;
	line-height:24px;
	height:34px;
	display:block;
	width:100%;
	position:relative;
}

.cart-table tbody .available-info{
	position:relative;
	padding-left:50px;	
}

.cart-table tbody .available-info .icon{
	position:absolute;
	left:0px;
	top:5px;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:18px;
	color:#ffffff;
	background:#223555;
	border-radius:50%;
}

.cart-section .cart-options{
	position:relative;
	padding:28px 35px 15px;
	margin-bottom:50px;
	background-color:#f9f9f9;
	border:1px solid #ebebeb;
	border-top:0px;
}

.cart-section .apply-coupon{
	position:relative;
}

.cart-section .apply-coupon .form-group{
	position:relative;
	float:left;
	margin-right:10px;	
}

.cart-section .apply-coupon .form-group input[type="text"]{
	display:block;
	line-height:15px;
	padding:8px 10px;
	border:1px solid #eeeeee;
	width:165px;
	height:33px;
	font-size:14px;
	background:#ffffff;
}

.cart-section .coupon-btn{
	color:#032C3E;
    padding:4px 26px;
    line-height: 24px;
    border-radius: 3px;
	font-size:15px;
	font-weight:400;
	border-color:#fa5f14;
	background-color:#fa5f14;
	font-family: 'Open Sans', sans-serif;
}

.cart-section .btn-style-two:hover{
	color:#ffffff;
}

.cart-section .cart-options .cart-btn{
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #032C3E;
    padding: 7px 28px;
    font-weight: 600;
    overflow: hidden;
	margin-top:-5px;
    letter-spacing: 1px;
    background-color: #fa5f14;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.cart-section .totals-table{
	position:relative;
	margin-bottom:20px;
	border:1px solid #ebebeb;
}

.cart-section .totals-table li{
	line-height:24px;
	padding:14px 22px;
	border-bottom:1px solid #ebebeb;	
}

.cart-section .totals-table li:first-child{
	background-color:#f9f9f9;
}

.cart-section .totals-table li h3{
	position:relative;
	font-weight:600;
	color:#032C3E;
	font-size:18px;
	font-family: 'Poppins', sans-serif;
}

.cart-section .totals-table li:last-child{
	border-bottom:none;
	margin-bottom:0px;
	padding:25px 30px;
}

.cart-section .totals-table .col{
	position:relative;
	display:block;
	float:left;
	line-height:24px;
	width:50%;
	color:#032C3E;
	font-size:17px;
	text-transform:capitalize;
}

.cart-section .totals-table li .col:last-child{
	text-align:right;
	color:#797979;
}

.cart-section .totals-table .total .price{
	color:#363636 !important;
	font-weight:700;
}

.cart-section .totals-table .proceed-btn{
	position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #032C3E;
    padding: 7px 28px;
    font-weight: 600;
    overflow: hidden;
    margin-top: -5px;
    letter-spacing: 1px;
    background-color: #fa5f14;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.cart-table tbody tr .qty .input-group-btn-vertical{
	position:absolute;
	right:0px;
	top:0px;
}

/*Check Out Page*/

.checkout-page{
	position:relative;
	padding:100px 0px 80px;
}

.checkout-page .title-box{
	position:relative;
	margin-bottom:35px;
}

.checkout-page .title-box h2{
	position:relative;
	color:#032C3E;
	font-size:35px;
	font-weight:700;
	display:inline-block;
	padding-right:20px;
}

.checkout-page .title-box h2:before{
	position:absolute;
	content:'';
	left:100%;
	bottom:5px;
	height:2px;
	width:40px;
	background-color:#fa5f14;
}

.checkout-page .default-links{
	position:relative;
	margin-bottom:40px;	
}

.checkout-page .default-links li{
	margin-bottom:15px;
	line-height:24px;
	padding:18px 28px;
	background:#f9f9f9;
	color:#797979;
	font-size:20px;
	font-weight:600;
	border:1px solid #ebebeb;
	font-family: 'Rufina', serif;
}

.checkout-page .default-links li a{
	color:#032C3E;
	text-decoration:underline;
}

.shop-form .billing-inner{
	position:relative;
	padding-right:100px;
}

.shop-form .sec-title h2{
	font-size:32px;
}

.shop-form .form-group{
	position:relative;
	margin-bottom:20px;	
}

.billing-details .shop-form .form-group{
	margin-bottom:20px;	
}

.billing-details .shop-form .form-group.sec-title{
	margin-bottom:0px;
	padding-bottom:30px;
}

.shop-form .form-group .field-label{
	display:block;
	line-height:24px;
	margin-bottom:8px;
	text-transform:capitalize;
	color:#797979;	
	font-size:15px;
	font-weight:600;
}

.shop-form .form-group .field-label sup{
	position:relative;
	top:0px;
	color:#797979;	
	font-size:16px;
}

.shop-form input[type="text"],
.shop-form input[type="email"],
.shop-form input[type="password"],
.shop-form input[type="tel"],
.shop-form input[type="number"],
.shop-form input[type="url"],
.shop-form select,
.shop-form textarea{
	position:relative;
	display:block;
	width:100%;
	background:#ffffff;
	line-height:16px;
	padding:10px 15px;
	height:38px;
	border:1px solid #e2e2e2;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.shop-form input.address-two{
	margin-top:12px;
}

.shop-form input::-webkit-input-placeholder,
.shop-form select::-webkit-input-placeholder,
.shop-form textarea-webkit-input-placeholder{
	color:#c6c6c6;
}

.shop-form select{
	-webkit-appearance:none;
	-ms-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	background:#ffffff url(../images/icons/icon-select.png) right center no-repeat;
	cursor:pointer;
}

.shop-form select option{
	text-indent:15px;	
}

.shop-form textarea{
	resize:none;
	height:100px !important;
	overflow:hidden;	
}

.shop-form input:focus,
.shop-form select:focus,
.shop-form textarea:focus{
	border-color:#fa5f14;	
}

/*Shop Order Box*/

.shop-order-box{
	position:relative;
	padding:20px 28px 60px;
	border:1px solid #d9d9d9;
	background-color:#fdfdfd;
}

.shop-order-box .order-list{
	position:relative;
}

.shop-order-box .order-list li{
	position:relative;
	color:#797979;
	font-size:15px;
	font-weight:500;
	margin-bottom:12px;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.shop-order-box .order-list li span{
	float:right;
	width:35%;
	text-align:left;
	font-size:17px;
	text-transform:capitalize;
}

.shop-order-box .order-list li span.dark{
	color:#032C3E;
	font-weight:700;
}

.shop-order-box .order-list li.total{
	padding:8px 0px;
	border-top:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
}

.payment-options{
	position:relative;
	margin-top:20px;
	margin-bottom:20px;	
}

.checkout-page .payment-options li{
	position:relative;
	margin-bottom:15px;	
}

.checkout-page .payment-options li .radio-option{
	position:relative;		
}

.checkout-page .payment-options li .radio-option label{
	position:relative;
	display:block;
	padding-left:30px;
	font-weight:600 !important;
	text-transform:capitalize;
	letter-spacing:1px;
	color:#797979;
	cursor:pointer;
	font-size:15px;
}

.checkout-page .payment-options li .radio-option label strong{
	font-weight:500;
	display: inline-block;
	color:#032C3E;
	font-size:15px;
	font-family: 'Poppins', sans-serif;
}

.checkout-page .payment-options li .radio-option input[type="radio"]{
	position:absolute;
	left:0px;
	top:5px;	
}

.checkout-page .payment-options li .radio-option #payment-3{
	top:12px;
}

.checkout-page .payment-options li .what-paypall{
	font-size:13px;
	font-weight:600;
	margin-left:15px;
	color:#4349d9;
	font-family: 'Poppins', sans-serif;
}

.checkout-page .payment-options li .radio-option label .small-text{
	position:relative;
	display:none;
	padding:18px 26px;
	letter-spacing:0px;
	text-transform:none;
	font-weight:normal;
	font-size:16px;
	color:#8e8d8d;
	border-radius:4px;
	line-height:20px;
	line-height:1.7em;
	margin-top:20px;
	margin-left:-30px;
	background-color:#ececec;
}

.checkout-page .payment-options li .radio-option label .small-text:before{
	position:absolute;
	content:'';
	left:24px;
	top:-10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #ececec;
}

.checkout-page .payment-options li .radio-option input[type="radio"]:checked + label .small-text{
	display: block;
}

.checkout-page .payment-options li .radio-option label img{
	position:relative;
	top:-3px;
	display:inline-block;
	max-width:100%;
	padding-left:30px;	
}

.checkout-page .payment-options li .radio-option label img{
	position:relative;
	top:-3px;
	display:inline-block;
	max-width:100%;
	padding-left:30px;	
}

.place-order .order-btn{
	position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 30px;
    color: #032C3E;
    padding: 7px 28px;
    font-weight: 600;
    overflow: hidden;
    margin-top: -5px;
    letter-spacing: 1px;
    background-color: #fa5f14;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}