/*-- ID --*/
/*primary color: #ff4d29;*/

body {
	font-family: "barlow", sans-serif;
	line-height: 1.7;
	color: #516171;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: #092032;
}

a {
	color: #092032;
	text-decoration: none;
	transition: all 0.4s ease;
	font-weight: 500;
}

a:hover {
	color: #ff4d29;
}

img {
	width: 100%;
}

section {
	padding: 80px 0px 80px 0px;
}



/*-- CLASS --*/
.bg-cover{
	background-position: center !important;
	background-size: cover !important;
}
.intro {
	margin-bottom: 40px;
}
.intro h6{
	font-weight: 400;
	color: #ff4d29;
}
.intro p{
	max-width: 500px;
	margin: auto;
}


/*-- NAVBAR --*/
.top-navbar {
	background-color: #ff4d29;
	padding: 5px 0px 5px 0px;
}
.top-navbar p{
	margin-bottom: 0;
	display: inline-block;
	margin-right: 16px;
	color: #fff;
}
.top-navbar i, 
.top-navbar span {
	vertical-align: middle;
}
.social-links a{
	width: 28px;
	height: 28px;
	background-color: rgba(255 255 255 / 0.3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	border-radius: 100%;
}
.social-links a:hover {
	background-color: #fff;
	color: #ff4d29;
}

/*-- MAIN NAVBAR --*/
.navbar {
	box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #ff4d29;
}
.navbar-brand {
	font-size: 26px;
	font-weight: 700;
	color: #092032;
}
.navbar-brand span {
	color: #ff4d29;
}

/*-- BTN --*/
.btn {
	padding: 9px 24px;
	font-weight: 500;
}
.btn-brand {
	background-color: #ff4d29;
	color: #fff;
	border-color: #ff4d29;
}
.btn-brand:hover {
	background-color: #fff;
	color: #ff4d29;
}

/*-- HERO SLIDER --*/
#hero-slider h1 {
	font-weight: 700;
}
.slider1 {
	background: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.4)), url(assets/img/bg_banner1.jpg);
}
.slider2 {
	background: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.4)), url(assets/img/bg_banner2.jpg);
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 50%;
	width: 60px !important;
	height: 60px !important;
	display: grid;
	place-items: center;
	background-color: rgba(255 255 255 / 0.2) !important;
	margin-top: -30px !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	border-radius: 100px !important;
}
.owl-prev {
	left: 0;
}
.owl-next {
	right: 0;
}
.owl-prev:hover,
.owl-next:hover {
	background-color: #ff4d29 !important;
}



/*-- ABOUT --*/
.marketing-box {
	display: flex;
	align-items: center;
}
.marketing-box img {
	width: 90px;
	margin-right: 25px;
}


/*-- MILESTONE --*/
#milestone {
	background: linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)), url(assets/img/bg_banner1.jpg);
}
#milestone .display-4,
#milestone p {
	color: #fff;
}
#milestone .display-4 {
	font-weight: 700;
}


/*-- SERVICES --*/
.services-box {
	padding: 32px;
	box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
	text-align: center;
}
.services-box img {
	width: 90px;
}
.services-box h5 {
	margin-top: 25px;
	margin-bottom: 13px;
}



/*-- PORTFOLIO --*/
#portfolio-slider .owl-prev,
#portfolio-slider .owl-next {
	background-color: rgba(255 96 66 / 0.51) !important;
}
#portfolio-slider .owl-prev:hover,
#portfolio-slider .owl-next:hover {
	background-color: #ff4d29 !important;
}
.portfolio {
	position: relative;
}
.portfolio .overly {
	background: linear-gradient(0deg, #092032, transparent);
	position: absolute;
	width: 100%;
	height: 240px;
	bottom: 0;
	left: 0;
}
.portfolio .content {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 32px;
}
.portfolio h1,
.portfolio h6 {
	color: #fff;
}
.portfolio h6 {
	font-size: 15px !important;
	font-weight: 300 !important;
	letter-spacing: 1px;
}
.portfolio h6::before {
	content: '';
	width: 30px;
	height: 2px;
	background-color: #ff4d29;
	display: inline-block;
	vertical-align: middle;
	margin-right: 12px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ff4d29;
}



/*-- TEAM --*/
.team-member {
	text-align: center;
}
.team-member .img-wrapper {
	position: relative;
	overflow: hidden;
}
.team-member .overly {
	position: absolute;
	top: -10%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 77, 41, 0.7);
	transition: 0.4s ease;
	opacity: 0;
}
.team-member .social-links {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.4s ease;
	opacity: 0;
}
.team-member:hover .overly {
	opacity: 1;
	top: 0;
}
.team-member:hover .social-links {
	opacity: 1;
	top: 50%;
}
.team-member h5 {
	margin-top: 24px;
}


/*-- REVIEWS --*/
#reviews {
    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(assets/img/bg_banner1.jpg), #082032;
}
.review {
	max-width: 900px;
	margin: auto;
	text-align: center;
}
.review img {
	width: 85px !important;
	border-radius: 100px;
	margin: auto;
}
.review h4 {
	margin-top: 20px;
}
.review h4,
.review p {
	color: #fff;
}
.review small {
	color: #ff4d29;
}
.review p {
	margin-top: 28px;
}



/*-- BLOG --*/
.blog-post {
	position: relative;
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
.blog-post .tag {
	padding: 3px 12px;
	background-color: #ff4d29;
	color: #fff;
	border-radius: 100px;
	position: absolute;
	top: 20px;
	left: 20px;
}
.blog-post a {
	font-weight: 700;
}
.blog-post h4 {
	margin: 12px 0px 12px 0px;
}
.blog-post small {
	color: #ff4d29;
	text-decoration: underline;
	text-transform: uppercase;
}
.blog-content {
	padding: 35px;
}



/*-- FOOTER --*/
#footer {
	padding-top: 80px;
	padding-bottom: 20px;
	background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(assets/img/bg_banner1.jpg), #082032;
	text-align: center;
	color: #fff;
	background-size: cover;
}
.footer {
	margin-bottom: 40px;
}
#footer .navbar-brand {
	color: #fff;
	margin-bottom: 25px;
	display: inline-block;
}
.footer p{
	color: #adb3b9;
}
#footer .social-links a {
    width: 47px;
    height: 47px;
    background-color: rgba(255 255 255 / 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 100%;
    margin: 0px 5px 0px 5px;
}
#footer .social-links a:hover {
	background-color: #fff;
	color: #ff4d29;
}
#footer .social-links i {
	font-size: 20px;
}


/*-- COPYRIGHT --*/
.copyright {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
	color: #adb3b9;
}



/*-- CONTACT US BOX --*/
.form-control:focus {
	box-shadow: none;
	border-color: #ff4d29;
}
.modal h1::after {
	content: '';
	width: 30px;
	height: 2px;
	background-color: #ff4d29;
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;

}