@charset "utf-8";
 @font-face {
    font-family: 'GilroyMedium_0';
    src: url('../fonts/GilroyMedium_0.eot');
    src: url('../fonts/GilroyMedium_0.eot') format('embedded-opentype'),
         url('../fonts/GilroyMedium_0.woff2') format('woff2'),
         url('../fonts/GilroyMedium_0.woff') format('woff'),
         url('../fonts/GilroyMedium_0.ttf') format('truetype'),
         url('../fonts/GilroyMedium_0.svg#GilroyMedium_0') format('svg');
}

@font-face {
    font-family: 'GilroySemiBold_0';
    src: url('../fonts/GilroySemiBold_0.eot');
    src: url('../fonts/GilroySemiBold_0.eot') format('embedded-opentype'),
         url('../fonts/GilroySemiBold_0.woff2') format('woff2'),
         url('../fonts/GilroySemiBold_0.woff') format('woff'),
         url('../fonts/GilroySemiBold_0.ttf') format('truetype'),
         url('../fonts/GilroySemiBold_0.svg#GilroySemiBold_0') format('svg');
}

 

@font-face {
    font-family: 'GilroyBold_0';
    src: url('../fonts/GilroyBold_0.eot');
    src: url('../fonts/GilroyBold_0.eot') format('embedded-opentype'),
         url('../fonts/GilroyBold_0.woff2') format('woff2'),
         url('../fonts/GilroyBold_0.woff') format('woff'),
         url('../fonts/GilroyBold_0.ttf') format('truetype'),
         url('../fonts/GilroyBold_0.svg#GilroyBold_0') format('svg');
}

@font-face {
    font-family: 'GilroyHeavy_0';
    src: url('../fonts/GilroyHeavy_0.eot');
    src: url('../fonts/GilroyHeavy_0.eot') format('embedded-opentype'),
         url('../fonts/GilroyHeavy_0.woff2') format('woff2'),
         url('../fonts/GilroyHeavy_0.woff') format('woff'),
         url('../fonts/GilroyHeavy_0.ttf') format('truetype'),
         url('../fonts/GilroyHeavy_0.svg#GilroyHeavy_0') format('svg');
}
@font-face {
    font-family: 'GilroyExtraBold_0';
    src: url('../fonts/GilroyExtraBold_0.eot');
    src: url('../fonts/GilroyExtraBold_0.eot') format('embedded-opentype'),
         url('../fonts/GilroyExtraBold_0.woff2') format('woff2'),
         url('../fonts/GilroyExtraBold_0.woff') format('woff'),
         url('../fonts/GilroyExtraBold_0.ttf') format('truetype'),
         url('../fonts/GilroyExtraBold_0.svg#GilroyExtraBold_0') format('svg');
}


/*************** DEFAULT CSS ***************/
:root {
	--body-font:  'GilroyMedium_0';
	--body-color: #3E3E3E;
	--primary-color: #68714C;
	--secondary-color: #9F9F9F;
	--tertiary-color: #384029;
	--quaternary-color: #96A875;	
	--black: #000;
	--white: #fff;
	--grey: #F0F0F0;
	--heading-font: 'GilroyBold_0';
	--secondary-font: 'GilroySemiBold_0';
	--tertiary-font: 'GilroyExtraBold_0';
 

}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	font-weight: normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);

}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--secondary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
.hr:before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 50px;
	height: 1px;
	z-index:2;
	background-color: var(--primary-color)
}
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/
.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-green {
	color: var(--primary-color) !important;
}

 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

.uppercase {
	text-transform: uppercase;
}

/*-----------background styles------------*/

.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	 color:#fff;
}

.bg-tertiary {
	background: var(--tertiary-color);
 color:#fff;
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}

.bg-white {
	background: var(--white)
}


/*************** PRELOADER ***************/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--primary-color);
	z-index: 999999;
}

#status {
	width: 100px;
	height:  100px;
	position: absolute;
	background-color:var(--black);
	left: 50%;
	top: 50%;
	background-image: url(../images/janala-concepts-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80px;
	margin: -50px 0 0 -50px;
}

#status {
	-webkit-animation: flipInY 1s infinite alternate;
	-moz-animation: flipInY 1s infinite alternate;
	-ms-animation: flipInY 1s infinite alternate;
	-o-animation: flipInY 1s infinite alternate;
	animation: flipInY 1s infinite alternate;
}

/*************** BACK TO TOP ***************/
 
.column-reverse {
	flex-direction: none;
}

/************LOCOMOTIVE**************/
  
  
 
/*********************************/

.container {
	width: 1280px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	min-height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 20px;
	}	
	
.img-style{
	width:100%;
	padding:0 0 0 50px;
	position:relative;
}
.img-style:before{
	width:50%;
	height:50%;
	position:absolute;
	left:0;
	bottom:-50px;
	content:'';
	background: url(../images/donts.png);
	background-color:var(--primary-color);
	z-index:-1;
}
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	/*border-radius: 15px;*/	
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
section {
	width: 100%;
	display:blocx;
	position: relative;
	 
}
  
 .sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0;
	width:100%;
	z-index:999;
}

/*************** HOME PAGE CSS ***************/
 
/*************** FIXED HEADER ***************/

header {
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0px;
	position:absolute;
	padding:0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 header.smaller {
	top: 0;
	left: 0px;
	position: fixed;
	background-color:var(--black);	
	-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
	/*-moz-box-shadow: 0px 4px 20px #00000059;*/
	
}
 
.logo { 
	padding:0;
}

.logo img {
	width: 150px;
	display:block;
}
header.smaller .logo img{
	width:100px;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 0;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-but-wrap{}
.btn-black, .btn-green {
	text-transform:uppercase;
	font-family:var(--secondary-font);
	 
	}
.btn-black a, .btn-green a{	  
	color: var(--white);
	font-size: 14px;
	line-height: 14px;
	position:relative;
	padding:15px 30px;	
	/*border-radius: 50px;*/ 
	color:var(--white);
	display:inline-block;
	margin:5px;
}
 
 .btn-black a{
	 background-color:var(--black);
 }
 .btn-green a{
	 background-color:var(--primary-color);
 }
.btn-black a:hover, .btn-green a:hover{	 
	background-color:var(--white);
	color:var(--black);
}
.social {
 	display:inline-block;
}

.social a  {
	color:#0069F9;
	font-size:30px;
	padding:0;
	border-radius: 50%;
	margin:0 10px;
 
}

.social a:hover  {
	color: var(--primary-color);
	
}

.link {}

.link a {
	color: var(--white);
	font-size: 14px;
	line-height: normal;
	padding: 18px 50px 18px 25px;
	line-height: 14px;
	font-style: normal;
	display: inline-block;
	/*border-radius: 50px;*/
	position: relative;
	margin:0;
	background-color: var(--primary-color);
	background-image: url(../images/icons/arrow-white.png);
	background-repeat: no-repeat;
	background-position: 85% center;
	background-size:15px;
}
 
 
 
.link a:hover {
	background-color: var(--black);
} 
.link:hover a:after {
	filter: brightness(0) invert(1);
}
.link-outline{
	background-color:transparent !important;
	border:1px solid #fff;
}

.subtitle{
	font-size: 18px;
	line-height: 24px;
}

.subtitle-center, .subtitle-left {
	display: inline-block;
	font-size: 14px;
	color: var(--primary-color);
	padding: 0;
	position: relative;
	text-align:center;
	margin:0 0 25px 0;
	line-height:normal;
	font-family:var(--secondary-font);
	font-weight:normal;
	text-transform:uppercase;
 
}
.subtitle-left {
	text-align:left;
}
 
/*.subtitle-center:after, .subtitle-left:after {
	content: '';
	position: absolute;
	bottom:0;
	left:50%;
	margin-left:-25px;
	width: 50px;
	height: 1px;
	background-color: var(--primary-color)
}
 .subtitle-left:after {
 	margin-left:0;
	left:0;
 }*/


.heading-normal {
	font-size: 40px;
	line-height: normal;
  
 
}
.caps{
	text-transform:uppercase;
}
.heading {
	font-weight: normal;
	font-size: 54px;
	line-height: normal;
	color: var(--black);
	font-family:var(--heading-font);
}
 .heading span {
	color: var(--primary-color);
}
 .subheading {
	font-size: 25px;
	line-height: 35px;
	color: var(--secondary-color);
 
}
 
 .title-small {
	 
	font-size: 20px;
	line-height:30px;
	color: var(--secondary-color);
}
.heading-heavy{
	font-family:var(--tertiary-font);
	}
.heading-big{
	font-size:70px;
}

/****************************/

.pos-relative{
	position:relative;
}
.ico-align{
	text-align:right;
	margin:0 25px -50px 0;
}
.arch-1{
	width:169px;
	height:179px;
	position:absolute;
	top:0;
	right:0;
	background-image: url(../images/icons/arch-1.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.arch-2{
	width:169px;
	height:179px;
	position:absolute;
	bottom:-80px;
	right:-50px;
	background-image: url(../images/icons/arch-2.png);
	background-repeat: no-repeat;
	background-position: center center;
}

 .info-align{
	margin-top:150px;
}
.invisible{}

.boxy{
	padding:44px 30px;
	color:#fff;
	min-height:320px;
	position:relative;
}
.boxy h2{
	font-size:26px;
	font-family: 'AtypDisplayBold_0';
	line-height:normal;
	font-weight:normal;
}
.boxy .number{
	position:absolute;
	bottom:44px;
	right:30px;
	text-align:right;
	font-size:58px;
	color:rgba(255, 255 ,255, 0.2);
	line-height:normal;
	font-family: 'AtypDisplayRegular_0';
}
.boxy-content{
	width:70%;
	padding:50px;
	background:var(--white);
	position:relative;
	top:-50px;
	left:15%;
	z-index:2;
}
 
.row-style{
	font-size:26px;
	font-family: 'Cinzel', serif;
	text-transform:uppercase;
	line-height:normal;
	font-weight:normal;
	width: 100%;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding:20px;
	position:relative;
	border-bottom:2px solid var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.row-style:hover{
	
	color:#fff;
}
.fade-text{
	color:#ccc !important;
	padding:0 50px 0 0;
	display:inline-block;
	position:relative;
 
}
.fade-text:after{
	width:25px;
	height:1px;
	background-color:var(--primary-color);
	position:absolute;
	top:50%;
	right:10px;
	content:'';
}
.fade-text-icon{
	font-size:24px;
	color:var(--primary-color);
}

.row-style:hover .fade-text-icon{
	color:var(--white);
}
.row-style:after{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:-2;
	background-color:var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.row-style:hover:after{
height:100%;
}
/****************SCROLLING TEXT***************/

.scroll-head{
	background-color:var(--secondary-color);
	color:#fff;
	padding:35px 20px;
	font-size:24px;
	text-align:center;
}
 .scrolling-text-wrap {
    width:85%;
    overflow-x:hidden;
  	background-color:var(--white);
	color:var(--body-color);
    display: flex;
	position:absolute;
	bottom:0;
	right:0;
	z-index:2;
	justify-content: center;
	align-items: center;
}


.scroll {
  white-space: nowrap;
  margin: 0;
  overflow:hidden;
   
}

.scroll div {
  display: flex;
  gap: 2em;
  
  
}

.scroll h2 {
  font-size: 18px;
  color: var(--body-color);
  font-weight: normal;
  margin:0;
  line-height:normal;
  font-family: 'AtypDisplayMedium_0';
  
}

.RightToLeft {
  animation: RightToLeft 30s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}


 .rotating-circle{
	width:300px;
	height:300px;
	display:inline-block;
	position:relative;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.png);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/nat.png);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	-webkit-animation: rotation2 20s infinite linear;
	background-size:50%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

/***************************/

	   
.text-underline {
	text-decoration: underline;
}
 

 
.font14 {
	font-size: 14px;
}
 
.bold {
	font-weight: 600;
}
 

.name {
	margin-bottom: 5px;
	display: inline-block;
	color: var(--primary-color);
	font-size:16px;
	padding:20px 0;
	text-align:center;
	font-weight:600;
	width:100%;
}
.name span{
	font-size:14px;
	color:#000;
	font-weight:400;
}
.back-margin{
	top:-150px;
	position:relative;
	z-index:2;
}
.white-strip{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100px;
	background-color:var(--white);
}
/*---------------sbox---------*/

 
.sr-style{
 	 border-right:1px solid #BEBEBE;
	 padding:0 35px;
	 text-align:center;
}
.sr-style:last-child {
	border-right:0;
}
.sr-style h2{
	font-size:18px;
	line-height:normal;
	font-weight:normal;
	font-family:var(--secondary-font);
	margin:0 0 15px 0;
	padding:0;
}

/***********************/
 .dp-style{ 
    width: 100%;
    display: block;
	line-height:normal;
	padding:20px 0;
	position:relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	border-bottom:2px solid var(--primary-color);
} 
 .dp-style h2{
 	font-size:26px;
	color:var(--black);
	font-weight:normal;
	font-family:var(--heading-font);
	margin:0 0 20px 0;
}
 .dp-style p:last-child{
 	margin:0;
	}
  .dp-style:after{
  	width:0;
  	height:2px;
	z-index:2;
	position:absolute;
	left:0;
	bottom:-2px;
	content:'';
	background-color: var(--black);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;  }
  
.dp-style:hover:after{
 	width:100%; 
 }
 
 
 /*********************/
 
 
 .pro-des{
	width: 100%;
	display: flex;
	position:relative;
	flex-wrap: wrap;
	align-items: center;
	color:var(--black);
	font-size:14px;
	text-transform:uppercase;
	line-height:normal;
	font-weight:normal;
	position:relative;
	padding:20px 0;
	text-align:center;
	justify-content: center;
	/*border-radius:0 0 15px 15px;*/
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
	
} 
 .pro-des:hover{
 	background-color:var(--primary-color);
	color:var(--white);
	padding:25px 0;
 }


/*********grid box********/
 .grid-col {
   display: flex;
   flex-wrap: wrap; 
  
}
.gr-pd{
	padding:25px;
 }
 
 .grid-col-2{	 
	flex: 0 0 50%;
}

.head-style{
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	padding:30px 30px;
	z-index:2;
	color:var(--white);
	font-size:20px;
	text-transform:uppercase;
	font-family:var(--secondary-fonnt);
	line-height:normal;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,2));
}
.keywords{
	font-size:24px;
	font-weight:normal;
	line-height:normal;
}
.sep{
	width:1px;
	height:30px;
	display:inline-block;
	background-color:var(--white);
	margin:0 25px;
	position:relative;
	top:5px;
}

.icon-small{
	display:inline-block;
	width:120px;
}
 /**********************news**********************/
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 110px;
	border-bottom:1px solid rgba(0, 0, 0,0.1);
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size:20px;
	margin:0 0 15px 0;
	line-height:30px;
	color:var(--primary-color);
 
}
.webicon{	
	position:absolute;
	left:0;
	top:-5px;	
	width:80px;
	height:80px;
	padding:10px;
	border-radius:50%;
	background-color:var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--secondary-color);
}
 
 /**********************news**********************/
 .news-style{
	background-color:var(--white);	 
	overflow:hidden;
	box-shadow: 0 15px 80px 0 rgba(0,0,0,0.17);
} 
.news-desc{
    padding: 40px 40px;
    color: var(--body-color);
	background-color:var(--white);
	z-index:1;
}
.date{
    font-size: 14px;
	color:#666;
	margin:0 0 10px 0;
 
}
.date i{
	margin:0 10px 0 0;
}
.news-desc h2{
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--body-color);
  font-family:var(--heading-font);
 
}
.news-desc p:last-child{
    margin-bottom:0;
}
.news-desc a{
	 color: var(--body-color);
}

/*****************/

 .flex-grid-four {
  	display: flex;
	flex-wrap: wrap;
 	justify-content: left;  	
    width:100%;
}


.flex-grid-four .col {
  width: 25%;
   padding:20px;
}

 .sainik-logo{
 	display:inline-block;
	width:200px;
 }
 
 .google-map {
	width: 100%;
	height: 450px;
	border: 0;
	overflow: hidden;
	display: block;
}
/*************** footer CSS ***************/

.footer-col { 
	padding:60px 40px;
}
 
.footer-col h2{
	font-size:24px;
	line-height:normal;
	margin:0 0 25px 0;
	color:var(--black);
} 
.footer-col h2 span{
	color:#AFAFAF;
	font-size:20px;
	}
footer {
	border-top:1px solid rgba(0, 0, 0, 0.1); 
}

footer a, .footer-bottom  a, .footer-col a {
	color:var(--black);
}
.footer a:hover, .footer-bottom  a:hover, .footer-col a:hover {
	color: rgb(0, 0, 0, 0.7);
}


.footer-social a:hover i {
	color: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding:40px 0 ;
 
}
 
 
.copy, .footer-social{
	 
}
.footer-logo{}
.footer-logo img{
	width:170px;
	display:inline-block;
	margin-bottom:20px;
}
 
 
.footer-social{
	text-align:right;
}
 
.footer-social a {
	margin: 5px;
	font-size: 24px;
	color: var(--primary-color);
}
.footer-social a:hover {
	color: var(--black);
}

/******************************/
/* footer list */
.f-item{}
.f-itemul {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.f-item ul li .tit,
.f-item ul li .dots,
.f-item ul li span {
    display: table-cell;
    white-space: nowrap;
}

.f-item ul li {
    margin-bottom: 5px;
    font-size: 16px;
}

.f-item ul li:last-of-type {
    margin-bottom: 0;
}

.f-item ul li span {
    white-space: nowrap;
    padding-left: 10px;
    color: var(--white);
}

.f-item ul li .tit {
    padding-right: 10px;
    color:var(--white);
}

.f-item ul li .dots {
    height: 4px;
    width: 100%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    position: relative;
    top: -7px;
}


/**********************/ 
 
ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
	font-size:20px;
 
}

ul.list li:before {
	/*content: "\f111";*/
	content: "*";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

.cnt-wrap {
	background-color: var(--primary-color);
	/*border-radius: 25px;*/
	/* box-shadow: 0px 3px 40px #0000002e; */
	/* -webkit-box-shadow: 0px 3px 40px #0000002e; */
	-moz-box-shadow: 0px 3px 40px #0000002;
	color: var(--white);
	border-radius: 15px;
	padding: 20px 10px;	
}

.icon_box {
	padding: 40px 30px;
	background-color:var(--black);
	margin-bottom:20px;
	color:var(--white);
	width:100%;
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
}

 

.icon_box i {
	 
	float: left;
	margin: 0px 30px 0px 0px;
	padding: 8px;
	border-radius: 50%;
	background-color: var(--white);
	color:var(--black);
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 30px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 
 
}

.icon_box .descripion {
	display: block;
	overflow: hidden;
	margin:0 0 25px 0;
	color:var(--white);
}

.icon_box .descripion h5 {
	font-size: 18px;
	margin: 0 0 8px 0;
 
 
}

.icon_box p {
	margin: 0;
}

.icon_box a {
	color: var(--white)
}
.icon_box a:hover {
	color: rgba(255, 255 ,255 ,0.4);
}

/********************/

/*****************/

 .flex-grid-four {
  	display: flex;
	flex-wrap: wrap;
 	/* justify-content: center;  	 */
    width:100%;
	gap:30px 1%;
}


.flex-grid-four .col {
  flex: 0 0 24%;
 
}


.gallery{}
.gallery .hover-effect img {
	display:block;
	-moz-transition: all 7s ease;
	-o-transition: all 7s ease;
	-webkit-transition: all 7s ease;
	transition: all 7s ease;
	width:100%;
  height: 250px;
  object-fit: cover;
}

/*.icon_box:last-child{ margin-bottom:0px; padding-bottom:0px; border-bottom:none;}*/
.cnt-form {}

.map {
	line-height: 0;
	width: 100%
}

.google-map {
	width: 100%;
	height: 450px;
	border: 0;
	overflow-x: hidden;
	display: block;
}

/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/

.radius-circle{
	border-radius:50%;
	overflow:hidden;
}

.team-style{
	position:relative;
	width:100%;
	padding:0 0 0 280px;
	margin:0 0 50px 0;
}

.team-foto{
	width:150px;
	border-radius:50%;
	position:absolute;
	padding:10px;
	top:0;
	left:50px;
	overflow:hidden;
	border:2px dashed rgba(255, 255, 255 ,0.2);
	
}
.team-foto img{
	display:block;
	width:100%;
	border-radius:50%;
	
}

.team-style:before{
	width:1px;
	height:100%;
	position:absolute;
	left:235px;
	top:0;
	content:'';
	background-color:var(--secondary-color);
}

.partner-inner {
    width: 200px;
    height: 100px;
    border: 1px solid #ccc;
	padding: 10px;
}

.partner-inner img {
	width: 100%;
}

.gutter {
	padding: 10px;
}
/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:400px;
	overflow:hidden;
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: center;
	text-align:center;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/banners/banner.jpg);
	
}

.banner h2 {
	color: var(--white);
	font-weight: normal;
	line-height: normal;
	margin:0;
	padding:0;
	font-size:40px;
	font-family: 'GilroyBold_0';
}

/************/
  .breadcrumb {
    width: 100%;
    display: flex;
	color:var(--white);	
	margin:0 0 50px 0;
	align-self: end;
	justify-content: center;
	position:relative;
}
  .breadcrumb:after{
	width:100%;
  	height:1px;
	position:absolute;
	left:0;
	top:50%;
	content:'';
	background-color:rgba(0, 0, 0, 0.1);
	z-index:-1;
  }

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 15px 25px;
	background-color:var(--primary-color);
 
}
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    content: " → ";
 
}
 .breadcrumb a{
    color:var(--white);	
}
 .breadcrumb a:hover{
   color:rgba(255, 255 ,255, 0.7);
 
}
 .breadcrumb  span{
 color:var(--white);	
}

 
/*.banner:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color:#000; opacity: .5; }*/
 
 
/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.split-bg-right{
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	z-index:-1;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.left-image-box{
    width: 50%;
    position: absolute;
    top:0;
    left:0;
	overflow:hidden;

}
.right-image-box{
    width: 50%;
    position: absolute;
    top:0;
    left:auto;
    right:0;
	overflow:hidden !important;

}

.split-bg-left{
	right:auto;
	left:0;
}
.texture-primary, .texture-secondary, .texture-tertiary {
	background: url(../images/donts.png);
	background-color:var(--primary-color);
	color:var(--white);
}
.texture-secondary {
	background-color:var(--secondary-color);
}
.texture-tertiary {
	background-color:var(--tertiary-color);
}
.bg1 {
	background: url(../images/parallax/bg1.jpg);
}

.bg2 {
	background: url(../images/bg2.jpg) no-repeat top center;
}

.bg3 {
	background: url(../images/bg3.jpg) no-repeat top center;
}


/*********file chosen style**************/

input.file{

    display: none;



}


.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 1px solid var(--primary-color);

}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/**********forms**************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 0;
	background-color: none;
	background-color: transparent;
	display: block;
	border: 0;
	box-shadow: 0 1px 0 0 #000;
	margin: 0;
	color: var(--body-color);
	font-size: 16px;
 
}

.sendbutton {
	width: auto;
	height: auto;
	border: 0;
	outline: 0;
	margin: 0;
	display: inline-block;
	color:var(--white);
	font-size: 20px;
	cursor: pointer;
	vertical-align: top;
	padding: 15px 30px;
	text-align: center;
	background-color: var(--primary-color);
	text-transform: uppercase;
	font-weight: normal;
	font-family:var(--heading-font);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;


}

.sendbutton:hover {	
	background-color: var(--primary-color);
}

.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}

.contact-form {
	float: left;
	width: 100%;
}

.contact-form .fieldset {
	margin-bottom: 0px;
}

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}

.ftr-form ::-webkit-input-placeholder {
	color: var(--body-color);
}

.ftr-form :-moz-placeholder {
	/* Firefox 18- */
	color:var(--body-color);
}

.ftr-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

.ftr-form :-ms-input-placeholder {
	color: var(--body-color);
}

.wpcf7-form-control-wrap {
	position: relative;
	float: left;
	width: 100%;
}

.success_msg {
    padding: 100px 0 100px 0;
    text-align: center;

}

.success_msg h2 {
    font-size: 50px;
}

.success_msg img {
	width: 50px;
	margin-bottom: 25px;
}


 

/************************************* 1366px *************************************/
@media only screen and (max-width: 1280px) {
	.copy {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}

}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1280px) {
	.container {
		width: 100%;
		padding:0 20px;
	}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
 
 
.gr-pd{
	padding:10px ;
 }
 
 .grid-col-2{	 
	flex: 0 0 50%;
}

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {

	header,
	header.smaller {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		background-color:var(--black);
}
 
.header {
	padding:10px 0;
	flex-direction:column;
	justify-content: center;
}

.logo, .top-but-wrap { 
	padding: 0;
	width:100%;
}

.logo img {
	width: 100px;
	}
 
.top-but-wrap {
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top:10px;
 
 }
 
.btn-black a, .btn-green a{	  
	font-size: 12px;
	padding:10px 15px;
	 
 
}
 
.column-reverse {
	flex-direction: column-reverse;
	}

hr {
	margin: 20px 0;

	}
	
	.banner { 
	 height: 150px;
	}
	
.footer-col { 
	padding:0;
	width:100%;
 
}
 
.footer-col h2{
	font-size:18px;
 
} 
.footer-col h2 span{
 
	font-size:14px;
	}
.copy, .footer-social{
	flex: 0 0 100%; 
	text-align:center;
	padding:0 0 15px 0;
}
 	
.footer-logo img{
	width:100px;
	margin:25px 0 20px 0;
}
 
 
 .scroll-head{
	padding:10px 20px;
	font-size:18px;
 
}
 .scrolling-text-wrap {
    width:100%;
	position:relative;
	left:auto;
	bottom:auto;
	display:block;
}
.scroll h2 {
  font-size: 14px;
  padding:15px 20px;
  background: url(../images/donts/png);
  background-color:var(--primary-color);
  color:var(--white);
}

.RightToLeft {
  animation: RightToLeft 8s infinite linear;
}
  .breadcrumb {
	margin:0 0 20px 0;
}


.breadcrumb ul {
    padding: 15px 20px;
}

 
.head-style{
	padding:15px 20px;
	font-size:14px;
}
.heading-big{
	font-size:30px;
}


 .flex-grid-four {
	gap:30px 1%;
}


.flex-grid-four .col {
  flex: 0 0 49%;
 
}


 
.gallery .hover-effect img {
   height: 150px;
   
}


}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

.banner h2 { 
	font-size:20px;
 
}
.heading-outline{
	font-size: 60px;
	line-height: 40px;
	}
.heading-normal{
 font-size:24px;
}
.heading { 
	font-size: 26px;
	line-height: 34px;
 
}
 
 .subheading {
	font-size: 20px;
	line-height: 24px;
}

 
 
 .iconic{
	padding:0 0 20px 90px;
	 
}

.webicon{	
	width:60px;
	height:60px;
	padding:10px;
	top:0;
 
}	

.team-style{
	padding:180px 0 0 0;
	text-align:center;
 
}

.team-foto{
	width:150px;
	left:50%;
	margin-left:-75px;
	
} 

.team-style:before{
	display:none;
}
.flex-grid-four .col{
	width:50%;
	padding:5px;
}
.ico-align{
	text-align:center;
	margin:0;
}
.ico-align img{
	width:100px;
	display:inline-block;
}
.arch-1, 
.arch-2{
	display:none;
}

 .info-align{
	margin-top:20px;
}
.pos-relative{
	text-align:center;
	}
.invisible{
	display:none !important;
}	

 

.boxy-content{
	width:100%;
	padding:10px 0;
	top:0;
	left:0;
}
.row-style{
	font-size:12px;
	padding:15px 10px;	
	 
}
 
.fade-text{
	padding:0 20px 0 0;
}
.fade-text:after{
	width:10px;
	right:5px;
}
.fade-text-icon{
	font-size:20px;
 
}

.gr-pd{
	padding:10px 0;
 }
 
 .grid-col-2{	 
	flex: 0 0 100%;
}
.heading-big{
	font-size:24px;
}
.keywords{
	font-size:16px;
 
}
.sep{
	 
	height:15px;
	top:2px;
	margin: 0 10px;
}
.partner-inner {
    width: 100%;
    height: auto;
	margin-bottom: 25px;
	padding: 0;
}
.smd50 iframe {
    width: 100% !important;
}
.fieldset {
    box-shadow: none;
    border-bottom: 1px solid #ccc;
}
.sr-style {
    border-right: 1px solid #bebebe00;
    padding: 0 35px;
    text-align: center;
}
 header.smaller {
	position: fixed !important;
 }



}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
.gallery .hover-effect img {
  height: 100px;
 
}
.white-strip{
	display:none;
}
 .rotating-circle{
	width:200px;
	height:200px;
 
 
}
}

/************************************* 380px *************************************/
@media only screen and (max-width: 390px) {
	.five-flex-col.bg-grey.text-center.gutter-30 {
		flex: 100% !important;
	}
	.g-recaptcha {
		scale: 0.8;
		text-align: left !important;
		width: 100% !important;
		overflow: hidden;
		/* margin-right: 16px; */
	}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {

	
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}