/* =================================
------------------------------------
  Arcade - Architecture
  Version: 1.0
 ------------------------------------ 
 ====================================*/





/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
	font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #222222;
	margin: 0;
	margin-bottom: 10px;
	font-weight: 700;
}

h1 {
	font-size: 60px;
	margin-bottom: 40px;
}

h1 span {
	background: #baff00;
	padding: 0 10px;
	color: #222222;
	display: inline-block;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
	margin-bottom: 30px;
}

h4 {
	font-size: 15px;
}

p {
    font-size: 13px;
    color: #212121;
	line-height: 2;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.sp-title {
	font-size: 35px;
	margin-bottom: 25px;
}

.sp-title span {
	padding: 0 10px;
    color: #004B97;
	display: inline-block;
}

.pt100 {
	padding-top: 100px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt50 {
	padding-top: 50px;
}

.pb50 {
	padding-bottom: 50px;
}

.mb100 {
	margin-bottom: 100px;
}

.spad {
	padding: 100px 0;
}

.section-title {
	margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
	display: inline-block;
	padding: 0 20px;
	margin-bottom: 0;
	font-size: 60px;
}

.set-bg {
	background-size: cover;
	background-repeat: no-repeat;
}

/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 30px;
	height: 30px;
	border: 3px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	border-left-color: transparent;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
	}

@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
.site-btn {
    display: inline-block;
    font-weight: 500;
    border: 1px solid;
    min-width: 210px;
    text-align: center;
    padding: 17px 0;
    position: relative;
    background-color: transparent;
    margin-right: 15px;
    z-index: 1;
    border-radius: 2px;
    font-size: 15px;
}

.site-btn:after,
.site-btn:before {
	position: absolute;
	content: "";
	width: 26px;
	height: 4px;
	right: -15px;
}

.site-btn:after {
	bottom: 8px;
}

.site-btn:before {
	bottom: 18px;
}

.site-btn.sb-light {
	color: #fff;
}


.site-btn.sb-dark {
	color: #222222;
}

/*.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
	background: #222222;
}*/

.site-btn.sb-solid-color {
	background: #baff00;
	border-color: #baff00;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
	background: #222222;
}

.site-btn.sb-solid-dark {
	background: #222;
	border-color: #222;
	color: #baff00;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
	background: #baff00;
}

.element {
	margin-bottom: 100px;
}

/*===  Accordion ===*/
.accordion-area .panel {
	margin-bottom: 15px;
}

.accordion-area .panel-header {
	background: #f0f0f0;
	display: block;
	padding: 12px 50px;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active {
	background: #baff00;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
}

.accordion-area .panel-link {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	background: #baff00;
	border: none;
	cursor: pointer;
}

.accordion-area .panel-body p {
	font-size: 14px;
	margin-bottom: 0;
	padding-top: 25px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	left: 50%;
	font-size: 16px;
	font-weight: 700;
	top: 50%;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

/*===  Tab  ===*/
.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 35px;
}

.tab-element .nav-tabs .nav-link {
	border: none;
	background: #f0f0f0;
	border-radius: 0;
	margin-right: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #222;
	padding: 15px 30px;
}

.tab-element .nav-tabs .nav-link.active {
	background: #baff00;
}

.tab-element .nav-tabs .nav-link.active,
.tab-element .nav-tabs .nav-link:hover {
	border: none;
}

.tab-element .tab-pane h4 {
	font-size: 18px;
	margin: 25px 0 20px;
}

.tab-element .tab-pane p {
	font-size: 14px;
}

/*===  Loader ===*/
.circle-progress {
	text-align: center;
	padding-top: 30px;
	display: inline-block;
}

.circle-progress .prog-circle {
	position: relative;
	margin-bottom: -155px;
}

.circle-progress .prog-circle:after {
	position: absolute;
	content: "";
	width: 177px;
	height: 177px;
	left: 9px;
	top: 9px;
	border-radius: 50%;
	border: 2px solid #fff;
	z-index: 1;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	width: 100%;
	border-radius: 150px;
	margin: 0 auto;
	padding-top: 22px;
}

.circle-progress .progress-info h2 {
	font-size: 48px;
}

.circle-progress .prog-title {
	text-align: center;
	margin-top: 100px;
}

.circle-progress .prog-title h3 {
	font-size: 18px;
	color: #727272;
}

.img-popup-warp .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.header-area {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
    background: #fff;
    border-top: 3px solid #004b97;
}

.logo-area {
	float: left;
	display: inline-block;
    padding: 2px 0 4px;
}

.phone-number {
    float: right;
    display: inline-block;
    padding: 10px 18px;
    background: #ed1c25;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 38px;
    margin-right: 50px;
    color: #fff;
}

.nav-switch {
	display: none;
}

.nav-menu {
	display: inline-block;
	float: right;
}

.nav-menu ul {
    list-style: none;
    padding: 40px 0 0;
}

.nav-menu ul li {
	display: inline;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 20px 10px 20px;
    text-transform: uppercase;
    margin-right: 30px;
    font-size: 15px;
    color: #004B97;
    font-weight: 500;
    position: relative;
    margin-top: 8px;
}

.nav-menu ul li a:after {
	position: absolute;
	content: "";
	width: 2px;
	height: 0;
	left: 50%;
	margin-left: 1px;
	top: 0;
	background: #ed1c25;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
    display: none;
}

.nav-menu ul li a:hover:after {
	height: 25px;
}

.nav-menu ul li.active>a:after {
	height: 25px;
}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
	height: auto;
	background: #ededed;
	position: relative;
    height: 100%;
    min-height: 100%;
}
.hero-section .owl-carousel {
        height: 551px;
}
.left-bar {
    position: absolute;
    width: 100px;
     height: 551px;
    background: #0000002e;
    z-index: 20;
}

.left-bar .left-bar-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    margin-bottom: 110px;
}

.social-links a {
	display: block;
    color: #ffffffb8;
	margin-bottom: 20px;
	font-size: 20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.social-links a:hover {
    color: #fff;
}

.hero-right-text {
	position: absolute;
	right: 140px;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transform-origin: right center;
	    -ms-transform-origin: right center;
	        transform-origin: right center;
	bottom: 60%;
	z-index: 30;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 20px;
}

.hero-slider .hero-slide-item {
	width: 100%;
    height: 551px;
	display: table;
}

.hero-slider .hero-slide-item .slide-inner {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.hero-slider .owl-nav {
    position: absolute;
    display: inline-block;
    LEFT: 0;
    bottom: 20px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
	display: inline-block;
	margin-right: 30px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
    opacity: .4;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
	color: #FFF;
    opacity: 10;
}

.hero-slider .owl-nav .owl-prev i {
	margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
	margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
	margin-left: 5px;
}

.slide-num-holder {
    width: 110px;
    height: 99px;
    position: absolute;
    right: 0;
    background: #004B97;
    bottom: 0px;
    z-index: 111;
    text-align: right;
    padding-right: 20px;
    padding-top: 38px;
    color: #fff;
    font-weight: 700;
    display: none;
}
.testimnl-bg-clr {
    background: none;
}

.slide-num-holder span {
    font-size: 28px;
    color: #fff;
    position: relative;
    top: -11px;
    right: -3px;
}

.slide-content {
    margin-left: 30px;
    margin-bottom: 50px;
    /* padding-left: 190px; */
    padding-top: 250px;
    padding-bottom: 70px;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

/*.slide-content:after {
	position: absolute;
	content: "";
	height: calc(100% + 50px);
	width: 330px;
	border-top: 150px solid #baff00;
	border-left: 150px solid #baff00;
	border-bottom: 90px solid #baff00;
	top: 0;
	left: 0;
	opacity: 0.73;
}*/

.slide-content h2 {
    color: #fff;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 40px;
}

.owl-item.active .slide-content {
    opacity: 1;
    z-index: 9999;
}

/*----------------------------------------*/
/*  Intro Section CSS
/*----------------------------------------*/
.intro-text p {
	margin-bottom: 50px;
}

/*----------------------------------------*/
/*  Service Section CSS
/*----------------------------------------*/
.service-box {
	margin-bottom: 30px;
}

.service-box .sb-icon {
	margin-bottom: 30px;
	width: 100px;
	height: 125px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.service-box .sb-icon .sb-img-icon {
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-box .sb-icon .sb-img-icon img {
	opacity: 0.2;
	max-height: 70px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.service-box .sb-icon::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	left: 25px;
	top: -80px;
	-webkit-transform: rotate(-65deg);
	    -ms-transform: rotate(-65deg);
	        transform: rotate(-65deg);
}

.service-box .readmore {
	font-size: 12px;
	font-weight: 700;
	color: #222222;
	display: inline-block;
	padding: 2px 0;
	background-color: transparent;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.service-box:hover .sb-icon {
	background-color: #baff00;
}

.service-box:hover .sb-icon .sb-img-icon {
	left: 15px;
	margin-bottom: 5px;
}

.service-box:hover .sb-icon .sb-img-icon img {
	opacity: 1;
}

.service-box:hover .readmore {
	background-color: #baff00;
	padding: 2px 10px;
}

/*----------------------------------------*/
/*  CTA Section CSS
/*----------------------------------------*/
.cta-section {
	position: relative;
/*	margin-bottom: 70px;*/
}

/*
.cta-section:after {
	content: "";
	position: absolute;
	width: 67%;
	height: 100%;
	right: 0;
	top: 0;
    background-image: url(../img/manu_bg.jpg);
	z-index: 2;
}
*/
/*
.cta-section .cta-image-box {
	position: absolute;
	width: 50%;
	height: 100%;
	left: 0;
	background-image: url("../img/manu12.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}*/

.cta-section .container {
	position: relative;
	z-index: 9;
}

.cta-section .cta-content h2 {
	color: #fff;
    text-align: center;
}

.cta-section .cta-content p {
	color: #fff;
	margin-bottom: 30px;
    text-align: center;
}

.cta-section .cta-content .cta-img-icon {
	display: inline-block;
	height: 80px;
	position: relative;
	width: 50px;
	margin-right: 40px;
	margin-bottom: 30px;
    text-align: center;
}

.cta-section .cta-content .cta-img-icon:last-child {
	margin-right: 0;
}

.cta-section .cta-content .cta-img-icon img {
	left: 0;
	bottom: 0;
	max-height: 100%;
}

/*----------------------------------------*/
/*  Milestones Section CSS
/*----------------------------------------*/
.milestone {
	min-height: 110px;
	padding-left: 43px;
	padding-top: 15px;
	position: relative;
}

.milestone h2 {
	margin-bottom: 0;
	font-size: 68px;
	display: inline-block;
	float: left;
	position: relative;
	z-index: 1;
}

.milestone p {
	float: left;
	font-size: 20px;
	margin-top: 10px;
	margin-left: 10px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.milestone:after {
	position: absolute;
	content: "";
	width: 110px;
	height: 110px;
	left: 0;
	top: 0;
	background: #efefef;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.milestone:hover:after {
	background: #baff00;
}

/*----------------------------------------*/
/*  Projects Section CSS
/*----------------------------------------*/
.projects-filter-nav {
	list-style: none;
	text-align: right;
	margin-top: 20px;
}

.projects-filter-nav li {
	display: inline-block;
	margin-left: 25px;
	color: #747474;
	font-size: 18px;
	font-weight: 500;
	padding: 0 5px;
	cursor: pointer;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.projects-filter-nav li.btn-active {
	background: #baff00;
	color: #222222;
}

.projects-slider {
	padding: 0 40px;
	margin-top: 60px;
}

.projects-slider .single-project {
	height: 550px;
	width: 100%;
	background: #333;
	-o-transition: .8s;
	transition: .8s;
	-webkit-transition: .8s;
	-ms-transform: translateX(0);
	    transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
}

.projects-slider .single-project .project-content {
	padding: 50px;
	height: 100%;
	background: rgba(13, 13, 13, 0.5);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	opacity: 0;
}

.projects-slider .single-project .project-content h2 {
	color: #fff;
	font-weight: 500;
	position: relative;
	top: 20px;
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.projects-slider .single-project .project-content p {
	color: #baff00;
	font-weight: 500;
	position: relative;
	top: 40px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.projects-slider .single-project .seemore {
	position: absolute;
	right: 50px;
	bottom: 30px;
	background: #baff00;
	font-size: 14px;
	font-weight: 700;
	color: #222;
	display: inline-block;
	padding: 2px 8px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.projects-slider .single-project:hover .project-content {
	opacity: 1;
}

.projects-slider .single-project:hover .project-content h2,
.projects-slider .single-project:hover .project-content p {
	top: 0;
}

.projects-slider .single-project:hover .seemore {
	bottom: 50px;
}

.projects-slider .single-project.__loading {
	opacity: 0;
	-ms-transform: translateX(40px);
	    transform: translateX(40px);
	-webkit-transform: translateX(40px);
}

.projects-slider .owl-nav {
	text-align: right;
	max-width: 1170px;
	margin: 40px auto 0;
}

.projects-slider .owl-nav .owl-prev,
.projects-slider .owl-nav .owl-next {
	display: inline-block;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 700;
	color: #222222;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	padding: 0 5px;
}

.projects-slider .owl-nav .owl-prev:hover,
.projects-slider .owl-nav .owl-next:hover {
	background: #baff00;
}

.projects-slider .owl-nav .owl-prev i {
	margin-right: 5px;
}

.projects-slider .owl-nav .owl-next {
	margin-right: 0px;
}

.projects-slider .owl-nav .owl-next i {
	margin-left: 5px;
}

/*----------------------------------------*/
/*  Client Section CSS
/*----------------------------------------*/
.client-slider .single-brand {
	display: table;
	height: 80px;
	width: 100%;
}

.client-slider .single-brand a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.client-slider .single-brand a img {
	width: auto;
	margin: 0 auto;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.client-slider .single-brand a:hover img {
	opacity: 1;
}

/*----------------------------------------*/
/*  Footer Section CSS
/*----------------------------------------*/
.footer-section {
    padding: 60px 0;
	border-top: 1px solid #c8c8c8;
	position: relative;
    background: #fff;
}

.footer-section .copyright {
	position: absolute;
	top: 50%;
	margin-top: -12px;
	left: 60px;
	color: #737373;
}

.footer-section .footer-social {
    width: 55px;
    text-align: center;
    position: absolute;
    right: 60px;
    top: 65px;
    padding-top: 20px;
    background: #ed1c25;
}

.footer-item ul {
	list-style: none;
}

.footer-item ul li {
	display: block;
	margin-bottom: 10px;
}

.footer-item ul li a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #585858;
    padding: 0 5px;
}

.footer-item ul li a:hover {

}

/*----------------------------------------*/
/*  Other pages CSS
/*----------------------------------------*/
.page-header-section {
    height: 365px;
    padding-top: 180px;
}

.page-header-section .header-title {
    font-size: 42px;
	color: #fff;
}

.page-header-section .header-title span {
	background: none;
	color: #fff;
}

/*----------------------------------------*/
/*  About page CSS
/*----------------------------------------*/
.testimonials-section {
	position: relative;
	margin: 60px 0;
}

.testimonials-section h1 {
	color: #fff;
}

.testimonials-section:after {
	content: "";
	position: absolute;
	width: 67%;
	height: 100%;
	right: 0;
	top: 0;
	background: #004b97;
	z-index: 2;
}

.testimonials-section .testimonials-image-box {
	position: absolute;
	width: 50%;
	height: calc(100% + 120px);
	left: 0;
	top: -60px;
	background-image: url("../img/cta-img.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.testimonials-section .container {
	position: relative;
	z-index: 9;
}

.testimonials-section .qut {
	color: #fff;
	font-size: 36px;
	margin-bottom: 20px;
}

.ts-item p {
	color: #fff;
	font-style: italic;
	margin-bottom: 50px;
}

.ts-item h4 {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 0;
}

.ts-item span {
	font-size: 12px;
	color: #fff;
}

.team-member {
	padding-right: 67px;
	position: relative;
}

.team-member img {
	min-width: 100%;
}

.team-member .member-info {
	position: absolute;
	padding-left: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 230px;
	background: #fff;
	bottom: 37px;
	right: 0;
	-webkit-box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	        box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.team-member .member-info h2 {
	font-size: 30px;
	margin-bottom: 0;
}

.team-member .member-info p {
	color: #222222;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

.team-member:hover .member-info {
	background: #baff00;
	-webkit-box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
	        box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
}

.promo-section {
	padding-top: 90px;
	padding-bottom: 150px;
}

.promo-text h1 {
	margin-bottom: 20px;
}

.promo-text p {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	margin-bottom: 0;
}

.slide-num-holder.test-slider {
	right: auto;
	left: 100%;
	bottom: -160px;
	width: 160px;
	height: 230px;
	padding-right: 30px;
	padding-top: 80px;
}

/*----------------------------------------*/
/*  Service page CSS
/*----------------------------------------*/
.service-slider {
	position: relative;
}

.service-slider .owl-controls {
	position: absolute;
	height: 100%;
	width: 14px;
	left: 0;
	top: 0;
	display: -ms-grid;
	display: grid;
}

.service-slider .owl-dots {
	display: table-cell;
	vertical-align: middle;
}

.service-slider .owl-dots .owl-dot {
	width: 14px;
	height: 13px;
	margin-bottom: 10px;
	background: #e8e8e8;
}

.service-slider .owl-dots .owl-dot.active {
	background: #baff00;
}

.service-text h2 {
	font-size: 30px;
	margin-bottom: 30px;
}

.service-text p {
	margin-bottom: 50px;
}

.service-text ol {
	list-style: none;
}

.service-text ol li {
	font-size: 20px;
	font-weight: 700;
	color: #727272;
	margin-bottom: 20px;
}

.solid-service-box {
	text-align: center;
	background: #fff;
	padding: 50px 30px;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.solid-service-box h2 {
	font-size: 48px;
	color: #727272;
	margin-bottom: 20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.solid-service-box h3 {
	margin-bottom: 20px;
}

.solid-service-box p {
	font-size: 14px;
	margin-bottom: 20px;
}

.solid-service-box .readmore {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #222;
	opacity: 0;
	visibility: hidden;
	position: relative;
	bottom: -20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.solid-service-box:hover {
	background: #baff00;
}

.solid-service-box:hover h2 {
	color: #222;
}

.solid-service-box:hover .readmore {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.promo-box {
	width: 1383px;
	margin: 0 auto;
	padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
	color: #fff;
}

/*----------------------------------------*/
/*  Blog page CSS
/*----------------------------------------*/
.blog-post {
	margin-bottom: 120px;
}

.blog-post .thumb {
	padding: 25px;
	position: relative;
}

.blog-post .thumb:after {
	position: absolute;
	content: "";
	width: 100%;
	height: calc(100% - 100px);
	top: 0;
	left: 0;
	background: #f0f0f0;
	z-index: -1;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.blog-post .post-date {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	display: inline-block;
	background: #baff00;
	padding: 4px 15px;
	margin-bottom: 20px;
}

.blog-post h2 {
	font-size: 30px;
}

.blog-post h2 a {
	color: #222;
}

.blog-post p {
	margin-bottom: 0;
}

.blog-post .post-meta {
	margin-bottom: 40px;
}

.blog-post .post-meta a {
	color: #727272;
	font-size: 12px;
	margin-right: 10px;
}

.blog-post .post-meta a i {
	font-size: 16px;
	margin-left: 5px;
}

.blog-post:hover .thumb:after {
	background: #baff00;
}

.pagination {
	display: inline-block;
	padding: 20px 30px;
	background: #222;
	border-radius: 0;
}

.pagination a {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.pagination a.active {
	font-size: 48px;
	color: #baff00;
}

.search {
	position: relative;
}

.widget-area {
	margin-bottom: 80px;
}

.widget-area .widget-title {
	font-size: 22px;
	margin-bottom: 40px;
}

.widget-area .search input {
	width: 100%;
	background: #f0f0f0;
	border: none;
	font-size: 12px;
	padding: 10px;
	padding-right: 35px;
	font-style: italic;
}

.widget-area .search button {
	position: absolute;
	right: 0;
	top: 0;
	background: none;
	border: none;
	color: #838383;
	height: 100%;
	width: 40px;
}

.widget-area ul {
	list-style: none;
}

.widget-area ul li a {
	font-size: 15px;
	display: inline-block;
	margin-bottom: 15px;
	font-weight: 500;
	color: #727272;
	padding: 3px 10px;
	padding-left: 25px;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area ul li a:after {
	position: absolute;
	content: "+";
	color: #838383;
	left: 5px;
	top: 3px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area ul li a:hover {
	background: #baff00;
	color: #222;
}

.widget-area ul li a:hover:after {
	color: #222;
}

.widget-area ul li:last-child a {
	margin-bottom: 0;
}

.widget-area .rp-widget .rp-widget-item {
	margin-bottom: 30px;
	overflow: hidden;
}

.widget-area .rp-widget .rp-widget-item:last-child {
	margin-bottom: 0;
}

.widget-area .rp-widget .thumb {
	width: 68px;
	height: 68px;
	float: left;
	margin-right: 30px;
	background: #ddd;
	display: block;
}

.widget-area .rp-widget .rp-content {
	padding-left: 98px;
}

.widget-area .rp-widget h4 {
	line-height: 1.5;
	margin-bottom: 0;
}

.widget-area .rp-widget p {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 0;
}

.widget-area .quote-widget span {
	font-size: 47px;
	font-style: italic;
	color: #727272;
}

.widget-area .quote-widget p {
	font-style: italic;
	margin-bottom: 0;
	font-size: 13px;
}

.widget-area .instagram-widget {
	padding-top: 30px;
}

.widget-area .instagram-widget a {
	display: block;
	overflow: hidden;
	width: 33.33333%;
	float: left;
	position: relative;
}

.widget-area .instagram-widget a:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #baff00;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.widget-area .instagram-widget a:before {
	position: absolute;
	content: "+";
	color: #fff;
	font-weight: 500;
	text-align: center;
	font-size: 36px;
	line-height: 36px;
	width: 20px;
	top: 50%;
	margin-top: -13px;
	left: 50%;
	margin-left: -10px;
	text-shadow: 0 0 20px #999;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 2;
}

.widget-area .instagram-widget a:hover:after,
.widget-area .instagram-widget a:hover:before {
	opacity: 1;
}

.widget-area .instagram-widget a img {
	min-width: 100%;
}

/*----------------------------------------*/
/*  Contact page CSS
/*----------------------------------------*/
.cf-social {
	margin-top: 50px;
}

.cf-social a {
	color: #222;
	margin-right: 25px;
}

.contact-form {
	padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 13px;
    background: #f9f9f9f0;
    padding: 15px 20px;
    margin-bottom: 20px;
        border: 1px solid #d2d1d1
}

.contact-form textarea {
	height: 200px;
	margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
	font-style: italic;
}

.contact-form :-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::-ms-input-placeholder {
	font-style: italic;
}

.contact-form ::placeholder {
	font-style: italic;
}

.map-area {
	height: 685px;
	width: 100%;
	display: block;
	background: #f0f0f0;
	margin-bottom: 2px;
}

/*----------------------------------------*/
/*  Portfolio page CSS
/*----------------------------------------*/
.portfolio-filter {
	list-style: none;
}

.portfolio-filter li {
	display: inline-block;
	margin-right: 40px;
	font-size: 14px;
	color: #222;
	cursor: pointer;
	font-weight: 500;
}

.portfolio-filter li.active {
	text-decoration: underline;
	-webkit-text-decoration-color: #2046f2;
	        text-decoration-color: #2046f2;
}

.portfolio-warp {
	display: block;
	overflow: hidden;
}

.portfolio-warp .grid-item {
	width: 20%;
	background-position: center;
}

.portfolio-warp .grid-item:after {
	content: '';
	display: block;
	clear: both;
}

.portfolio-warp .grid-item.grid-wide,
.portfolio-warp .grid-item.grid-long {
	width: 40%;
}

.portfolio-warp .grid-item a {
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(186, 255, 0, 0.45);
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-warp .grid-item a:after {
	position: absolute;
	content: "+";
	left: 50%;
	top: 60%;
	width: 48px;
	margin-left: -24px;
	margin-top: -24px;
	color: #fff;
	font-size: 48px;
	line-height: 48px;
	text-align: center;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.portfolio-warp .grid-item:hover a {
	opacity: 1;
}

.portfolio-warp .grid-item:hover a:after {
	top: 50%;
}

.portfolio-warp .grid-sizer {
	width: 20%;
}






/*RAM*/

.hero-slide-item::after {
    background: #004B97;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.site-btn:hover {
    background: #ed1c25;
    color: #fff;
    border: 1px #004B97 solid;
    -webkit-transition: all 0.15s ease-in-out;
    -khtml-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.site-btn-style {
    background: #004B97;
    color: #fff !important;
    border: 0;
    text-transform: uppercase;
    font-weight: normal;
    margin-top: 5px;
}
.site-btn-style:hover {
    background: #ed1c25;
    color: #fff !important;
    border: 0;
}
.site-p-style p{
    margin-bottom: 20px;
   text-align: justify;
}
.sp-title-style span {
    padding-left: 0;
    line-height: 50px;
}
.sp-title-style {
    margin-bottom: 10px;
}
span.special-p {
    color: #222;
}
.award-img img {
    max-width: 520px;
}
.products-section {
    background: #f3f3f3;
}
.about-main-section {
    padding: 60px 0;
    background: #fff;
}
.our-products-main {
    background: #f1f1f1;
    padding: 40px 0;
    width: 100%;
    float: left;
}
.product-hero h4 {
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 0;
}
.product-hero p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
}
.product-hero-col {
    padding: 0;
    float: left;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}
.product-hero {
    padding:15px 20px;
}
.product-hero-img {
    text-align: center;
}
.product-hero-img img {
    max-width: 90%;
}
.product-btn a {
    background: #004b97;
    padding: 10px 39px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    border-radius: 2px;
    margin-bottom: 20px;
    display: inline-block;
}
.product-btn a:hover {
    background: #ed1c25;
    -webkit-transition: all 0.15s ease-in-out;
    -khtml-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    border: 0;
    color: #fff;
}
.product-btn {
    text-align: center;
}
.product-hero-title h2 {
    font-size: 18px;
    text-align: left;
    color: #222;
    margin-bottom: 17px;
    margin-top: 17px;
}
.product-hero-title h2 span {
    font-size: 35px;
    text-align: center;
    color: #004B97;
}
.product-hero-btn {
    text-align: center;
    margin-top: 10px;
}
.product-hero-btn a {
    padding-left: 0;
    margin: 0;
}
.choose-hereo {
    float: left;
}
.choose-hereo h6 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
}
/*.choose-icons {
    width: 130px !important;   
}*/
h6.choose-text-syle {
    margin-bottom: 20px;
}
.blue-bg-pdng {
    padding-top: 70px;
}
.footer-her-sec {
    padding: 60px 0;
    background: #f1f1f1;
    width: 100%;
    float: left;
}
.footer-item img {
    max-width: 170px;
}
.footer-item p {
    line-height: 24px;
    margin-top: 20px; 
}
.footer-bottom {
    width: 100%;
    float: left;
    background: #004B97;
    padding: 5px 0;
}
.copyright > p {
    margin-bottom: 0;
    color: #fff;
    font-size: 12px;
}
.what-we-do-hero {
    padding: 60px 0;
    background: #fff;
}
.what-para-hero p {
    margin: 0;
    font-size: 18px;
    color: #004B97;
}
.manufac-img-hero {
    text-align: center;
}
.manufac-img-hero img {
    text-align: center;
    margin-bottom: 27px;
}
.our-team-hero h1 {
    font-size: 36px;
    color: #222;
}
.our-team-hero {
    text-align: center;
}
.our-team-hero p {
    font-size: 17px;
    color: #004B97;
    line-height: 31px;
    margin-top: 12px;
}
.our-teamher-section {
    background: #ddd;
    padding: 60px 0;
}
.team-single-blog {
    text-align: center;
    padding: 35px 30px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}
.team-single-blog h6 {
    font-size: 17px;
    line-height: 25px;
    margin-top: 20px;
    color: #333;
}
.team-section-pdng {
    margin-bottom: 30px;
}






.fifth_steps {
    background: #f9f9f9;
    padding: 50px 0;
}
.fifth_stepsin ul {
    margin: 0;
    padding: 0;
}
.fifth_stepsin ul li {
    list-style: none;
    float: left;
    list-style: none;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.29);
    background: #fff;
    margin-bottom: 15px;
    ': ;
    position: relative;
    display: block;
}
.no_padding_right {
    padding-right: 0;
}
.steps_content {
    float: left;
    padding-top: 18px;
    padding-bottom: 20px;
}
.steps_content img {
    width: 80px;
}
.no_padding_left {
    padding-left: 0;
}

.testimonial-hdng h1 {
   font-size: 35px; 
}
.why-choose-main {
    background: url(../img/why.jpg);
    padding: 60px 0;
}
.why-here-hdn-blck h2 {
    color: #fff;
    text-align: center;
    font-size: 35px;
}
.why-here-hdn-blck p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    padding-left: 24%;
    padding-right: 24%;
    color: #fff;
    margin-bottom: 35px;
}
.why-choose-blcok {
    text-align: center;
    padding: 40px 0;
    background: #ffffff0d;
}
.why-choose-blcok:hover {
    background: #004B97;
    -webkit-transition: all 0.5s ease-in-out;
    -khtml-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.why-choose-blcok h6 {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}
.manufacturing-cntnt {
    background: #004b97;
    padding: 40px;
}
.manufacturing-cntnt {
    text-align: center;
}
.manufacturing-cntnt h2 {
    color: #fff;
    margin-top: 28px;
    margin-bottom: 13px;
}

.manufacturing-cntnt p {
    color: #fff;
}
.facturing-main-section {
    padding: 70px 0;
    background: #f1f1f1;
}

.logo-hero-main img {
    max-width: 100%;
}
.contact-hero-section {
    padding: 20px 0;
    background: #fff;
}
.contact-adrs span .fa {
    font-size: 30px;
    color: #004B97;
}
.contact-adrs p {
    font-size: 15px;
    line-height: 26px;
}
.addres-hero {
    margin-bottom: 10px;  
}



.top_menu {
    height: 60px;
    width: 100%;
    background: #fff;
}

.top_menulist {
    margin: 0;
    padding: 0;
    float: right;
    width: 50%;
    text-align: right;
    background: #004B97;
    position: relative;
}
.top_menulist:after {
  content: '';
  line-height: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 100px solid #000;
  border-bottom: 50px solid transparent;
  border-left: 0px solid transparent;
  border-right: 50px solid transparent;
  position: absolute;
  top: 0;
  left: -50px;
}


.top_menulist li {
    list-style: none;
    float: right;
    margin-left: 25px;
    line-height: 45px;
    color: #fff;
    font-size: 14px;
}

.top_menulist li .fa {
    margin-right: 5px;
}

.top_menulist li a{
    color: #fff;
}






.topbar .widget {
	    float: left;
	    margin-bottom: 0
	}
	
	.topbar p {
	    margin: 0
	}
	
	.topbar a {
	    color: #ffffff;
	}
	

	
	.topbar ul {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex
	}
	
	.topbar ul li a {
	    color: #fff
	}
	
	.topbar ul li a:hover {
	    color: #9cc212
	}
	
	.header-v1 .topbar {
       background: #004B97;
        color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 45px;
    position: relative;
        font-size: 14px;
    top: -3px;
    line-height: 1;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px 0;
    border-bottom-left-radius: 60px;
	}
	
	.header-v1 .topbar:before {
        content: '';
        position: absolute;
        top: 1px;
        left: 0px;
        border-top: 64px solid #fff;
        border-right: 64px solid #ed1c25;
        width: 0;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        display: none;
	}
	
	/*.header-v1 .topbar:after {
	    content: '';
	    position: absolute;
	    top: -15px;
	    left: 36px;
	    background: #002850;
	    width: 4px;
	    height: 104px;
	    -webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg)
	}*/
	
	.header-v1 .topbar .topbar-widgets {
	    float: right;
	    margin-left: auto;
	   /* display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;*/
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	    -moz-box-align: center;
	    -ms-flex-align: center;
	    align-items: center;
	    -webkit-box-pack: end;
	    -webkit-justify-content: flex-end;
	    -moz-box-pack: end;
	    -ms-flex-pack: end;
	    justify-content: flex-end
	}
	
	.header-v1 .topbar .topbar-widgets .widget {
        padding-left: 1.875em;
        margin-left: 1.875em;
        margin-right: 18px;
	}
	
	.header-v1 .topbar .topbar-widgets .widget:first-child,
	.header-v1 .topbar .topbar-widgets .widget:last-child {
	    border-left: 0;
	    padding-left: 0
	}
	
	.header-v1 .topbar .widget {
	    margin-bottom: 0
	}
	
	.header-v1 .topbar .widget .pull-left i {
    color: #ffffff;
    font-size: 1.25em;
    margin: 0.5em 10px 0 0;
    line-height: 36px;
    position: relative;
    top: 2px;
	}
	
	.header-v1 .topbar .widget .pull-right div {
	        color: #ffffff;
    font-size: .875em;
	}
	
	.header-v1 .topbar .widget .pull-right>div:first-child {
	    font-family: 'Poppins', sans-serif;
	    font-weight: 500;
	    color: #fff;
	    text-transform: uppercase;
	    margin-bottom: 8px
	}
	
	.header-v1 .topbar .socials {
	    margin: 2px 0 0 0
	}
	
	.header-v1 .topbar .socials li a {
	    color: #fff;
	    border: 1px solid #405847
	}
	
	.header-v1 .topbar .socials li a:hover {
	    border: 1px solid #fff;
	    color: #9cc212
	}
	
	.header-v1 .topbar .menu-block-right {
	    content: '';
	    height: 68px;
	    background-color: #ed1c25;
	    position: absolute;
	    top: -3px;
        display: none;
	}
	
	.header-v1 .site-header .header-main {
	    border-top: 3px solid #9cc212
	}
	
	.header-v1 .header-main .menu-row {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-pack: center;
	    -webkit-justify-content: center;
	    -moz-box-pack: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	    -moz-box-align: center;
	    -ms-flex-align: center;
	    align-items: center
	}
	
	.header-v1 .header-main .menu-row:after,
	.header-v1 .header-main .menu-row:before {
	    display: none
	}
	
	.hide-topbar.header-v1 .site-header .header-main {
	    border-top: 0
	}
	
	.header-v2 .topbar {
	    background: #102e19;
	    color: #a2b1a5;
	    font-size: .875em;
	    padding: 17px 0;
	    font-weight: 400
	}
	
	.header-v2 .topbar .sidebar-left {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex
	}
	
	.header-v2 .topbar .sidebar-left .widget {
	    margin-right: 1em;
	    padding-right: 1em;
	    border-right: 1px solid #405847
	}
	
	.header-v2 .topbar .sidebar-left .widget svg {
	    color: #9cc212;
	    margin-right: 8px
	}
	
	.header-v2 .topbar .sidebar-left .widget:last-child {
	    border-right: 0
	}
	
	.header-v2 .topbar .sidebar-right {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	    text-align: right
	}
	
	.header-v2 .topbar .sidebar-right .widget {
	    float: right
	}
	
	.header-v2 .topbar .sidebar-right .widget:first-child {
	    margin-left: auto
	}
	
	.header-v2 .topbar .sidebar-right li {
	    display: inline-block;
	    margin: 0 .625em
	}
	
	.header-v2 .topbar .sidebar-right li a {
	    color: #a2b1a5
	}
	
	.header-v2 .topbar .sidebar-right li a:hover {
	    color: #9cc212;
	    text-decoration: underline
	}
	
	.header-v2 .topbar .socials a {
	    border: 0;
	    color: #a2b1a5;
	    height: auto;
	    width: auto;
	    line-height: 1;
	    margin: 0 18px 0 0
	}
	
	.header-v2 .topbar .socials a:hover {
	    color: #9cc212
	}
	
	.header-v2 .topbar #lang_sel>ul>li,
	.header-v2 .topbar .lang_sel>ul>li {
	    position: relative
	}
	
	.header-v2 .topbar #lang_sel>ul>li>a,
	.header-v2 .topbar .lang_sel>ul>li>a {
	    border-left: 1px solid #405847;
	    padding: 0 20px
	}
	
	.header-v2 .topbar #lang_sel>ul>li>a:after,
	.header-v2 .topbar .lang_sel>ul>li>a:after {
	    position: absolute;
	    top: 50%;
	    right: 0;
	    color: #9cc212;
	    content: "\f107";
	    font-family: "FontAwesome";
	    font-size: 14px;
	    z-index: 9;
	    -webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    transform: translateY(-50%)
	}
	
	.header-v2 .topbar #lang_sel>ul>li a,
	.header-v2 .topbar .lang_sel>ul>li a {
	    text-decoration: none
	}
	
	.header-v2 .topbar #lang_sel>ul>li a img,
	.header-v2 .topbar .lang_sel>ul>li a img {
	    margin-right: 7px
	}
	
	.header-v2 .topbar #lang_sel>ul>li ul,
	.header-v2 .topbar .lang_sel>ul>li ul {
	    width: 120px;
	    position: absolute;
	    right: 0;
	    top: 100%;
	    background: #fff;
	    border-top: 20px solid #102e19;
	    text-align: left;
	    padding: 10px 5px;
	    -webkit-transition: top .5s ease 0s, opacity .5s;
	    transition: top .5s ease 0s, opacity .5s;
	    z-index: -1;
	    opacity: 0;
	    -webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	    transform: scaleX(0)
	}
	
	.header-v2 .topbar #lang_sel>ul>li ul li,
	.header-v2 .topbar .lang_sel>ul>li ul li {
	    display: block;
	    margin-bottom: 5px;
	    padding-bottom: 5px;
	    border-bottom: 1px solid #f2f2f2
	}
	
	.header-v2 .topbar #lang_sel>ul>li ul li:last-child,
	.header-v2 .topbar .lang_sel>ul>li ul li:last-child {
	    margin-bottom: 0;
	    padding-bottom: 0;
	    border-bottom: 0
	}
	
	.header-v2 .topbar #lang_sel>ul>li:hover ul,
	.header-v2 .topbar .lang_sel>ul>li:hover ul {
	    opacity: 1;
	    z-index: 9;
	    -webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	    transform: scaleX(1)
	}
	
	.header-v3 .topbar {
	    text-align: right;
	    font-weight: 500;
	    font-size: .875em;
	    border-bottom: 1px solid #535723;
	    height: 80px;
	    padding: 10px 0;
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	    -moz-box-align: center;
	    -ms-flex-align: center;
	    align-items: center;
	    -webkit-box-pack: end;
	    -webkit-justify-content: flex-end;
	    -moz-box-pack: end;
	    -ms-flex-pack: end;
	    justify-content: flex-end
	}
	
	.header-v3 .topbar .widget {
	    margin: 0 0 0 1em;
	    padding: 0 0 0 1em;
	    border-left: 1px solid #535723;
	    display: inline-block;
	    float: none
	}
	
	.header-v3 .topbar .widget:first-child,
	.header-v3 .topbar .widget:last-child,
	.header-v3 .topbar .widget.quote {
	    border: 0
	}
	
	.header-v3 .topbar .widget .svg-icon i {
	    color: #9cc212;
	    margin-right: 5px
	}
	
	.header-v3 .topbar .menu-block-right-v3 {
	    content: '';
	    height: 80px;
	    position: absolute;
	    top: 0;
	    border-bottom: 1px solid #535723
	}
	
	.header-v3 .topbar .quote .quote-content {
	    background: #1a4728;
	    padding: .4em 1em;
	    -webkit-border-radius: 5px;
	    border-radius: 5px;
	    color: #fff
	}
	
	.header-v3 .topbar .quote .quote-content a {
	    color: #fff
	}
	
	.header-v3 .socials {
	    list-style-type: none;
	    margin: 0
	}
	
	.header-v3 .socials a {
	    border: 0;
	    height: auto;
	    width: auto;
	    line-height: 1;
	    margin: 0 .5em;
	    color: #848484
	}
	
	.header-v3 .socials a:hover {
	    color: #9cc212
	}
	
	.socials li {
	    display: inline-block
	}
	
	.socials a {
	    display: inline-block;
	    width: 1.875em;
	    height: 1.875em;
	    -webkit-border-radius: 50%;
	    border-radius: 50%;
	    border: 1px solid #fff;
	    text-align: center;
	    line-height: 27px;
	    color: #fff;
	    margin: 0 .3em !important;
	    -webkit-transition: all .5s;
	    transition: all .5s;
        padding: 0 !important;
        margin-right: 0 !important;
	}
	
	.socials a:hover {
	    border: 0;
	    color: #9cc212
	}
	
	.socials a i {
	    font-size: 12px
	}
	
	.page-header {
	    margin: 0;
	    border-bottom: 0;
	    padding-bottom: 0
	}
	
	.page-header .page-header-content {
	    padding: 50px 0 33px 0;
	    position: relative
	}
	
	.page-header.no-image .page-header-content {
	    padding: 75px 0 0 0
	}
	
	.page-header .header-box {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -webkit-box-pack: justify;
	    -webkit-justify-content: space-between;
	    -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	    justify-content: space-between;
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	    -moz-box-align: center;
	    -ms-flex-align: center;
	    align-items: center
	}
	
	.page-header .header-box .page-title {
	    min-width: 50%
	}
	
	.page-header h1,
	.page-header h2 {
	    margin: 0 100px 15px 0;
	    color: #000;
	    font-weight: 600
	}
	
	.page-header.hide-title h1,
	.page-header.hide-title h2 {
	    line-height: 0;
	    text-indent: -9999px
	}
	
	.page-header .breadcrumbs {
	    text-align: right;
	    padding-bottom: 15px;
	    color: #848484
	}
	
	.page-header .breadcrumbs a {
	    color: #000
	}
	
	.page-header .breadcrumbs a.home {
	    font-weight: 500
	}
	
	.page-header .breadcrumbs a:hover {
	    color: #9cc212
	}
	
	.page-header.has-image {
	    background-color: transparent;
	    margin-bottom: 15px
	}
	
	.page-header .featured-image {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    z-index: -1
	}
	
	.page-header .featured-image span {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0
	}
	
	.page-header.parallax .featured-image {
	    background-attachment: fixed
	}
	
	.no-padding {
	    padding: 0
	}
	
	.no-border {
	    border: 0
	}



/*


.owl-carousel .owl-item {
    height: 100%;
    min-height: 100%;
}

.owl-carousel .owl-stage{
        height: 100%;
    min-height: 100%;
}


..owl-carousel{
    height: 100%;
    min-height: 100%;
}

.owl-carousel.owl-loaded{
    height: 100%;
    min-height: 100%;
}



.owl-carousel .owl-stage-outer {
        height: 100%;
    min-height: 100%;
}
*/



.image_product {
    float: left;
    width: 100%;
    background: #FFF;
    border-radius: 10px;
    position: relative;
    z-index: 999;
    top: 165px;
    margin-left: 70px;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14);
}


.products-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
    background: #fff;
}
.view-all a {
    float: right;
}
.cotegory-btn {
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
}
.view-all a {
     padding: 8px 32px;
    text-align: center;
    color: #222;
    font-size: 13px;
    background: #f1f1f1;
    margin-top: 10px;
}
.product-setion-hero {
    width: 100%;
    float: left;
    padding: 11px 0;
}
.footer-section {
    width: 100%;
    float: left
}
.product-marg-btm {
    margin-top: 50px;
}
.page-header-section .product-title {
    margin-top: 20px;
}
.product_brief_hero {
    width: 100%;
    /*float: left;*/
    padding: 20px 0 40px;
    background: #f1f1f1;
    margin-top: 120px;
}
.product-details h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #004b97;
}
.product-details {
    border-bottom: 1px solid #e8e7e7;  
    margin-bottom: 20px;
}
.product-section-main {
    width: 100%;
    float: left;
}
.prodcut-title-hdng h2{
    text-align: center;
    font-size: 35px;
}
.product-single-home {
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.02), 0 1px 5px 0 rgba(0, 0, 0, 0);
}
.broduct-details-brief {
    background: #fff;
    float: left;
    padding: 30px;
    width: 100%;
}
.product-row-gb {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
    background: #fff;
}
.tdcolor-change {
    color: #878787; 
    width: 40%;
}
.td-font-size {
    font-size: 15px;
}
.tr-padding .td-font-size {
    padding-bottom: 19px; 
}
.all-products-sec {
    width: 100%;
    float: left;
}

.hero-section .owl-carousel .owl-stage-outer {
        height: 551px;
}
.hero-section .product-hero-col {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
}
.product-box {
}
.clients-hero {
    width: 100%;
    float: left;
    padding: 60px 0;
    background: #fff;
}
.client-logo-line {
    border-bottom: 1px #e5e5e5 solid;
    border-right: 1px #e5e5e5 solid;
    text-align: center;
}
.client-logo-rght{
    border-bottom: 1px #e5e5e5 solid;
    text-align: center;
}
.client-logo-1 {
    border-bottom: 1px #e5e5e5 solid;
    border-right: 1px #e5e5e5 solid;
    text-align: center;
}
.client-logo-2 {
    border-bottom: 1px #e5e5e5 solid;
    text-align: center; 
}
.client-logo-5 {
    border-right: 1px #e5e5e5 solid;
    text-align: center;
}
.client-logo-6 {
    text-align: center;
}
.three-face-details {
    border-bottom: 1px solid #e8e7e7;
    margin-bottom: 20px;
    padding: 0 0 20px;
}
.three-face-details p {
    margin: 0;
}
.table-padding-sty .tr-padding {
    margin-bottom: 50px;
}
.product-cat-2 {
    width: 100%;
    float: left;
}
.product-btm h2 {
   font-size: 18px;
    text-align: center;
    color: #222;
    margin-bottom: 17px;
    margin-top: 17px; 
}
.product-btm {
    border-bottom: 1px solid #e6e4e4
}
.bottom-product-box {
    padding: 0;
}
.product-btm-bg {
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
    float: left;
}
.product-shadow {
    border-right: 1px solid #e6e4e4;
    border-bottom: 1px solid #e6e4e4;
}
.product-tble p .fa {
    font-size: 10px;
    color: #004b97;
    margin-right: 11px;
}
.breadcrumb {
    background: none;
    margin: 0;
    padding-left: 0;
}
.breadcrumb>.active {
    color: #e6e6e6;
}
.breadcrumb>.brdc-a-color {
    color: #222;
}
.brdc-a a {
    color: #fff;
}
.brdc-a-color a {
    color: #333;
}
li.breadcrumb-item {
    font-size: 13px;
}
.breadcrum-btm {
    margin-bottom: 6px;
}
.slide-content h2 span {
    font-size: 40px;
    font-weight: normal;
    
}
a.product-box-hover {
    
}





#contactform {  
  width: 290px;
  right: -297px;
  margin: 140px 0;
  position: fixed;
  box-shadow: 0 0 12px 0 #333;  
}

#contact-button { 
width: 11%;
    padding: 8% 4%;
    cursor: pointer;
    margin-right: 380px;
    margin-top: 130px;
    font-size: 18px;
    color: white;
    position: absolute;
    left: -38px;
}

#contactform, #contact-button {
    background-color: #fff;
/*    border-radius: 0 15px 15px 0;*/
    border-left: none;
    z-index: 999999;
}

.rotated-text {
    display: inline-block;
    white-space: nowrap;
    /* this is for shity "non IE" browsers
       that dosn't support writing-mode */
    -webkit-transform: translate(1.1em,0) rotate(90deg);
       -moz-transform: translate(1.1em,0) rotate(90deg);
         -o-transform: translate(1.1em,0) rotate(90deg);
            transform: translate(1.1em,0) rotate(90deg);
    -webkit-transform-origin: 0 0;
       -moz-transform-origin: 0 0;
         -o-transform-origin: 0 0;
            transform-origin: 0 0;*/
   /* IE9+ */
   -ms-transform: none;
   -ms-transform-origin: none;
   /* IE8+ */
   -ms-writing-mode: tb-rl;
   /* IE7 and below */
   *writing-mode: tb-rl;
}

.rotated-text:before {
    content: "";
    float: left;
    margin-top: 100%;
}

form {
  width: 100%;
  padding: 20px;
}

form input {
  display: block;
  border: none;
  width: 100%;
  height: 35px; 
}

form textarea {
  width: 300px;
  height: 170px;
}

form textarea, form input { 
  border: 3px solid #666666;
  border-radius: 5px;
  background: #f2f2f2;  
}		




#sidebar{
	position:absolute;
	top:180px;
	left:113px;
	box-shadow: 0 0 8px gray;
}

#sidebar1{
	position:absolute;
	top:180px;
	left:113px;
	box-shadow: 0 0 8px gray;
}


#header h3{
}

#header input[type=text]{ 
    margin-top: 10px;
    padding: 21px 13px;
    width: 100%;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
}

#header h4{
	font-size:15px;
}
div#title{
	position:absolute;
	top:300px;
	left:650px;
	}
	
#header select{
	padding:6px;
	width:100%;
	font-size:15px;
	border-radius:2px;
	border:3px solid #98d0f1;
}

#header textarea{
    padding: 10px 13px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    margin-top: 10px;
    height: 80px;
    width: 100%;
}	

#header button{
    background: #004b97;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 16px;
    padding: 16px 0 15px 0;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 25px;
}
#header button:hover {
    background: #ed1c25;
    color: #fff;
    -webkit-transition: all 0.15s ease-in-out;
    -khtml-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
/*--------------------------------------
		Advertisement div
----------------------------------------*/
.formget{
	width:300px;
	margin-top: 65px;
	margin-left: 57px;
	float: left;
	}

.header_top {
    position: absolute;
    right: 0;
}


/*********************** Demo - 1 *******************/

.box1 img,
.box1:after,
.box1:before {
	width: 100%;
	transition: all .3s ease 0s
}

.box1 .icon,
.box2,
.box3,
.box4,
.box5 .icon li a {
	text-align: center
}

.box10:after,
.box10:before,
.box1:after,
.box1:before,
.box2 .inner-content:after,
.box3:after,
.box3:before,
.box4:before,
.box5:after,
.box5:before,
.box6:after,
.box7:after,
.box7:before {
	content: ""
}

.box1,
.box11,
.box12,
.box13,
.box14,
.box16,
.box17,
.box18,
.box2,
.box20,
.box21,
.box3,
.box4,
.box5,
.box5 .icon li a,
.box6,
.box7,
.box8 {
	overflow: hidden
}

.box1 .title,
.box10 .title,
.box4 .title,
.box7 .title {
	letter-spacing: 1px
}

.box3 .post,
.box4 .post,
.box5 .post,
.box7 .post {
	font-style: italic
}

body {
	background-color: #f1f1f2
}
margin-bottom: 30px
}

.box1 .icon,
.box1 .title {
	margin: 0;
	position: absolute
}

.box1 {
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	position: relative
}

.box1:after,
.box1:before {
	height: 50%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transform-origin: 100% 0;
	transform: rotateZ(90deg)
}

.box1:after {
	top: auto;
	bottom: 0;
	transform-origin: 0 100%
}

.box1:hover:after,
.box1:hover:before {
	transform: rotateZ(0)
}

.box1 img {
	height: auto;
	transform: scale(1) rotate(0)
}

.box1:hover img {
	filter: sepia(80%);
	transform: scale(1.3) rotate(10deg)
}

.box1 .title {
	font-size: 19px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0 0 1px #004cbf;
	bottom: 10px;
	left: 10px;
	opacity: 0;
	z-index: 2;
	transform: scale(0);
	transition: all .5s ease .2s
}

.box1:hover .title {
	opacity: 1;
	transform: scale(1)
}

.box1 .icon {
	padding: 7px 5px;
	list-style: none;
	background: #004cbf;
	border-radius: 0 0 0 10px;
	top: -100%;
	right: 0;
	z-index: 2;
	transition: all .3s ease .2s
}

.box1:hover .icon {
	top: 0
}

.box1 .icon li {
	display: block;
	margin: 10px 0
}

.box1 .icon li a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 10px;
	font-size: 18px;
	color: #fff;
	transition: all .3s ease 0s
}

.box2 .icon li a,
.box3 .icon a:hover,
.box4 .icon li a:hover,
.box5 .icon li a,
.box6 .icon li a {
	border-radius: 50%
}

.box1 .icon li a:hover {
	color: #fff;
	box-shadow: 0 0 10px #000 inset, 0 0 0 3px #fff
}

@media only screen and (max-width:990px) {
	.box1 {
		margin-bottom: 30px
	}
}


/*********************** Demo - 17 *******************/

.box17 {
	position: relative
}

/*.box17:after {
    
}*/

.after_box {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000b8;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s ease 0s;
}

.after_box:hover {
    opacity: 1
}

/*.box17:hover:after {
	opacity: 1
}*/

.box17 img {
	width: 100%;
	height: auto;
	transition: all 1.5s ease 0s
}

.box-content a {
    background: #ed1c25;
}

.box17 .box-content,
.box17 .icon li a {
	position: absolute;
	transition: all .6s ease 0s
}

.box17:hover img {
	transform: scale(1.2)
}

.box17 .icon {
	width: 100%;
	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1
}

.box17 .icon li a {
	width: 45px;
	height: 45px;
	line-height: 45px;
	margin: 0 auto;
	top: 50%;
	border: 1px solid #fff;
	opacity: 0
}

.box17:hover .icon li a {
	top: 30%;
	opacity: 1
}

.box17 .icon li a:hover {
	background: #fff;
	color: #02a2dd
}

.box17 .icon li:first-child a {
	left: -90%;
	right: 0
}

.box17:hover .icon li:first-child a {
	left: -55px
}

.box17 .icon li:last-child a {
	right: -90%;
	left: 0
}

.box17:hover .icon li:last-child a {
	right: -55px
}

.box17 .box-content {
    width: 100%;
    padding:0;
    bottom: -130px;
    left: 0;
    z-index: 1;
}

.box17:hover .box-content {
	bottom: 0
}

.box-content h4 {
    color: #fff;
}

.box17 .title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-top: 0
}

.box17 .post {
	display: block;
	font-size: 14px;
	color: #fff
}
h2.pro_head {
    font-size: 20px;
    color: #222;
}

@media only screen and (max-width:990px) {
	.box17 {
		margin-bottom: 30px
	}
}

.certify {
    padding: 5em 0;
}
.pdf a {
    font-size: 20px;
    color: #fff;
    background: #004a97;
    padding: 10px 20px;
    margin: 30px;
}
.pdf {
    text-align: center;
    margin: 60px auto 0;
}
.product-details h1 {
    font-size: 32px;
    color: #004a97;
    margin-bottom: 20px;
}
section.services_sec {
    padding: 60px 0;
    background: #eaeaea;
}
ul.link_list li {
    list-style-type: none;
    margin-bottom: 10px;
}
ul.link_list li a {
    color: #004a97;
    padding: 10px 20px;
    border: 1px solid #ddd;
    width: 100%;
    display: block;
    transition: 0.5s all;
}
ul.link_list li a:hover {
    background: #004a97;
    border: 1px solid #004a97;
    color: #fff;
}
ul.list {
    margin-bottom: 30px;
}
ul.list li {
    list-style: none;
    font-size: 16px;
    line-height: 2;
    margin-left:20px;
}
ul.list li::before {
    content: "\f138";
    padding-right: 20px;
    font: normal normal normal 15px/15px FontAwesome;
    color: #004a97;
}
.service_details p {
    font-size: 15px;
}
.service_dropdown a {
    border-bottom: 1px solid #ddd;
    padding: 10px 20px !important;
    text-transform: capitalize !important;
    margin-top: 0 !important;
    font-size: 16px !important;
}
.specifications {
    margin-bottom: 2em;
}
.bottom_slider {
    padding: 4em 0;
    background: #fff;
}
.bottom_slider .owl-nav {
    display: none;
}
.img-crsl {
    text-align: center;
    border: 3px solid #004a97;
    border-radius: 5px;
}
.product-br-img .owl-nav {
    display: none;
}
.product-br-img .img-crsl {
    border: 0;
}
ul.ser-grid {
    margin-left: 2em;
}
.sitmap-section ul li a {
    color: #004b97;
    line-height: 1.8em;
    font-size: 18px;
    font-weight: 600;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
ul.ser-grid li a {
    font-size: 16px;
    font-weight: 500;
}
.sitmap-section ul li {
    list-style: none;
}
.sitmap-section ul li i {
    font-size: 21px;
    line-height: 1.8em;
    color: #0189e1;
    margin-right: 0.5em;
}
.copyright.text-center a {
    color: #fff;
}
/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
	.slide-num-holder.test-slider {
		left: auto;
		right: 0;
	}
}

@media only screen and (max-width: 1400px) {
	.promo-box {
		width: 100%;
	}
}
@media only screen and (max-width: 1024px) {
    .logo-area {
    width: 25%;
}
.slide-content h2 {
    color: #fff;
    font-size: 19px;
}
.slide-content {
    margin-left: 100px !important;
}
    .slide-content h2 span {
    font-size: 18px !important;
    font-weight: normal;
}
    .intro-text {
    width: 50%;
    float: left;
}
    .award-img{
     width: 50%;
    float: left;
}
.award-img img {
    max-width: 454px !important;
}
.team-single-blog h6 {
    font-size: 13px !important;
}
.product-hero h4 {
   font-size: 13px !important;
}
}
/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.phone-number {
		margin-right: 30px;
	}
	.nav-menu ul li a {
		margin-right: 20px;
	}
	.slide-content {
		margin-left: 220px;
	}
	.milestone p {
		margin-left: 10px;
		font-size: 17px;
	}
	.milestone h2 {
		font-size: 55px;
	}
	.milestone:after {
		width: 90px;
		height: 90px;
	}
	.slide-num-holder {
		right: 20px;
	}
	.hero-right-text {
		right: 100px;
	}
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

	.slide-content {
        padding-left: 0;
        padding-top: 215px;
        padding-bottom: 30px;
	}
	.sp-title {
        font-size: 27px;
    }
    .award-img img {
        max-width: 357px !important;
    }
    .team-single-blogs {
        float: left;
        width: 50% !important;
    }
    .team-single-blogs:nth-child(3),.team-single-blogs:nth-child(4) {
        margin-top: 2em;
    }
    .pt-4 img {
        width: 100%;
    }
    .section-title h1, .section-title h2 {
    font-size: 40px;
    }
    .product-details h1 {
    font-size: 25px !important;
    }
	.slide-content:after {
		border-top: 100px solid #baff00;
		border-left: 100px solid #baff00;
		border-bottom: 60px solid #baff00;
	}
	.hero-slider .owl-nav {
		left: 170px;
	}
	.slide-num-holder {
		right: 20px;
	}
	.hero-right-text {
		bottom: 70%;
		right: 100px;
	}
	.nav-menu ul li a {
		margin-right: 5px;
		font-size: 13px;
		padding: 37px 7px 5px;
	}
	.phone-number {
		font-size: 12px;
		margin-right: 10px;
	}
	.team-member {
		margin-bottom: 30px;
	}
	.portfolio-warp .grid-item {
		width: 50%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 50%;
	}
	.portfolio-warp .grid-sizer {
		width: 50%;
	}
	.solid-service-box {
		margin-bottom: 30px;
	}
	.cta-section {
		background: #222;
		margin-bottom: 0;
	}
	.testimonials-section {
		background: #222;
		margin: 0;
	}
	.testimonials-image-box,
	.testimonials-section:after,
	.cta-image-box,
	.cta-section:after {
		display: none;
	}
	.section-title {
    margin-bottom: 40px;
}
	.hero-slider .hero-slide-item {
		height: 850px;
	}
	.milestone,
	.solid-service-box {
		margin-bottom: 30px;
	}
	.footer-section .footer-social {
		width: auto;
		top: -25px;
		right: 50%;
		padding: 10px;
		margin-right: -133px;
	}
	.footer-section .social-links a {
		display: inline-block;
		padding: 0 15px;
		margin-bottom: 0;
	}
	.projects-filter-nav {
		text-align: left;
	}
	.projects-filter-nav li {
		margin-left: 0;
		margin-right: 15px;
	}
	.footer-section .copyright {
		position: relative;
		width: 100%;
		max-width: 720px;
		margin: 40px auto 0;
		left: 0;
		top: 0;
		margin-bottom: -50px;
		padding-left: 15px;
	}
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
	h1,
	.sp-title {
		font-size: 45px;
	}
	.page-header-section .header-title {
		font-size: 55px;
	}
	.left-bar {
		width: 70px;
	}
	.slide-content:after,
	.hero-right-text,
	.phone-number {
		display: none;
	}
	.nav-switch {
		position: absolute;
		right: 20px;
		font-size: 30px;
		color: #fff;
		top: 20px;
		display: block;
	}
	.nav-menu {
		position: absolute;
		width: calc(100% - 90px);
		left: 80px;
		background: #121212;
		top: 100%;
		margin-top: 11px;
		display: none;
	}
	.nav-menu ul li a {
		display: block;
		padding: 16px 21px;
		border-bottom: 1px solid #202020;
		margin-right: 0;
	}
	.nav-menu ul li a:after {
		left: 20px;
	}
	.nav-menu ul li.active>a:after,
	.nav-menu ul li a:hover:after {
		height: 10px;
	}
	.hero-section {
		height: auto;
	}
	.hero-slider .hero-slide-item {
		padding: 150px 0;
		height: auto;
	}
	.slide-content h2 {
		font-size: 60px;
		line-height: 60px;
	}
	.hero-slider .owl-nav {
		padding-left: 70px;
		width: 100%;
		text-align: center;
		left: 0;
	}
	.slide-content {
		margin-left: 70px;
		padding: 0;
		text-align: center;
	}
	.slide-num-holder,
	.slide-num-holder.test-slider {
		right: 0;
		height: 75px;
		width: 136px;
		padding-top: 18px;
	}
	.slide-num-holder span,
	.slide-num-holder.test-slider span {
		font-size: 40px;
	}
	.slide-num-holder.test-slider {
		bottom: -135px;
	}
	.team-member {
		margin-bottom: 30px;
	}
	.portfolio-warp .grid-item {
		width: 50%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 50%;
	}
	.portfolio-warp .grid-sizer {
		width: 50%;
	}
	.cta-section {
		background: #222;
		margin-bottom: 0;
	}
	.testimonials-section {
		background: #222;
		margin: 0;
	}
	.testimonials-image-box,
	.testimonials-section:after,
	.cta-image-box,
	.cta-section:after {
		display: none;
	}
	.milestone,
	.solid-service-box {
		margin-bottom: 30px;
	}
	.projects-filter-nav {
		text-align: left;
	}
	.footer-section .footer-social {
		width: auto;
		top: -25px;
		right: 50%;
		padding: 10px;
		margin-right: -133px;
	}
	.footer-section .social-links a {
		display: inline-block;
		padding: 0 15px;
		margin-bottom: 0;
	}
	.footer-section .copyright {
		position: relative;
		width: 100%;
		max-width: 720px;
		margin: 40px auto 0;
		left: 0;
		top: 0;
		margin-bottom: -50px;
		padding-left: 15px;
		text-align: center;
	}
	.footer-item {
		margin-bottom: 40px;
	}
}

/* small mobile :320px. */
@media only screen and (max-width: 479px) {
	.logo-area {
		padding: 20px 30px 30px;
	}
	.header-area {
		background: #121212;
		padding-right: 66px;
	}
	.nav-menu {
		width: 100%;
		left: 0;
		margin-top: 0;
		border-top: 2px solid;
	}
	.left-bar {
		display: none;
	}
	.hero-slider .owl-nav {
		padding-left: 0;
	}
	.slide-content {
		margin-left: 0;
		padding: 0 15px;
	}
	.slide-content h2 {
		font-size: 35px;
		line-height: 1.5;
	}
	.portfolio-warp .grid-item {
		width: 100%;
	}
	.portfolio-warp .grid-item.grid-wide,
	.portfolio-warp .grid-item.grid-long {
		width: 100%;
	}
	.portfolio-warp .grid-sizer {
		width: 100%;
	}
	.projects-slider {
		padding: 0 15px;
	}
	}

@media only screen and (max-width: 425px) {
    .dropdown-menu.service_dropdown.show {
    top: -309px !important;
}
.intro-text {
    width: 100%;
}
.award-img {
    width: 100%;
}
.award-img img {
    max-width: 400px !important;
}
.logo-area {
    width: 60%;
    padding: 47px 30px 6px;
}
.nav-switch {
    right: -20px;
    top: 50px;
}
h1, .sp-title {
    font-size: 30px;
}
.slide-content {
    margin-left: 0!important;
}
.slide-content h2 {
    font-size: 20px;
}
.image_product {
    top: -44px !important;
    margin-left: 2px !important;
}
.site-btn.sb-light {
    color: #fff;
    display: none!important;
}
.hero-slider .owl-nav {
    bottom: 6px!important;
}
.page-header-section .header-title {
    font-size: 40px;
}
.our-team-hero p {
    font-size: 16px;
}
.team-single-blogs:nth-child(2) {
    margin: 2em 0;
}
.team-single-blogs:nth-child(4){
      margin-top: 2em ;    
}
.footer-section .footer-social {
    right: 60%;
}
.broduct-details-brief {
    padding: 10px;

}
section.services_sec {
    padding: 30px 0;
}
.product-details h1 {
    font-size: 30px;

}
.section-title h1, .section-title h2 {

    font-size: 30px;
}
form {
    width: 100%;
    padding: 0;
}
.contact-form input,
.contact-form textarea {

    padding: 20px 20px;
   
}
.section-title {
    margin-bottom: 40px;
}
.pt-5, .py-5 {
    padding-top: 1rem!important;
}
.nav-menu {
    width: calc(100% - -64px);
}
}