/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
	--primary_orange: #ff4a17;
	--dark_blue: #015361;
	--white: #fff;
	--black: #000;
	--gray-dark-1: #444444;
}
body {
	font-family: 'Open Sans', sans-serif;
	color: var(--gray-dark-1);
}

a {
	color: #ff4a17;
}

a:hover {
	color: #ff724a;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Raleway', sans-serif;
	word-break: break-all;
	word-wrap: break-word;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #ff4a17;
	color: var(--white);
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #ff5e31;
	color: var(--white);
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
	background: rgba(21, 34, 43, 0.5);
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgba(21, 34, 43, 0.5);
	padding: 12px 0;
}

#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
}

#header .logo a {
	color: var(--white);
}

#header .logo img {
	max-height: 50px;
}

@media (max-width: 992px) {
	#header {
		padding: 12px 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > ul {
	display: flex;
}

.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	padding: 10px 12px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: rgba(255, 255, 255, 0.9);
	transition: 0.3s;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 3px;
}

.nav-menu > ul > li > a:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	background-color: #ff4a17;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
	visibility: visible;
	width: 100%;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
	color: var(--white);
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 12px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: var(--white);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #15222b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
	color: #ff4a17;
}

.nav-menu .drop-down > a:after {
	content: '\f078';
	font-family: 'Font Awesome 5 Free';
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
	content: '\f053';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover > ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down > a:after {
		content: '\f053';
	}
}

/* Get Startet Button */
.get-started-btn {
	margin-left: 25px;
	color: var(--white);
	border-radius: 4px;
	padding: 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
	border: 2px solid var(--white);
}

.get-started-btn:hover {
	background: #fd3800;
	color: var(--white);
	border-color: #ff4a17;
}

@media (max-width: 992px) {
	.get-started-btn {
		margin: 0 48px 0 0;
		padding: 6px 18px;
	}
}

/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: var(--white);
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: var(--white);
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #15222b;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
	color: #ff4a17;
	text-decoration: none;
}

.mobile-nav .drop-down > a:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f078';
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down > a:after {
	content: '\f077';
}

.mobile-nav .drop-down > a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(4, 7, 9, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: var(--white);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f0f4f8;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #5c8eb0;
	font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
	content: '';
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #ff8664;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	margin-top: 50px;
}
.about .container {
	padding-bottom: 15px;
}

.about .content {
	font-size: 15px;
}

.about .content h3 {
	font-weight: 700;
	font-size: 24px;
	color: #263d4d;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-bottom: 5px;
	padding-left: 28px;
	position: relative;
}

.about .content ul i {
	font-size: 15px;
	color: #ff4a17;
	position: absolute;
	left: 0;
	top: 5px;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .owl-stage {
	display: flex;
	align-items: center;
}
.about .owl-stage .item {
	margin: 5%;
}
.about .owl-carousel img {
	width: 100%;
	height: 100%;
}
.about .owl-stage .owl-item img {
	transition: all 0.4s ease-in-out;
}
.about .owl-stage .owl-item img:hover {
	-webkit-filter: none;
	filter: none;
	transform: scale(1.05);
}
.about .owl-dot.active > span {
	background-color: #ff4a17 !important;
}

/*--------------------------------------------------------------
# segments
--------------------------------------------------------------*/
.segments {
	position: relative;
}

.segments .container {
	position: relative;
	z-index: 10;
}

.segments .segment {
	margin-bottom: 80px;
	position: relative;
}

.segments .segment .pic {
	overflow: hidden;
}

.segments .segment .segment-info {
	position: absolute;
	bottom: -50px;
	left: 20px;
	right: 20px;
	background: var(--white);
	padding: 20px 15px;
	color: #15222b;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: 0.5s;
}

.segments .segment h4 {
	font-weight: 700;
	font-size: 20px;
	color: #15222b;
	position: relative;
}

@media (max-width: 992px) {
	.segments .segment {
		margin-bottom: 110px;
	}
}
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.projects {
	background-color: var(--white);
}
.projects .project {
	background-color: var(--white);
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.projects .project:not(:last-child) {
	margin-bottom: 15px;
}
.projects .project h2 {
	font-weight: 700;
	font-size: 17px;
	color: #263d4d;
	text-transform: uppercase;
}
.projects .project h2::after {
	content: '';
	width: 40%;
	height: 2px;
	display: block;
	margin: 10px auto;
	background-color: var(--primary_orange);
}
.projects .project a img {
	width: 100%;
	height: 150px;
}
@media screen and (max-width: 425px) {
	.projects .project a img {
		width: 100%;
		height: 100px;
	}
}
.projects .project a::after {
	content: '+';
	line-height: 0;
	font-size: 50px;
	position: absolute;
	top: 48%;
	left: 48%;
	transform: translate(-50%, -50%);
	opacity: 0;
	margin: 4px;
	transition: opacity 0.3s;
}
.projects .project a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 4px;
	transition: background-color 0.3s;
}
.projects .project a:hover::before {
	background-color: rgba(18, 29, 36, 0.9);
}
.projects .project a:hover::after {
	opacity: 1;
}

.vbox-prev span,
.vbox-next span {
	border-top-color: var(--primary_orange) !important;
	border-right-color: var(--primary_orange) !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #121d24;
	padding: 0 0 30px 0;
	color: var(--white);
	font-size: 14px;
}

#footer .footer-top {
	background: #15222b;
	border-bottom: 1px solid #1d303c;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 28px;
	margin: 0 0 15px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: 'Raleway', sans-serif;
	color: var(--white);
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #ff4a17;
	color: var(--white);
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #ff5e31;
	font-size: 12px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: var(--white);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #ff4a17;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: var(--white);
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type='email'] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type='submit'] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #ff4a17;
	color: var(--white);
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type='submit']:hover {
	background: #ff5e31;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: var(--white);
}

#footer .credits a {
	transition: 0.3s;
}
