
*{
	margin:0;
	padding:0;
    box-sizing: border-box;
}

@font-face{
    font-family:'poppins';
    src: url('fonts/poppins/poppins-regular-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family:'poppinsblack';
    src: url('fonts/poppins/poppins-black-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family:'poppinslight';
    src: url('fonts/poppins/poppins-light-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'poppinssemibold';
    src: url('fonts/poppins/poppins-semibold-webfont.woff2') format('woff2'),
         url('fonts/poppins/poppins-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

ul li{
	list-style-type:none;
}
a{
	text-decoration:none;
}

h2{
	line-height: 1.2;
    font-weight: 500;
}

body{
	font-family:'poppins';
}

body p{
	font-size: 14px;
	padding-bottom: 10px;
    line-height: 22px;
}

.wrapper{
	margin:0px;
	padding:0px;
	overflow: hidden !important;
}

.full-width{
	width:100%;
	float:left; 
}

.min-width{
	width: 90%;
    float: left;
    margin: 0 5%;
}

.hr
{
	width: 100%;
    height: 3px;
    float: left;
    background: #848484;
    border-radius: 50%;
	position:relative;
	z-index:99;
	
}
.heading{
	width: 100%;
    display: inline-block;
    float: left;
    text-align: center;
    margin-bottom: 30px;
}

.heading h2{ 
    padding: 5px 45px;
    display: table;
    margin: auto;
    position: relative;
    letter-spacing: 2px;
    border-radius: 0px;
    background: #0061ae;
    text-transform: uppercase;
    font-size: 22px;
    font-family: 'poppins';
    color: #FFFFFF;
	z-index:1;
}
.heading h2:before, .heading h2:after{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    background: #0061ae;
    z-index: -1;
}
.heading h2:before{
	
    right: -14px;
    transform: skewX(-30deg);
    border-radius: 0px 0px 4px;
}

.heading h2:after{
    left: -14px; 
    transform: skewX(30deg); 
    border-radius: 0px 0px 0px 4px;
} 
.heading span{
    font-family:'poppinsblack';
}

.heading.whiteHeading h2{
	color:#0061ae;
	background:#fff;
}
.heading.whiteHeading h2:before, .heading.whiteHeading h2:after{
	background:#fff;
}

.white{
	color:#fff;
}

/*main-header
-----------------------------*/
.main-header{
	width:100%;
	z-index:9999;
	overflow: hidden;
	float:left; 
	position:fixed;
	background: #0061ae;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	align-items:center;
}

.main-header, .main-header *{
	transition:all 300ms ease-in-out;
}

.logo{
	width: 180px;
    margin-left: 5%;
    float: left;
    z-index: 9;
}

.imgBox{
	width:100%;
	float:left;
	position:relative;
}

.logo img{
	width:100%;
	display:inline-block;
}
.navigation{
	/*width:60%;*/
    text-align:center;
	display:flex;
	align-items:center;
	justify-content:flex-end;
	padding-right:5%;
}

.navigation ul
{
	display:inline-block;
}

.navigation ul li{
	width:auto;
	display:inline-block;
	margin:0 -2px;
}

.navigation > ul > li{
	margin:0 5px;
}

.navigation ul li a{
	display: block;
    padding: 8px;
    color: #fff;
    font:17px 'poppinssemibold';
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    transition: all 400ms ease-in-out;
    outline: none;
    text-transform: uppercase;
}

.navigation ul li a:hover{
	color:rgba(255, 255, 255, 0.65);
}

.navigation .topSocials{
	margin-left:25px;
	padding-left:30px;
	border-left:1px solid rgba(255,255,255,0.35);
}

.navigation .topSocials li{
	margin:0 -2px;
}

.navigation .topSocials li a{
	padding:0;
}

.main-header.fixed{
	box-shadow:0 5px 10px rgba(0,0,0,0.19);
}

.main-header.fixed .logo{
	width:120px;
}
 

/*banner
---------------------------*/

.playBtn{
	position:absolute;
	left:50%;
	top:35%;  
	text-align:center;
	transform:translateX(-50%);
	z-index:9;
	/*text-shadow:2px 2px 0px #0061ae;*/
}
.playBtn:before{
	content:'';
	width:20px;
	height:20px;
	position:absolute; 
	background:#FFFFFF;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	z-index:-1;
}
.playBtn i{ 
	color:#d42622; 
	font-size:60px;
	cursor:pointer;
	z-index:99;
}
.playBtn:hover:before{
	content:'';
	width:20px;
	height:20px;
	position:absolute; 
	background:#d42622;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	z-index:-1;
}
.playBtn:hover i{  
	color:#fff;
	/*text-shadow:2px 2px 0px #d22d4d;*/
}


.popup-overlay{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	bottom:0;
	z-index:9999999;
	display:none;
}

.popup-overlay::before{
	content:'';
	position:fixed;
	top:0;
	bottom:0;
	width:100%;
	left:0;
	right:0;
	background:rgba(0, 0, 0, 0.78) !important;
	z-index:-1;
}

.popupContainer{
	width:70%;
	height:40vw;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	float:left;
	position:fixed;
	box-sizing:border-box;
	padding:0px;
}

.popup-close{
	position: absolute;
	font-weight: bold;
	z-index: -1;
	right: 0;
	top: -28px;
	width:30px;
	line-height:30px;
	cursor: pointer;
	box-sizing: border-box;
	background: #ffffff;
	text-align:center;
}
.pop
{
	width:100%;
	position:relative;
	height:100%;
	border:2px solid #fff;
	background:#000;
}
.pop iframe{
	width:100%;
	height:100%;
	display:block;
}
@media screen and (max-width:900px)
{
	.pop iframe{
		width:100%;
		height:100%;
		display:block;
	}

}
@media screen and (max-width:500px)
{
.popup-box {
    width: 90%;
}

.pop
{
	width:100% !important;
}
}

.banner{
	width:100%;
	float:left;
	position:relative;
	z-index:1;
	height:36vw;
	background:#fff;
}

.mainBanner{display:block;}
.tabBanner{display:none;}

.banner.bannerZindex{
	z-index:9999;
}

.sliderContainer{
	width:75%;
	float:left;
	position:fixed;
	left:0; 
	top:66px;
	height:36vw;
	transition:all 300ms linear;
}

.bannerSlider{
	width:100%!important;
	float:left;
	height:100% !important;
	position:relative;
}

.bannerSlider li{
	position:relative;
	width:100% !important;
	height:100% !important;
	background-size:cover !important;
	background:center no-repeat right;
}
.bannerSlider li img{ 
	width:100% !important;
	height:100% !important;
	object-fit:cover;
}
.main-banner img.mbSlide{
	display:none;
}
.pager{
	position:absolute;
	top:50%;
	right:20px;
	transform:translateY(-50%);
	z-index:999;
	display:block; 
	border-radius:50px;
}

.pager a{
	display:block;
	vertical-align:middle;
	width: 12px;
    height: 12px;
	margin:5px 0;
	background:#FFFFFF; 
	cursor:pointer;
	text-indent:99999999px;
	box-shadow:0 0 5px rgba(0,0,0,0.53);
}

.pager a.activeSlide{
	background:#d9233f;
}

.main-banner{display:block;}
.tab-banner{display:none;}

.main-section{
	background:#fff;
	position:relative;
	z-index:9;
}
.aboutUs
{
	position:relative;
	z-index:99;
	background:#FFFFFF;
}
.overviewBox
{
	width: 100%;
    float: left;
    position: relative;
    padding:0 5% 50px;
	text-align:center;
	
}

.overviewBox h2{
	display:block;
	padding-bottom:20px;
	color:#0061ae;
}

.products{
	background:#0061ae;
	position:relative;
	z-index:99;
	
}


.hm-projectSliderContainer
{
	width:100%;
    float: left;
    margin: 0px 0px 30px;
}   
.projectBox{      
	width: 100%;
    float: left;
    padding: 0px;
    margin: 0px .5%;
}

/*.projectBox#box1{
	transform:translate(200px,20px);
}

.projectBox#box3{
	transform:translate(-200px,20px);
}

.projectBox:last-child, .projectBox:nth-last-child(2){
	width:50%;
}*/

.projectBox a{
	float:left;
	width:100%;
	position:relative;
	overflow:hidden;
	text-align:center;
	z-index:1;
}

/*.projectBox a:before{
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.59);
    z-index: 1;
}*/

.projectBox a .imgBox{
	-webkit-transition:all 10s;
	-o-transition:all 10s;
	-moz-transition:all 10s;
	-ms-transition:all 10s;
	transition:all 3s;
}

.projectBox a .imgBox img{
	width:100%;
}
.projectBox a:hover .imgBox{
	-webkit-transform:scale(1.8,1.8);
	-o-transform:scale(1.8,1.8);
	-moz-transform:scale(1.8,1.8);
	-ms-transform:scale(1.8,1.8);
	transform:scale(1.5,1.5);
	opacity:0.5;
}
.projectBox a h2
{
	color: #fff;
    text-transform: uppercase;
    font-size: 1.6vw;
    line-height: 30px;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	text-align:center;
	background-color: rgba(0, 97, 174, 0.74);
    padding: 10px;
    -webkit-transition: all .5s ease-in-out;
}

.projectBox a:hover h2{
	bottom:calc(100% - 50px);
}

.projectBox a .proTxt
{
	position: absolute; 
    width:100%;
    left:0;
    bottom:-100%;
    padding: 10px 20px;
    z-index: 9;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
	transition-delay:.3s;
}
.projectBox a:hover .proTxt
{ 
    bottom:20px; 
}

.projectBox a .proTxt span
{
	color: #fff;
    font-size: 13px;
    line-height: 16px;
    margin: 20px 0px;
    display: block;
	text-shadow: 1px 1px #000000;
	opacity:0;
	visibility:hidden;
}
.projectBox a:hover .proTxt span
{
	opacity:1; 
	visibility:visible;
}
.projectBox a h3{ 
	cursor:pointer;
	color: #fff; 
    border-radius: 20px;
    background: #d12e4d;
    padding: 5px 20px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
	transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
    
}
.projectBox a:hover h3{
	 background: #d8163b;
	 letter-spacing: 1px;
}

.projectBox#box4 .imgBox{
	filter:blur(3.5px);
}

.projectBox#box4 .proTxt h5{
	color:#fff;
	font-size:2vw;
}


.hm-projectSlider .owl-dots{
    text-align: center;
    width: 100%;
    float: left;
    top: 10px;
    position: relative;	
	display: block !important;
}
.hm-projectSlider .owl-dots .owl-dot span {
    width: 10px;
    height: 7px;
    margin: 5px 7px;
    background: #BFBFBF;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
	border:none !important;
	outline:none !important
	
	
}
.hm-projectSlider .owl-dots .owl-dot.active, .hm-projectSlider .owl-dots .owl-dot:hover {
     border:none !important;
	outline:none !important
}
.hm-projectSlider .owl-dots .owl-dot.active span, .hm-projectSlider .owl-dots .owl-dot:hover span {
      background:#FFFFFF;
	  width: 26px;
} 

.hm-projectSlider.owl-carousel .owl-nav.disabled {
    display: block !important;     
}
.hm-projectSlider.owl-carousel .owl-nav .owl-next, .hm-projectSlider.owl-carousel .owl-nav .owl-prev { 
	top: 50%;
    position: absolute;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: no-repeat center;
    font-size: 0px;
    opacity: 1;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
    outline: none !important; 
}
.hm-projectSlider.owl-carousel .owl-nav .owl-prev {
    left: -50px;
    background: url(images/arrow-left-w.png) center;  
}
.hm-projectSlider.owl-carousel .owl-nav .owl-next {
    right: -50px;
    background: url(images/arrow-right-w.png) center;
} 
.hm-projectSlider.owl-carousel .owl-nav .owl-next:hover, .hm-projectSlider.owl-carousel .owl-nav .owl-prev:hover {  
    opacity:1;
}

.sirContainer{
	display:flex;
	align-items:center;
	background:#fff;
	position:relative;
	box-shadow:0 5px 10px rgba(0,0,0,0.19); 
	z-index:99;
}

.profileBox
{
	width: 65%;
    float: left;
    padding:49px 30px 49px 5%;
    /* height: 300px;
    background: #0061ae; */
} 
.profileBox .proImg{
	width:30%;
	float:left;
} 
.profileBox .proImg img{
	width: 180px;
    /* height: 180px; */
    border-radius: 50%;
    border: 3px solid #fff;
}
.profileBox .proTxt{
	width:70%;
	float:left;
}
.profileBox .proTxt .sub-profileBox{
	    display: flex;
    justify-content: center;
    align-items: center;
}
.profileBox .proTxt h3{
	/*color: #fff;*/
    font-size: 22px;
    font-weight: 100;
    line-height: 24px;
	margin-top: 20px;
}
.profileBox .proTxt h4{
	margin-top: 40px;
    /*color: #fff;*/
    font-size: 19px;
    font-weight: 100;
}
.profileBox .proTxt span{
	font-size: 14px;
    /*color: #fff;*/
    margin-top: 7px;
    display: block;
}
.FrmBox
{
	padding: 0px 25px;
    width: 35%;
    float: left;
	padding-right: 5%;
    padding-left: 7px;
} 
.FrmBox .formBox{
	width: 100%;
    float: left;
    background: #d22d4d;
    padding:40px 20px;
}
.FrmBox .formBox span{   
	width: 100%;
    color: #FFFFFF;
    font:16px 'poppinssemibold';
    float: left;
    padding: 0px 0px 10px 5px;
}

.fields{
	width:100%;
    float: left;
    padding:5px;
}

.fields label{
	font-size:13px;
	color:#fff;
}

.fields input, .fields textarea, .fields select{
	width: 100%;
    padding: 7px 10px;
    outline: none;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    color:#666;
	background:#fff;
	font-family: 'poppins';
	border:1px solid transparent;
}

.fields select{padding:6px 10px;}

.fields input::placeholder, .fields textarea::placeholder{
	color:#666;
	font-size:12px;
}

.fields input:focus, .fields textarea:focus, .fields select:focus{
}

.fields input.submit{
	 width: auto; 
    color:#fff;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background: #000;
    border-radius: 20px;
    border: none;
    padding: 7px 30px;
}

.fields input.submit:hover{
    background:#fff;
	color:#000;
}

.fields p{
	display:inline-block;
	vertical-align:middle;
	color:#000;
	padding-left:10px;
}

.fields p a{ 
    color:rgb(240, 52, 58);
}

.fields p a:hover{
	color:#000;
}
.focus-red:focus {
	background: #ff7676 !important;
    color: #fff !important;
}
.focus-red:focus::-webkit-input-placeholder { 
  color:#FFFFFF;
}
.focus-red:focus::-moz-placeholder { 
  color:#FFFFFF;
}
.focus-red:focus:-ms-input-placeholder { 
  color:#FFFFFF;
}
.focus-red:focus:-moz-placeholder {
  color:#FFFFFF;
}

.fields textarea {
    width: 100%;
    padding: 5px;
    outline: none;
    font-size: 13px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.footerSection{
	background: #0061ae;
    /*margin-top: 8px;*/
    padding: 25px 0px;
	position:fixed;
	bottom:0;
	left:0;
}
.footerSection p{
	padding:0px;
}
.footLeft
{
	width: 60%;
    float: left;
    padding-right: 2%;
}
.footLeft .footLogo 
{
	width:175px;
	float:left;
}
.footLeft .footLogo  img
{
	width:100%;
}
.footLeft .footCont{
	width: calc(100% - 175px);
    float: left;
    padding-left: 20px;
    color: #fff;
}
.footLeft .footCont a
{
	color: #fff;
}
.footLeft .footCont a:hover{
	text-decoration:underline;
}
.footRight
{
	width: 40%;
    float: right;
}
.footRight p
{
	color: #fff;
	text-align:right;
}
.bottomSocials
{
	width: 100%;
    float: right;
    text-align: right;
} 
.Socials li{display:inline-block;}
.Socials li a i{
	color: #fff;
    display: block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.Socials li a:hover i{color:rgba(255, 255, 255, 0.65);}
.maintopSocials{
	display:none;
	margin-top:40px;
	text-align:left;
}
.maintopSocials.Socials li a{
	display:block;
	padding:10px;
}
.maintopSocials.Socials li a i{
	color:#0061ae;
}


/************parallax****************/
.scaleTranslate{
	-webkit-transform:scale(0,0);
	transform:scale(0,0);
	opacity:0;
	-webkit-transition:all 800ms;
	transition:all 800ms;
}

.doneScaleTranslate{
	-webkit-transform:scale(1,1);
	transform:scale(1,1);
	opacity:1;
}

.leftTranslate{
	-webkit-transform:translate(-200px, 0);
	transform:translate(-200px, 0);
	opacity:0;
	-webkit-transition:all 600ms;
	transition:all 600ms;
}

.rightTranslate{
	-webkit-transform:translate(200px, 0);
	transform:translate(200px, 0);
	opacity:0;
	-webkit-transition:all 600ms;
	transition:all 600ms;
}

.topTranslate{
	-webkit-transform:translate(0, -100px);
	transform:translate(0, -100px);
	opacity:0;
	-webkit-transition:all 600ms;
	transition:all 600ms;
}

.bottomTranslate{
	-webkit-transform:translate(0, 200px);
	transform:translate(0, 200px);
	opacity:0;
	-webkit-transition:all 1000ms;
	transition:all 1000ms;
}

.doTranslate{
	-webkit-transform:translate(0, 200px);
	transform:translate(0, 200px);
	opacity:0;
	-webkit-transition:all 500ms;
	transition:all 500ms;
}

.doneTranslate{
	-webkit-transform:translate(0, 0);
	transform:translate(0, 0);
	opacity:1;
}
/************parallax****************/


/*----------------------------tab-menu--------------------------*/
.tab-menuBox
{
	width: 30px;
    float: right;
    display: none;
    position: absolute;
    height: 23px;
    cursor: pointer;
    top: 50%;
	transform:translateY(-50%);
    right: 5%;
    z-index: 999;
} 

.tabDropMenuHidden{
	display:none;
}
/*.tab-menuBox.active2{  
	position: fixed;
}*/

.tab-menuBox.active2 .outer .inner1 .square {
	display:none;
}
.tab-menuBox.active2 .ln--first { 
	display: none;
}

.tab-menuBox.active2 .ln--last { 
	display: none;
}
.tab-menuBox.active2  .ln--long { 
	transform: rotate(45deg) !important; 
	top:9px;
}
.tab-menuBox.active2  .ln--short { 
	transform-origin: initial;
	transform: rotate(-45deg) !important;
}

.tab-menuBox.active2 .outer .inner1 .ln {
	background: #ffffff !important;
	width: 100%;
	-webkit-transform: translateX(0px);
	-o-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

.tab-menuBox  span {
	display: inline-block;
	box-sizing: border-box;
}
.tab-menuBox .outer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding:0px; 
}
.tab-menuBox .outer .inner1 {
	width: 100%;
	height: 100%;
	position: relative;
	display: inline;
}

.tab-menuBox .outer p {
	color: #000;
	bottom: 0;
	right: 10px;
	letter-spacing: 1px;
	position: absolute;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 8px;
	transition: color .4s;
}
.tab-menuBox .ln {
	height: 2px;
    margin: 3px 0px;
	background:#fff;
	width: 100%;
	transition: all .6s;
	float: left;
}
.tab-menuBox .ln--first {
	position: relative;
	width: 100%; 
}
.tab-menuBox .ln--long{
	position: relative;
	width:100%;
}
.tab-menuBox .ln--short {
	position: relative;
	width:100%;
	-webkit-transform: translateX(0px);
	-o-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	transform-origin: left;
  
}    
.tab-menuBox:hover .outer .inner .ln {
	background:#dab980;
} 
.tabDropMenu.tab-menu-scroll{
	right:0px;
} 
.tabDropMenu dl {
    width: 100%;
    top: 10px;
    left: 3%;
    position: absolute;
}
.tabDropMenu dl dd {
    padding: 0 10px;
    text-align: center;
    display: inline-block;
    font-size: 13px;
    border-right: 1px solid #acacac;
}
.tabDropMenu dl dd:nth-last-child(1)
{
	border-right:none;	
} 
.tabDropMenu dl dd a {
   color: #acacac;
}
.tabDropMenu dl dd a i
{
	color: #acacac;
	margin-right: 4px;
}
.tabDropMenu.tab-menu-scroll > ul{
	right:0px;
}  
.tabDropMenu{ 
	width:50%;
    top: 0;
    right: -100%;
    bottom: 0;
    background:#fff;
    position: fixed;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    z-index:999;
}
 
.tabDropMenu  .MenuList{
	width:100%;
    float: right;
    position: relative;
    margin-top:80px;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.tabDropMenu  ul::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgb(57, 146, 93);
	box-shadow: inset 0 0 6px rgb(57, 146, 93);
	background-color:rgb(57, 146, 93);
	border-radius:10px;
}
.tabDropMenu  ul::-webkit-scrollbar
{
	width:5px;
}
.tabDropMenu  ul::-webkit-scrollbar-thumb
{
	border-radius:10px;
	background-color:  #30774d;
}
.tabDropMenu > .MenuList > li {
	width: 100%;
    display: inline-block;
    margin: 0px 0%;
    padding: 0px 5%;
}
.tabDropMenu .MenuList li a
{ 
	position:relative;
}
.tabDropMenu > .MenuList > li > a {
	color: #000;
    font:20px 'poppinssemibold';
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0px;
    text-align: left;
	border-bottom: 1px solid #e6e6e6;
    display: block; 
} 
.tabDropMenu > .MenuList > li a:hover {
	color: #6d6d6d;
}
.tabDropMenu > ul > li:nth-last-child(1) a  { 
	border:none;
}
.body-overflow
{
	position: fixed;
}





.enquaryicon{
	position: fixed;
    right: 5px;
    bottom: 90px;
    cursor: pointer;
    display: block;
    z-index: 99;
    color: #fff;
	cursor:pointer;
}

.enquaryicon i{
	color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #d9233f;
    border-radius: 50%;
}

.enquaryiconFix{ 
}
.enquaryiconFix.enquaryiconFix1{ 
	display:block;
}
.form .closebox{
	position: absolute;
    left: -35px;
    top: 0px;
	cursor:pointer;
	display: none;
}
.form .closebox.openCloseBtn{
	display:block;
}
.form .closebox i{
	color:#fff;
	font-size:20px;
    width: 35px;
    height: 35px;
    background: #000000;
    text-align: center;
    line-height: 35px;
	-webkit-transition:all 300ms ease-in-out;
	-moz-transition:all 300ms ease-in-out;
	-ms-transition:all 300ms ease-in-out;
	-o-transition:all 300ms ease-in-out;
	transition:all 300ms ease-in-out;
}

.form .closebox i:hover{
	background:#FFFFFF;
	color:rgb(210, 45, 77);
} 

.form {
    width:25%;
	position: absolute;
    right: 0;
	top:0;
    left: auto;
    opacity: 1;
    bottom:0px; 
    padding: 20px 20px;
    background: rgb(210, 45, 77);
    text-align: center;
    z-index: 999; 
	
	-webkit-transition:all 300ms ease-in-out;
	-moz-transition:all 300ms ease-in-out;
	-ms-transition:all 300ms ease-in-out;
	-o-transition:all 300ms ease-in-out;
	transition:all 300ms ease-in-out;
}

.form h2{
	color:#fff;
	padding-bottom:10px;
    font-family:'poppinslight';
	font-size:18px;
	letter-spacing:1px;
}
	
.form.fixedForm1{ 
    position: fixed;
	width: 300px;
    right: 0px;
    top: auto;
    bottom: 10px;
    padding: 20px 5px;
}
/*
.fields input, .fields textarea{
	width: 100%;
    padding:7px;
    outline: none;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    color:#000;
	background:#fff; 
	border:1px solid #666;
}*/
.whatsBox{ 	
	position: fixed;
	bottom: 10px;
	z-index: 99;
	left:5px;
	width: 50px;
	height: 50px;
	background: #00e174;
	border-radius: 50%;
}
.whatsBox a{
	display:block;
}
.whatsBox a i{
	color: #FFFFFF;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	position: absolute;
	font-size: 35px;
}

.newBox
{
	position: relative;background: #fff;z-index: 99;margin-top:80px; min-height:550px;
}
.footMenu a{
	color: #fff;
    margin: 5px 5px;
}
.list
{
	width:100%;
	float:left;
	list-style-type: disc;
}
.list li
{
	list-style-type: disc;
    margin: 5px 0px;
}


.testimonialBox
{
	position:relative;
	z-index:99;
	background:#FFFFFF;
}
.testimonialTxt
{
	width: 100%;
    float: left;
    position: relative;
    padding: 0px 0px 50px;
    margin-top: 0px;
    text-align: left;
	
}

.testimonialTxt h2{
	display: table;
    padding-bottom: 5px;
    color: #0061ae;
    border-bottom: 2px solid #ababab;
    margin-bottom: 20px;
    font-weight: bold;
} 
.testimonialTxt .nameBox{
	margin-top: 20px;
    width: 100%;
    float: left;
}
.testimonialTxt .nameBox h3{
	font-size: 23px;
    color: #0061ae;
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonialTxt .nameBox p{
	font-size: 15px; 
}
.testimonialTxt .nameBox span{
	font-size: 14px;
    color: #0061ae;
    font-weight: 600; 
}
.testimonialBtn{
	width: 100%;
    float: left;
    margin-top: 10px;
    text-align: right;
}
.testimonialBtn span{
	padding: 10px 16px;   
    background: #d22d4d;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px;
}
.testimonialBtn i{
	
}

.questionBox
{
	width:100%;
	float:left;
	margin-top:10px;
}
.questionBox h4.qustBtn{
	background: #0061ae;
    width: 100%;
    float: left;
    padding: 10px;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase; 
	position:relative; 
	cursor:pointer; 
	line-height: 18px;    
} 

.questionBox h4.qustBtn:hover{
	background: #d22d4d;
    color: #fff; 
}
.questionBox h4.qustBtn.activeBtn{
	background: #d22d4d;
    color: #fff; 
}
.questionBox h4.qustBtn:after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 50%;
    font-size: 20px;
    line-height: 0;
}
.questionBox h4.qustBtn.activeBtn:after {
    content: '-';
}
.questionBox .ansDrop
{
	width: 100%;
    float: left;
    position: relative;
    display: none;
    padding: 15px 10px;
    border: 1px solid gainsboro;
}
.questionBox .ansDrop p{
	padding:0px;
}

/*---------------drop-menu-----------------------------*/
@media screen and (max-width:1200px){    
	
}       
@media screen and (max-width:1025px){
	.logo{width:140px; margin-left:3%;}
	.navigation{
		padding-right:2%; 
	}    
	.navigation > ul > li{margin:0;}
	.banner{height:auto;}
	.sliderContainer{height:45vw; width:100%;}
	.form{width:100%; position:relative; float:left; margin-top:45vw;}
	.form .formBox{width:100%; float:left;}
	.form .formBox .fields{width:20%;}
	.form .formBox .fields.withtext{width:40%;}
	.form .formBox .fields#fieldsFix{padding-top:25px;}
	
	.profileBox .proImg img {
		width: 100%;
	}
	.profileBox .proTxt { 
		padding-left: 20px;
	}
	.profileBox .proTxt h3 { 
		font-size: 20px;
	}
	.profileBox .proTxt h4 { 
		font-size: 17px;
	}
}
@media screen and (max-width:950px){
	.form .formBox .fields.withtext+.fields{width:25%;}
	.profileBox .proTxt h4 {
		margin-top: 16px;
		font-size: 15px;
	}
	.profileBox .proTxt h3 {
		font-size: 17px;
	}
	.profileBox .proTxt span {
		font-size: 12px;
	}
}
@media screen and (max-width:850px){
	.sirContainer { 
		flex-wrap: wrap;
	}
	.profileBox {
		width: 100%; 
		padding: 30px 5% 30px 5%;
	}
	.profileBox .proImg {
    	width: 150px;
	}
	.profileBox .proTxt { 
		width: calc(100% - 160px);
	}
	.FrmBox { 
    	width: 100%;
		float: left;
		padding-right: 0;
		padding-left: 0;
	}
	.FrmBox .formBox { 
		padding: 40px 5%;
	}
}
@media screen and (max-width:700px){
	.logo {
		margin-left: 2%;
	}
	.navigation ul li a { 
		padding: 8px 2px; 
		font: 14px 'poppinssemibold';
	}
	.navigation .topSocials {
		margin-left: 10px;
		padding-left: 10px;
	}
	.form .formBox{text-align:left;}
	.form .formBox .fields{width:32%; float:none; display:inline-block; vertical-align:bottom;}
	.form .formBox .fields.withtext{width:32%;}
	.form .formBox .fields.withtext+.fields{width:40%; height:63px;}
	.form .formBox .fields#fieldsFix input.submit{width:150px;}
	.projectBox a:hover .proTxt {
		bottom: 10px;
		padding: 10px 10px;
	}
	.projectBox a h2 { 
		font-size: 1.6vw;
	}
	.projectBox a .proTxt span { 
		font-size: 11px;
		line-height: 14px;
		margin: 10px 0px;
	} 
	.footLeft {
		width: 100%; 
		padding-right: 0%;
	}
	.footRight {
		width: 100%;
		float: left;
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid #b7b7b7;
	}
	.bottomSocials { 
		text-align: center;
	}
	.footRight p { 
		text-align: center;
	}
}
@media screen and (max-width:667px){
	.maintopSocials {
		display: block;
		width: 100%;
		float: left;
		border:solid #b9b9b9;
		border-width:1px 0;
	}
	.navigation .topSocials {
		display: none;
	}
	.overviewBox h2 { 
		font-size: 20px;
	}
	.heading h2 {
		padding: 5px 29px; 
		font-size: 18px;
	}
	.overviewBox { 
		padding: 0 0% 30px;
	   
	}
	.overviewBox h2 { 
		font-size: 16px;
		line-height: 22px;
	}
	.tab-menuBox
	{ 
		display: block;
	}
	.navigation {
		display: none;
	}
	.projectBox{
		transform:none !important;
	}
	.questionBox h4.qustBtn{
		font-size:13px;
	}
}

@media screen  and (max-width:550px){
	.projectBox {
		width: 100%; 
		margin:5px 0%;
	}
	.projectBox a h2 {
		font-size: 18px;
	}

}

@media screen  and (max-width:480px){
	.tabDropMenu {
		width: 100%;
	}
	.maintopSocials{
		text-align:center;
	}
	.tabDropMenu > .MenuList > li > a{
		text-align:center;
	}
	
	.popupContainer{
		width:90%;
		height:70vw;
	}
	
	.sliderContainer{
		height:570px;
	}
	
	.main-banner img{
		display:none;
	}
	.main-banner img.mbSlide{
		display:block;
	}
		
	.form{margin-top:570px;}
	.form .formBox .fields{width:50%; margin:0 -2px;}
	.form .formBox .fields.withtext{width:50%;}
	.form .formBox .fields.withtext+.fields{width:50%; height:63px;}
	
	.testimonialTxt h2{font-size:20px;}
	.testimonialTxt .nameBox h3{font-size:19px;}
	.testimonialTxt .nameBox span{font-family:13px;}
	.testimonialBtn {text-align:left; margin-top:30px;}
	.testimonialBtn span{font-size:11px;}
	
	.overviewBox p.bottomTranslate{
		transform:none;
		opacity:1;
	}
	.profileBox .proImg {
		width: 130px;
		float: inherit;
		margin: auto;
	}
	.profileBox .proTxt {
		width: 100%;
		text-align: center;
		padding: 0px;
	}
	.profileBox .proTxt h3 { 
		margin-top: 10px;
	}
	.footLeft .footLogo {
		width: 175px;
		float: initial;
		margin: auto;
		display: block;
	}
	.footLeft .footCont {
		width: 100%;
		float: left;
		padding-left:0; 
		text-align: center;
		margin-top: 10px;
	}
}
@media screen  and (max-width:375px){
	.sliderContainer{
		height:450px;
	}
	.form{margin-top:450px;}
	.form .formBox .fields{width:100%; margin:0 -2px;}
	.form .formBox .fields.withtext{width:100%;}
	.form .formBox .fields.withtext+.fields{width:100%; height:63px;}
	.projectBox a h2 {
		font-size: 16px;
	}
}