@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');
/*font-family: 'Nunito', sans-serif;*/
*{
    box-sizing: border-box;
}
body{
	margin: 0px;
	/*font-family: 'Nunito', sans-serif;*/
	font-family: 'Calibri';
	padding-top: 140px;
}
body.home{padding-top:0}
button:focus{outline: none;}
input:focus{outline: none;}
a{
    color: #1b70bb;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
ul{
	list-style: none;
	padding-left: 0px;
	margin-bottom: 0px;
	margin: 0px;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Bahnschrift';
}

/*###### comon css start #######*/
.btn-outline-info{
	border-color: #0080c8;
	padding: 8px 15px;
	border-radius: 30px;
	font-size: 16px;
	/*color: #fff;*/
	/*text-transform: uppercase;*/
}
.btn-outline-info:hover{
	border-color: #0080c8;
	background-color: #0080c8;
}
.btn-info{
    color: #fff;
    background-color: #0080c8;
    border-color: #0080c8;
    padding: 8px 15px;
	border-radius: 30px;
	font-size: 16px;
}
.btn-info:hover{
	border-color: #0080c8;
}
.btn-know-more{
	position: relative;
	color: #0080c8;
	font-size: 14px;
	cursor: pointer;
	font-weight: 600;
}

.com-title{
	position: relative;
	width: 100%;
}
.com-title h3{
	position: relative;
	color: #0080c8;
	font-size: 30px;
	margin-bottom: 10px;
	/*font-weight: 500;*/
	/*letter-spacing: 2px;*/
	text-transform: uppercase;
}
.com-title h3 span{
	color: #303030;
}
.com-title p{
	position: relative;
	color: #6c6c6c;
	font-size: 18px;
	/*letter-spacing: 1px;*/
}
.com-heading{
	position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.com-heading h3{
	position: relative;
	color: #000000;
	font-size: 30px;
	font-weight: 500;
}
.com-heading:before{
	content: "";
    position: absolute;
    bottom: 4px;
    width: 70px;
    height: 2px;
    background-color: #009fe0;
    left: 50%;
    transform: translateX(-50%);
}
/*###### comon css end #######*/

/*####### animation #########*/
	@keyframes smoothScroll {
	  0% {
	    transform: translateY(-20px);
	  }
	  100% {
	    transform: translateY(0px);
	  }
	}
/*####### animation end #########*/
/*##### header css start #####*/
.header-wraper{
	position: absolute;
	width: 100%;
	padding: 10px 0px;
	z-index: 10;
	box-shadow: 0 0px 4px -2px rgba(0, 0, 0, .2), 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 0px 10px 0 rgba(0, 0, 0, 0.1);
	font-family: 'Nunito', sans-serif;
	background: #fff;
	left: 0;
	right: 0;
	top: 0;
}

.header-wraper .navbar .logo-wrap .home-logo{
	display: none;
}
.header-wraper.home-header .navbar .logo-wrap .normal-logo{
	display: none;
}
.header-wraper.home-header .navbar .logo-wrap .home-logo{
	display: inline-block;
}
.header-wraper .navbar{
	position: relative;
	width: 100%;
	font-weight: 600;
}
.header-wraper .navbar .navbar-nav li{
	position: relative;
	padding: 0px 1px;
}
.header-wraper .navbar .navbar-nav li:hover .dropdown-menu{
	display: block;
	margin: 0;
}
.header-wraper .navbar .navbar-nav li a{
	font-size: 16px;
	color: #000000;
	text-transform: uppercase;
}
.header-wraper .navbar .header-social{
	position: relative;
	padding-left: 10px;
	margin-left: 0;
}
.header-wraper .navbar .header-social li{
	position: relative;
	display: inline-block;
	padding: 0px 8px;
}
.header-wraper .navbar .header-social li:last-child{
	padding-right: 0px;
}
.header-wraper .navbar .header-social li a{
	color: #000;
	font-size: 18px;
}
/*home header css*/
.header-wraper.home-header{
	position: absolute;
	box-shadow: none;
	background: transparent;
}
.header-wraper.home-header .navbar .navbar-nav li a{
	color: #fefefe;
}
.header-wraper.home-header .navbar .header-social li a{
	color: #fefefe;
}
/* sticky heaser css*/
.header-wraper.sticky {
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: #fefefe;
    top: 0;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 5px 8px 0 rgba(0, 0, 0, .14), 0 1px 14px 0 rgba(0, 0, 0, .12);
    animation: smoothScroll 1s forwards;
    padding: 0;
}
.header-wraper.sticky .navbar .logo-wrap .navbar-brand img{
    height: 62px;
}
.header-wraper.home-header.sticky .navbar .logo-wrap .home-logo{
	display: none;
}
.header-wraper.home-header.sticky .navbar .logo-wrap .normal-logo{
	display: block;
}
.header-wraper.home-header.sticky .navbar .navbar-nav li a{
	color: #000000;
}
.header-wraper.home-header.sticky .navbar .header-social li a{
	color: #000000;
}
/*##### header css end #####*/

/*##### banner css start #######*/
.banner-wraper{
	position: relative;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100vh;
	margin-bottom: 60px;
	background-attachment: fixed;
	background-size: cover;
}
.banner-wraper:before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    background-color: rgba(16, 56, 90, 0.71);
    z-index: 1;
}
.banner-wraper > img{
	position: relative;
	height: 800px;
	object-fit: cover;
}
.banner-wraper .banner-content{
	position: absolute;
	width: 100%;
	left: 0px;
	top: 50%;
	transform: translateY(50%);
	z-index: 9;
}
.banner-wraper .bottom-shape{
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
.banner-wraper .banner-content h1{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 30px;
	color: #fefefe;
	margin-bottom: 0px;
	letter-spacing: 1px;
	/*font-weighct: 300;*/
	text-transform: uppercase;
}
.banner-wraper .banner-content h2{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 60px;
	color: #fefefe;
	margin-bottom: 0px;
	letter-spacing: 1px;
	font-weight: 600;
	/*text-transform: uppercase;*/
}
.banner-wraper .banner-content p{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #fefefe;
	margin-top: 15px;
}
.banner-wraper .banner-content .banner-btn{
	position: relative;
	width: 100%;
	text-align: center;
}
.banner-wraper .banner-content .banner-btn .btn-outline-info{
    padding: 8px 20px;
}
/*##### banner css end #######*/
/*##### services css start #######*/
.services-wraper{
	position: relative;
	width: 100%;
	padding: 0px 0px 40px 0px;
}
.services-list{
	position: relative;
	width: 100%;
	text-align: center;
	padding: 10px;
}
.services-list .icon-box{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.services-list h4{
	position: relative;
	width: 100%;
	font-size: 17px;
	color: #004266;
	/*font-weight: 700;*/
	margin-bottom: 15px;
	text-transform: uppercase;
}
.services-list h4 a{
	color: #004266;
}
.services-list p{
	position: relative;
	width: 100%;
	color: #6c6c6c;
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 10px;
}
/*##### services css end #######*/
/*##### sector css start #######*/
.sector-wraper{
	position: relative;
	width: 100%;
	padding: 20px 0px;
	overflow: hidden;
	background: rgb(0,66,102); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(0,66,102,1) 0%, rgba(0,66,102,1) 53%, rgba(0,128,200,1) 53%, rgba(0,128,200,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(0,66,102,1) 0%,rgba(0,66,102,1) 53%,rgba(0,128,200,1) 53%,rgba(0,128,200,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(0,66,102,1) 0%,rgba(0,66,102,1) 35%,rgba(0,128,200,1) 35%,rgba(0,128,200,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004266', endColorstr='#0080c8',GradientType=1 ); /* IE6-9 */
}
.sector-wraper:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 168px solid transparent;
    border-left: 60px solid;
    border-bottom: 168px solid transparent;
    border-left-color: #004266;
    left: 35%;
    position: absolute;
    top: 20px;
    z-index: 0;
}
.sector-left{
	z-index: 1;
	padding-right: 100px;
}
.sector-left .com-title h3 span{
	color: #fefefe;
}
.sector-left p{
	position: relative;
	width: 100%;
	color: #fefefe;
	font-size: 16px;
	margin-bottom: 15px;
}
.sector-left .btn-outline-info{
	position: relative;
	padding: 8px 25px;
	color: #fefefe;
	text-transform: uppercase;
}


.sector-right .sector-list{
	position: relative;
	width: 100%;
	display: flex;
    flex-wrap: wrap;
}
.sector-right .sector-list li{
	position: relative;
	width: 50%;
	margin-bottom: 15px;
	color: #fefefe;
	font-size: 18px;
}
.sector-right .sector-list li .icon{
	margin-right: 5px;
}
/*##### sector css end #######*/

/*######## sector services css start ##*/
.sector-services-wraper{
	position: relative;
	width: 100%;
	padding: 60px 0px;
	background-color: #f4f4f4;
}

/*######## sector services css end ##*/

/*######## newsletter services css start ##*/
.newsletter-wraper{
	position: relative;
	width: 100%;
	padding: 70px 0px;
	background-color: #0080c8;
}
.newsletter-left{
	position: relative;
	width: 100%;
}
.newsletter-left .com-title h3{
	color: #fefefe;
	letter-spacing: normal;
	font-weight: 700;
}
.newsletter-left .com-title p{
	color: #fefefe;
	margin-bottom: 0px;
	letter-spacing: normal;
}
.newsletter-right{
	position: relative;
	width: 100%;
}

.newsletter-right .newsletter-container{
    position: relative;
    width: 65%;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 30px;
}
.newsletter-right .newsletter-container input[type="email"]{
    position: relative;
    width: calc(100% - 50px);
    border: 0;
    background: transparent;
    color: #ffffff;
    padding: 5px;
}
.newsletter-right .newsletter-container input::placeholder{
	color: #fefefe;
}
.newsletter-right .newsletter-container button{
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 21px;
    width: 40px;
    padding: 0;
}

/*######## newsletter services css end ##*/

/*footer css start*/
.footer-wraper{
	position: relative;
	width: 100%;
	padding: 70px 0 20px;
	background-color: #111111;
}
.footer-inner-wrap{
	position: relative;
	width: 100%;
}
.copyright{
	border-top: 1px solid #1f1f1f;
	padding-top: 20px;
	margin-top: 40px;
	color: #6b6b6b;
	font-size: 14px;
}
.copyright a{
	
	color: #6b6b6b;
}
.footer-inner-wrap .foot-title{
	position: relative;
	width: 100%;
	color: #fefefe;
	font-size: 20px;
	/*font-weight: 600;*/
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footer-inner-wrap h6{
	position: relative;
	width: 100%;
	color: #fefefe;
	font-size: 16px;
	/*font-weight: 600;*/
	margin-bottom: 10px;
}
.footer-inner-wrap p{
	position: relative;
	width: 100%;
	color: #6c6c6c;
	font-size: 18px;
	margin-bottom: 0;
}
.footer-inner-wrap .footer-social{
	position: relative;
	width: 100%;
	margin-left: 0;
}
.footer-inner-wrap .footer-social li{
	position: relative;
	display: inline-block;
	padding: 0px 5px;
}
.footer-inner-wrap .footer-social li a{
	color: #fefefe;
	font-size: 16px;
}
.footer-inner-wrap .footer-social li:first-child{
	padding-left: 0px;
}
.footer-inner-wrap .footer-nav{
	position: relative;
	width: 100%;
	margin-left: 0;
}
.footer-inner-wrap .footer-nav li a{
	position: relative;
	color: #6b6b6b;
	font-size: 18px;
	padding: 4px 0;
	display: block;
}
.footer-inner-wrap .foot-address{
	position: relative;
	width: 100%;
	margin-bottom: 0;
}
.footer-inner-wrap .foot-address p{
	margin-bottom: 5px;
}
.footer-inner-wrap p a{
	color: #0080c8;
	font-size: 18px;
}
/*footer css end*/


/*######## our identity page css start #######*/
.our-identity-wraper{
	position: relative;
	width: 100%;
	padding: 120px 0px 0px;
}
.our-identity-wrap{
	position: relative;
	width: 100%;
}
.our-identity-wrap p{
	position: relative;
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
	color: #000000;
	font-size: 18px;
}
.we-believe-wrap{
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
    margin-bottom: 35px;
    margin-top: 35px;
}
.we-believe-wrap h4{
	position: relative;
	width: 100%;
	text-align: center;
	color: #000000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
.company-focus-wrap p{
	font-weight: 600;
	font-family: 'Bahnschrift';
}
.we-believe-wrap ul{
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.we-believe-wrap ul li{
    position: relative;
    padding: 20px 5px;
    /*background-color: #009fe0;*/
    color: #009fe0;
    font-size: 20px;
    font-weight: 600;
    margin: 0px 10px;
    margin-bottom: 15px;
    font-family: 'Bahnschrift';
}
.company-focus-wrap{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.company-focus-wrap ul{
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.company-focus-wrap ul li{
	position: relative;
    color: #009fe0;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    margin: 0px 30px;
    
    font-family: 'Bahnschrift';
}
.company-focus-wrap ul li:before{
    content: "";
    color: #e2e2e2;
    font-weight: 800;
    font-size: 54px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/*.company-focus-wrap ul li:nth-child(1):before{
	content: "01";
}
.company-focus-wrap ul li:nth-child(2):before{
	content: "02";
}
.company-focus-wrap ul li:nth-child(3):before{
	content: "03";
}*/
.our-identity-wraper .video-box{
	position: relative;
	width: 100%;
}
/*######## our identity page css end #######*/

/*######## our team page css start #######*/
.our-team-wraper{
	position: relative;
	width: 100%;
	padding: 120px 0px 70px;
}
.our-team-list{
	margin-bottom: 100px;
}
.team-list-wrap{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fefefe;
	padding: 15px 15px 15px 15px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.28);
	text-align: center;
	border-radius: 5px;
	transition: 0.5s;
}
.team-list-wrap .team-img{
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #d4d4d4;
    margin: 0 auto;
    margin-top: -76px;
    margin-bottom: 15px;
}
.team-list-wrap h4{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 18px;
	margin-bottom: 8px;
	transition: 0.5s;
}
.team-list-wrap p{
	position: relative;
	width: 100%;
	color: #838383;
	font-size: 15px;
	margin-bottom: 5px;
	transition: 0.5s;
}
.team-list-wrap:hover{
	background-color: #009fe0;
	transition: 0.5s;
}
.team-list-wrap:hover h4,
.team-list-wrap:hover p{
	color: #fefefe;
	transition: 0.5s;
}
/*######## our team page css end #######*/

/*######## our team details css start ######*/
.team-details-left{
	position: relative;
	width: 100%;
}
.team-details-left .img-box {
    position: absolute;
    top: 15%;
    left: 90px;
}
.team-details-right{
	position: relative;
	width: 100%;
}
.team-details-right h4{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 26px;
	/*font-weight: 600;*/
	margin-bottom: 5px;
}
.team-details-right h5{
	position: relative;
	width: 100%;
	color: #707070;
	font-size: 16px;
	margin-bottom: 20px;
}
.team-details-right p{
	position: relative;
    width: 100%;
    color: #000000;
    font-size: 17px;
    line-height: 26px;
}
/*######## our team details css start ######*/

/*######## our services css start ###########*/
.services-main-wraper{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.services-main-wraper .filters .is-checked{
	font-weight: bold;
}
.filters{
	display: flex;
	justify-content: space-between;
}
.services-wrap{
	position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.24);
    border-radius: 3px;
}
.services-wrap .icon{
	width: 80px;
	margin-right: 10px;
}
.services-wrap h4{
	position: relative;
	width: calc(100% - 90px);
	margin-bottom: 0px;
	color: #000000;
	font-size: 19px;
	font-weight: 600;
}
/*######## our services css end ###########*/

/*######## services details start #########*/
.services-top-details-wraper{
	position: relative;
	width: 100%;
	padding: 40px 0px;
}
.services-details-left{
	position: relative;
	width: 100%;
}
.services-details-left .com-heading{
	text-align: left;
}
.services-details-left .com-heading:before{
	left: 0;
	transform: translateX(0%);
}
.services-details-left p{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 16px;
	margin-bottom: 10px;
}
.services-details-left .contact-info{
	position: relative;
	width: 100%;
	margin-top: 20px;
}
.services-details-left .contact-info p{
	margin-bottom: 5px;
	line-height: normal;
}
.services-details-left .contact-info .ing-box{
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #d4d4d4;
}

.services-details-dec-wraper{
	position: relative;
	width: 100%;
	padding: 70px 0px;
	background-color: #ebf1f3;
}
.services-details-dec-box{
	position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
    background-color: #fefefe;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
.services-details-dec-box h4{
	position: relative;
	width: 100%;
	color: #009fe0;
	font-size: 18px;
	/*font-weight: 600;*/
	margin-bottom: 15px;
}
.services-details-dec-box .dec{
	position: relative;
    width: 100%;
    height: 145px;
    overflow: auto;
}
.services-details-dec-box .dec p{
	position: relative;
    width: 100%;
    color: #000000;
    font-size: 16px;
    margin-bottom: 10px;
    /*font-weight: 600;*/
    line-height: 24px;
}
.services-details-dec-box .dec::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.services-details-dec-box .dec::-webkit-scrollbar{
	width: 4px;
	background-color: #F5F5F5;
}
.services-details-dec-box .dec::-webkit-scrollbar-thumb{
	background-color: #7f7f7f;
}

.services-project-wraper{
	position: relative;
	width: 100%;
}
.services-project-wraper h4{
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}
.projects-slider-wrap{
	position: relative;
	width: 100%;
}
.projects-slider-wrap .project-title{
	position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 24px 10px;
    background-color: rgba(0, 0, 0, 0.60);
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
/*arrow css*/
#projects-slider .owl-dots{
    display: none;
}
#projects-slider .owl-nav {
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
}
#projects-slider .owl-nav .owl-prev {
    position: absolute;
    left: 1%;
}
#projects-slider .owl-nav .owl-next {
    position: absolute;
    right: 1%;
}
#projects-slider .owl-nav button{
    background: #000000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.19);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.5s;
    text-align: center;
}
#projects-slider .owl-nav button span{
    font-size: 18px;
    color: #009fe0;
    transition: 0.5s;
}
#projects-slider .owl-nav button:hover{
    background: #fff;
	transition: 0.5s;
}
#projects-slider .owl-nav button:hover span{
	color: #009fe0;
	transition: 0.5s;
}
/*arrow end*/
/*######## services details end #########*/

/*############# our story css start ################*/
.our-story-wraper{
	position: relative;
	width: 100%;
	padding: 40px 0px 0px 0px;
}
.story-left{
	position: relative;
	width: 100%;
}
.story-left .img-box{
	position: absolute;
    bottom: -2px;
}
.story-right{
	position: relative;
	width: 100%;
}
.story-right > h4{
    position: relative;
    width: 100%;
    color: #009fe0;
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.story-right .com-heading{
	position: relative;
	text-align: left;
	margin-bottom: 30px;
}
.story-right .com-heading:before{
	left: 0%;
    transform: translateX(0%);
}
.story-right p{
	position: relative;
    width: 100%;
    color: #000000;
    font-size: 17px;
    line-height: 26px;
}
.story-right .story-btn-wrap{
	position: relative;
	width: 100%;
}
.story-right .story-btn-wrap .btn{
    padding: 10px 30px;
    margin-right: 5px;
}
/*############# our story css end ################*/

/*############# sectors css start ################*/
.sectors-wraper{
	position: relative;
	width: 100%;
	padding: 70px 0px;
}
.sectors-top-wrap{
	position: relative;
	width: 100%;
	text-align: center;
}
.sectors-top-wrap p{
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #000000;
    font-size: 18px;
}

.sectors-projects-list{
	position: relative;
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.34);
    border-radius: 3px;
    border:1px solid transparent;
    transition: 0.5s;
}
.sectors-projects-list:hover{
	border:1px solid #009fe0;
	transition: 0.5s;
}
.sectors-projects-list .title{
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.sectors-projects-list .title .icon{
	position: relative;
	width: 60px;
	margin-right: 10px;
}
.sectors-projects-list .title h4{
	position: relative;
	width: calc(100% - 70px);
	margin-bottom: 0px;
	color: #009fe0;
	font-size: 18px;
	/*font-weight: 600;*/
}
.sectors-projects-list p{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 16px;
	/*font-weight: 600;*/
	margin-bottom: 10px;
}
/*############# sectors css end ################*/
/*############# sectors details css start ################*/
.sectors-details-banner{
	position: relative;
	width: 100%;
}
.sectors-details-banner:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	left: 0; top:0;
}
.sectors-details-banner img{
	height: 400px;
	object-fit: cover;
}
.sectors-details-banner-contant{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}
.sectors-details-banner-contant h1{
	position: relative;
	color: #fffefe;
	font-size: 50px;
	margin-bottom: 0px;
}
.sectors-details-banner-contant h1:before{
	content: "";
    background-image: url(../images/sectors-details-banner-shape1.png);
    width: 180px;
    height: 60px;
    position: absolute;
    background-repeat: no-repeat;
    opacity: 0.5;
    background-position: center top;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90%;
}
.sectors-details-banner-contant h1:after{
	content: "";
    background-image: url(../images/sectors-details-banner-shape2.png);
    width: 180px;
    height: 60px;
    position: absolute;
    background-repeat: no-repeat;
    opacity: 0.5;
    background-position: center top;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}
.sectors-details-wraper{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.sectors-details-wraper p{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 18px;
	margin-bottom: 15px;
}
.sectors-details-wraper .btn-info{
	position: relative;
	padding: 8px 45px;
	font-size: 18px;
}
/*############# sectors details css end ################*/

/*############# sectors project details css start ################*/
.sectors-project-details-wraper{
	position: relative;
	width: 100%;
	padding: 50px 0px;
}
.project-details-left{
	position: relative;
	width: 100%;
}
.project-details-left h3{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 40px;
	margin-bottom: 15px;
	font-weight: 600;
}
.project-details-left .img-box{
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.34);
    text-align: center;
    padding: 25px 15px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-details-right{
	position: relative;
	width: 100%;
}
.project-details-right ul{
	position: relative;
	width: 100%;
	display: block;
}
.project-details-right ul li{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.project-details-right ul li .title{
	position: relative;
	width: 40%;
}
.project-details-right ul li .title:after{
	content: ":";
	position: absolute;
	right: 30px;
	top: -5px;
	font-size: 20px;
	color: #808080;
}
.project-details-right ul li .title h4{
	position: relative;
	width: 100%;
	font-size: 20px;
	color: #808080;
	margin-bottom: 0px;
	/*font-weight: 600;*/
}
.project-details-right ul li .details{
	position: relative;
	width: 60%;
}
.project-details-right ul li .details h4{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 20px;
	margin-bottom: 0px;
	/*font-weight: 600;*/
}
.project-details-right--modify p{
	position: relative;
	width: 100%;
	color: #000000;
	font-size: 20px;
	font-family: 'Bahnschrift';
	font-weight: 500;
	line-height: 1.2;
}
.project-img-box{
	position: relative;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
/*############# sectors project details css end ################*/
/*############# contact us css start ################*/
.contact-us-wraper{
	position: relative;
	width: 100%;
	padding: 60px 0px;
}
.contact-left-img{
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.contact-right-sec{
	position: relative;
	width: 100%;
	height: 90%;
	margin-top: 5%;
	background-color: #66616126;
    padding: 15px;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.24);
}
.cont-info-wrap{
	position: relative;
	width: 60%;
	top: 37px;
}
.cont-info-wrap h4{
	position: relative;
	width: 100%;
	font-size: 18px;
	color: #0080c8;
	/*font-weight: 600;*/
	margin-bottom: 10px;
}
.cont-info{
	position: relative;
	width: 100%;
	margin-bottom: 0px;
	margin-left: 0;
}
.cont-info li{
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.cont-info li .icon{
	position: relative;
	width: 35px;
}
.cont-info li .info{
	position: relative;
	width: calc(100% - 35px);
}


.contact-middle-info-wraper{
	position: absolute;
	top: 0;
	height: 100%;
	width: 118%;
	left: -18%;
	background-color: #fff;
	padding: 25px 20px;
	border-radius: 5px;
}
.contact-middle-info-wrap{
	position: relative;
	width: 100%;
	display: flex;
}
@media (max-width: 768px){
	.contact-middle-info-wrap{
		flex-direction: column;
		gap: 40px;
	}
}
.contact-middle-info-wrap p{
    margin-bottom: 15px;
}
.contact-middle-info-wrap .com-heading{
	position: relative;
	width: 100%;
	text-align: left;
}
.contact-middle-info-wrap .com-heading:before{
    left: 0%;
    transform: translateX(0%);
}
.contact-middle-info-wrap .cont-info-wrap{
	width: 100%;
	top: 0;
}
.contact-middle-info-wrap .cont-info-wrap .btn-info{
	padding: 10px 25px;
}
.contact-middle-info-wrap .cont-info-wrap .btn-info a{
	color: #fff
}
/*############# contact us css end ################*/


.copyright{
	position: relative;
}

#back-to-top {
    position: absolute;
    bottom: 0;
    right: 6px;
    z-index: 9999;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 30px;
    color: #444;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 1;
}
.logo-box--modify{
	    position: relative;
    width: 100%;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.34);
    text-align: center;
    padding: 25px 15px;
}
.logo-more{
	font-family: 'Bahnschrift';
	font-size: 18px;
	color: #000;
}
body.postid-207 .healthcare-projecs{
	display: none;
}
.sercive-top-wrap p {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #000000;
    font-size: 18px;
}
.project-container{margin: 0 -1%;width: 100%;}
.project-container > div{width: 31%;height: 200px;margin: 1%;}
.project-container > div > div{
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #aaa;
}
.project-container .services-wrap{
    box-shadow: 0 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0000002e;
	transition: all 0.5s;
}
.project-container .services-wrap:hover{
    background-color: #000000b8;
}
.home-project-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-project-container .project-card-home{
    width: 25%;
    display: flex;
}
.home-project-container .project-card-home .services-list{
    padding: 6px;
    width: 100%;
}
.home-project-container .project-card-home .bg-image{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-project-container .project-card-home .bg-image a{
	position:absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00000024;
	padding: 0 20px;
	transition:all 0.5s;
}
.home-project-container .project-card-home .bg-image a:hover{
    background: #000000b3;
}
.home-project-container .project-card-home .service-title h4 {
    color: white;
    font-size: 25px;
}
#clients .logo-box--modify{
    box-shadow: 0 0;
    border: 1px solid #eee;
    width: 23%;
    display: flex;
    margin: 0 7px;
    padding: 0 0px;
    justify-content: center;
    align-items: center;
    min-height: 110px;
}
#clients .healthcare-projecs{
    display: flex;
    flex-wrap: wrap;
}
#clients .healthcare-projecs .logo-box img {
    width: auto !important;
    height: 70px !important;
}
.poject-gallery{
    /*display: flex;
    flex-wrap: wrap;*/
}
.poject-gallery .logo-box{
/*    width: 50%;*/
    padding: 0px 15px 30px;
}
.poject-gallery .logo-box img{
    width: 100% !important;
    height: auto !important;
}
.poject-gallery-slider{width: 100%;max-width: 100%;margin-top: 20px;}
.poject-gallery-slider .slick-track{float: left;}
.prject-gallery-photo-single{padding: 0px 15px 0px;}

.cboxPhoto{
	max-width: 70vw !important;
	height: auto !important;
}
.poject-gallery-slider .slick-arrow{
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -30px;
    background: url(../images/controls.png) no-repeat 0 0;
}
.poject-gallery-slider .slick-arrow:hover{background-color:#eee}

.poject-gallery-slider .slick-prev.slick-arrow{
	background-position: 0px 0px;
	right: 0;
}
.poject-gallery-slider .slick-next.slick-arrow{
	background-position: -25px 0px;
	right: 10px;
}
@media (max-width: 1000px){
	#clients .logo-box--modify{
		width: 30%;
	}
	.home-project-container .project-card-home{
		width: 50%;
	}
	.our-team-list .team-list-wrap-new{
		width: 30% !important;
	}
}
@media (max-width: 800px){
	#clients .logo-box--modify{
		width: 45%;
	}
	.project-container > div{width: 48%;height: 120px;margin: 1%;}
	.project-container > div .services-wrap h4{
		font-size: 20px;
		width: auto;
	}
	.our-team-list .team-list-wrap-new{
		width: 30% !important;
	}
}
@media (max-width: 780px){
	.home-project-container .project-card-home .bg-image{
		height: 100px;
	}
	.home-project-container .project-card-home .service-title h4{
		font-size: 20px;
	}
	.poject-gallery .logo-box{
		padding-bottom: 20px;
	}
	.our-team-list .team-list-wrap-new{
		width: 46% !important;
	}
}
.poject-gallery-slider .slick-prev.slick-arrow{
	background-image: url(../images/pager-prev-ic.svg);
	top: 0;
	z-index: 99;
	left: -28px;
	background-position: 50% 50%;
	background-size: 28px;
	width: 30px;
	bottom: 0;
	height: 100%;
}
.poject-gallery-slider .slick-next.slick-arrow{
	background-image: url(../images/pager-next-ic.svg);
	top: 0;
	z-index: 99;
	background-position: 50% 50%;
	right: -28px;
	background-size: 28px;
	width: 30px;
	height: 100%;
}

.ourstory-grid-images{
	display: flex;
	gap: 20px;
	padding: 20px 0 0;
}
.ourstory-grid-images .ourstory-single-image{}
.ourstory-grid-images .ourstory-single-image img{
	max-height: 300px;
	object-fit: cover;
}
@media (max-width: 600px){
	.ourstory-grid-images{
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}
	.ourstory-grid-images .ourstory-single-image img{
		max-height: 200px;
		object-fit: cover;
	}
}

.sector-grid-view{
	display: flex;
	flex-wrap: wrap;
	row-gap: 15px;
	justify-content: flex-start;
	width: 100%;
	column-gap: 15px;
}
.sector-grid-view .sector-grid-single{
    width: 32%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 250px;
    background-position: 50% 50%;
}
.sector-grid-view .sector-grid-single h4{}
.sector-grid-view .sector-grid-single p{
    margin: 0 0 10px;
    line-height: 130%;
    color: #fff;
    text-align: center;
    font-size: 16px;
}
.sector-grid-view .sector-grid-link{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px;
    color: #fff;
    /*background: #0000002e;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	transition: all 0.5s;
}
.sector-grid-view .sector-grid-link:hover {
    background: #000000b3;
}

@media (max-width: 991px){
	.sector-grid-view .sector-grid-single{
		width: 48%;
		height: 180px;
	}
}
@media (max-width: 600px){
	.sector-grid-view .sector-grid-single h4{
		font-size: 1.2rem;
	}
	.sector-grid-view .sector-grid-single p{
	    line-height: 124%;
	    font-size: 14px;
	}
	.sector-grid-view .sector-grid-link{
		padding: 10px;
	}
}
.csr-images{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.csr-images .csr-single-image{
    width: 49%;
    margin-bottom: 1%;
}
.csr-images .csr-single-image img{
    object-fit: cover;
    height: 200px;
    width: 100%;
    transform: translate3d(0, 0, 1px);
}

.banner-wraper h2, .banner-wraper p {
    transition: transform 0.5s ease-out, font-size 0.5s ease-out;
    top: 0;
    position: relative;
}

/* Scroll-triggered Animation */
.shrink-animation h2 {
    font-size: 1.2rem; /* Reduced size */
    transform: scale(0.8);
    top: 40px;
}

.shrink-animation p {
    font-size: 1.5rem; /* Reduced size */
    transform: scale(0.8);
    top: 40px;
}