@charset "utf-8";
  
@font-face {
    font-family: 'NuckleMedium';
    src: url('../fonts/NuckleMedium.eot');
    src: url('../fonts/NuckleMedium.eot') format('embedded-opentype'),
         url('../fonts/NuckleMedium.woff2') format('woff2'),
         url('../fonts/NuckleMedium.woff') format('woff'),
         url('../fonts/NuckleMedium.ttf') format('truetype'),
         url('../fonts/NuckleMedium.svg#NuckleMedium') format('svg');
}

@font-face {
    font-family: 'NuckleBold';
    src: url('../fonts/NuckleBold.eot');
    src: url('../fonts/NuckleBold.eot') format('embedded-opentype'),
         url('../fonts/NuckleBold.woff2') format('woff2'),
         url('../fonts/NuckleBold.woff') format('woff'),
         url('../fonts/NuckleBold.ttf') format('truetype'),
         url('../fonts/NuckleBold.svg#NuckleBold') format('svg');
}


:root {
	--body-font: "NuckleMedium", sans-serif;
	--body-color: #fff;
	--primary-color: #00ADEF;
	--secondary-color: #F16521;
	--tertiary-color: #C3EFFF;
	--quaternary-color:#022D9C;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-medium:'NuckleMedium';
	--font-bold:'NuckleBold';
}

body {
	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--white);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--quaternary-color); 
	background-attachment:fixed;
	overflow-x: hidden;
}


/* *********Scrollbar Styling *************/

::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}

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;
	transition: all 0.4s ease;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 50px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	max-width:100%;
	border: 0;
	transition: all 0.4s ease;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	 
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color);	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;	 
	left: 50%;
	top: 50%;
	background-image: url(../images/fns-logo-icon.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
 
	 
}

/**********CANVAS**************/ 


canvas#mouse-trail {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999; 
            pointer-events: none; 
        }
/*********************************/

.container {
	width: 1400px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************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;
	overflow:hidden;
    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 {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222529;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.3s
}
 .hover-effect:before {
 	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease
	}
	
 .hover-effect:hover:after,
 .hover-effect:hover:before {
    opacity: 0;
    transform: none
}

 .hover-effect:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.5;
    transition: transform 0.9s ease, opacity 0.9s ease
}

 .hover-effect:before {
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease
}
/**********/
section {
	width: 100%;
	display:block;
	position: relative;
}

.section-spacing{
   padding:125px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}
.sticky-box{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%;
	background-color:#02247D;
	padding:50px;
	margin-bottom:50px;
	border-left:4px solid var(--secondary-color);
}
.sticky-box h2{
	font-size: 20px;
	font-family:var(--font-bold);
	}
/*********************************************/ 
 

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:10px 0;
	 z-index:5;
	 transition: all 0.4s ease;
}
 header.smaller {
	padding:10px 0;
	position: fixed;
	background-image:none;
	/*background-color:var(--quaternary-color);*/
	background-color:rgba(0, 0, 0 ,0.8);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:270px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:150px;
}
.nav-group{
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 50px;
	} 
.conact-number{
	position:relative;
}
.conact-number {
	align-content: center;
	display:flex;
	flex-direction:column;
	padding:0 0 0 45px;
	color:var(--white);
}
.conact-number a{
	color:var(--white);
}
.conact-number .info{
	font-size:16px;
	line-height:normal;
	font-family:var(--font-bold);
}	
.conact-number span{
	font-family:var(--font-medium);
	font-size:10px;
	text-transform:uppercase;
}
 
.conact-number a i{
	width:36px;
	height:36px;
	display: flex;
	text-align:center;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:4px;
	border:1px solid var(--white);
	padding:5px;
	border-radius: 50%;
} 
.contact-bt a:hover{	 
	 
}   
 
/***********social ***********/
 
.link {}

.link a {
	
	color:var(--white);
	font-size: 12px;
	font-family:var(--font-bold);
	line-height:normal;
	padding: 10px  30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	border:1px solid var(--white);
	/*background-color:var(--secondary-color);*/
	font-family:var(--font-medium);
	transition: all 0.4s ease;

}
.link a:hover {
	color:var(--white) !important;
	border:1px solid var(--primary-color);
	box-shadow: 0px 0px 7px var(--primary-color);
}
.link a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--primary-color);
	top:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} 
 
.link a:hover:before{
	 height:100%;
	 top:auto;
	 bottom:0;
	 left:0;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--font-bold);
 }
 
.heading, .subheading, .subtitle{
	font-size:50px;
	line-height:normal;
}
.heading span, .subheading span{ 
	font-family:var(--font-bold);
	
}

.subheading {
	font-size: 40px;
  
}
 
.subtitle{
	font-size: 20px;
 
}
.bold, strong{
	font-family:var(--font-bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap;
  
}
 .section-title span{
	display:flex;
	justify-content: center;
	text-align:center;
	font-family:var(--font-medium);
	font-size:16px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-left:60px;
}
 .section-title span:after{
 	width:50px;
	height:1px;
	background-color:var(--secondary-color);
	position:absolute;
	left:0;
	top:50%;
	content:'';
 }
/****************************/
  
.pos-rel{
	position:relative;
}
 
 
  /**********************HOME PAGE SETTINGS********************/
  .text-shadow{
  	text-shadow: 2px 2px rgba(123, 123, 123, 0.2);
	}
	
.years-of-excellence{
  	padding:15px 10px;
	border-radius: 15px;
	text-align:center;
	font-size:10px;
	border:1px solid var(--white);
	transition: all 0.4s ease;
	margin-bottom:25px;
	max-width:150px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	text-shadow: 2px 2px rgba(123, 123, 123, 0.2);
  }
 .years-of-excellence:hover{
 	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
 }
.years-of-excellence h2{
	font-size:70px;
	margin:0;
	padding:0;
	line-height:70px;
	font-family:var(--font-bold);
}

.devider{
	position:relative;
	background-color:var(--quaternary-color);
	
 
}
.devider:before{
	position:absolute;
	left:50%;
	top:0;
	width:7px;
	height:7px;
	border:1px solid rgba(255, 255,255, 0.2);
	border-radius: 50%;
	content:'';
	margin-left:-9px;
	
	
}
.devider:after{
	position:absolute;
	left:50%;
	top:4px;
	width:50%;
	height:1px;
	background-color:rgba(255, 255,255, 0.2);
	content:'';
}

/*************CARD STYLES***********/

.card{
	border-radius: 15px;
	min-height:430px;
	padding:35px;
	display:flex;
	flex-direction:column;
	gap:20px 0;
	border-left:2px solid var(--secondary-color);
	transition: all 0.4s ease;
	background-image: linear-gradient(to  right, #02227A, rgba(241, 101, 33, 0.5));
}
.card:hover{
	border-left:2px solid var(--primary-color);
	box-shadow: 0px 0px 3px var(--primary-color);
	}

.card-head{
	display: flex;
	gap:0 25px;
 
}
.card-head .icon{
	border-radius: 12px;
	border:1px solid var(--white);
	width:50px;
	height:50px;
	transition: all 0.4s ease;
}
.card-head .icon img{
	width:100%;
	display:block;
	
}
.card-head h2{
	font-size:18px;
	line-height:normal;
	font-family:var(--font-bold);
	}
.card-middle{
	display: flex;
	justify-content: flex-end;
}
.card-middle img{
	width:55%;
	display:block;
	border-radius: 12px;
	border-left:1px solid rgba(255, 255, 255, 0.1);
	border-top:1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s ease;
 
}
.card-footer{
	font-size:14px;
	width:100%;
}
.card:hover .card-middle img {
 	 filter: grayscale(100%);
}
.card:hover .card-head .icon {
	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
 	 
}
/*************SPIN************/
.spin{
	width:470px;
	height:470px;
	position:absolute;
	left:0;
	top:50%;
	left:50%;
	margin-left:-245px;
	margin-top:-245px;
	z-index:1;
	border-radius: 50%;
	display:flex;
	justify-content: center;
	align-items: center;

}

 
.outerCircle {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-right: 1px solid transparent;
	border-left: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-radius: 50%;
	width:100%;
	height:100%;
	-moz-animation: spinPulse 5s infinite ease-in-out;
	-webkit-animation: spinPulse 5s infinite ease-in-out;
	position:absolute;
	left:0;
	top:0;
}
.middleCircle {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
	border-radius: 50%;
	width: 400px;
	height: 400px;
	-moz-animation: spinoffPulse 3s infinite linear;
	-webkit-animation: spinoffPulse 3s infinite linear;
 	position:absolute;
	left:50%;
	top:50%;
	margin:-200px 0 0 -200px;
	opacity:0.5;
}
.innerCircle {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-radius: 50%;
	width: 300px;
	height: 300px;
	-moz-animation: spinoffPulse 3s infinite linear;
	-webkit-animation: spinoffPulse 3s infinite linear;
	position:absolute;
	left:50%;
	top:50%;
	margin:-150px 0 0 -150px;
}

@-moz-keyframes spinPulse {
    0% { -moz-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #bdd73c;}
	50% { -moz-transform:rotate(145deg); opacity:1; }
	100% { -moz-transform:rotate(-320deg); opacity:0; }
}
@-moz-keyframes spinoffPulse {
    0% { -moz-transform:rotate(0deg); }
	100% { -moz-transform:rotate(360deg);  }
}
@-webkit-keyframes spinPulse {
    0% { -webkit-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #bdd73c; }
	50% { -webkit-transform:rotate(145deg); opacity:1;}
	100% { -webkit-transform:rotate(-320deg); opacity:0; }
}
@-webkit-keyframes spinoffPulse {
    0% { -webkit-transform:rotate(0deg); }
	100% { -webkit-transform:rotate(360deg); }
}
@-moz-keyframes rotatecircle {
    0% { -moz-transform:rotate(0deg); }
	100% { -moz-transform:rotate(-360deg); }
}

@-webkit-keyframes rotatecircle {
    0% { -webkit-transform:rotate(0deg); }
100% { -webkit-transform:rotate(-360deg); }
}


/*************MOBILE*****************/

.mobile-phone{
	width:484px;
	height:552px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-276px 0 0 -242px;
	z-index:3;
	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/mobile-phone.png);
 
}

.graphic-area{
	min-height:650px;
	position:relative;
	justify-content: center;
	display:flex;
	align-items: center;
}

/***********brand scroll*****/
@-webkit-keyframes infiniteLogoScroll {
  0% {
    transform: translateX(1800px)
  }
  100% {
    transform: translateX(-220px)
  }
}
@keyframes infiniteLogoScroll {
  0% {
    transform: translateX(-220px)
  }
  100% {
    transform: translateX(1800px)
  }
}

@-webkit-keyframes infiniteLogoScroll2 {
  0% {
    transform: translateX(-220px)
  }
  100% {
    transform: translateX(1800px)
  }
}
@keyframes infiniteLogoScroll2 {
  0% {
    transform: translateX(1800px)
  }
  100% {
    transform: translateX(-220px)
  }
}

  
/****************SCROLLING TEXT***************/
 
 
 
.scroll {
  white-space: nowrap;
  margin: 0;
  width:100%;
  display: flex;
  gap:0 20px;
  padding:20px 0;
  overflow:hidden !important;
  background-color:var(--white);
  position:relative;
  z-index:2;
 
}

.scroll img {
  display: inline-flex;
  width:120px;
    
}
 
.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

/***********/
 
/*********/
@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

 
 /**********************news**********************/
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--white);
  }
 .news-widget h2{
  	font-size:18px;
  	line-height:normal;
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	border-bottom:1px solid rgba(255,255, 255, 0.2);
 
  } 
.date{
	margin-bottom:20px;
 
}
.date span{
	font-size:12px;
	line-height:12px;
	padding:5px 10px;
	display:inline-flex;
	vertical-align:middle;
	color:var(--white);
	border-radius: 15px;
	background-color:var(--secondary-color);
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
.display-style{ 
    border-radius: 15px;
	padding:20px 35px;
	display:flex;
	flex-direction:column;
	gap:20px 0;
	border-left:2px solid var(--secondary-color);
	transition: all 0.4s ease;
	background-image: linear-gradient(to  right, #02227A, rgba(241, 101, 33, 0.5));
	transition: all 0.4s ease;
	margin-bottom:20px;
}
.display-style:hover{
	border-left:2px solid var(--primary-color);
	box-shadow: 0px 0px 3px var(--primary-color);
	} 
.display-style h2{
	font-size:44px;
	line-height:normal;
	font-family:var(--font-bold);
	color:rgba(255, 255, 255, 0.1);
	margin:0;
	}  
.display-style h3{
	font-size:18px;
	line-height:normal;
	font-family:var(--font-bold);
	}
 
  
  
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
  
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 120px;
	min-height:100px;
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	font-family:var(--heading-font-medium);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	background-color:var(--secondary-color);	 
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


 
  
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:4;
}
.float i{
	transition: all 0.4s ease;
 
}
.float:hover i{
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	transition: all 0.4s ease;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
/*************** footer CSS ***************/
 
.footer {
	padding:80px 0 0 0;
	margin:0;
	background-color:#022279;
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
} 
.footer-left{
	width:50%;
}
.footer-right{
	width:50%;
	display:flex;
	justify-content: space-between;
	gap:0 25px;
}

.footer-col{
	font-size:14px;
}
.footer-col h2{
	font-size:16px;
	line-height:normal;
	margin:0 0 20px 0;
	font-family:var(--font-bold);
	color:var(--secondary-color);
} 
 .footer-col ul{
 	margin:0;
	padding:0;
	list-style:none;
 }
 .footer-col ul li{
 	padding:5px 0;
	font-size:14px;
	line-height:normal;
 } 
 
 
 
 .lower-footer{
 	border-top:1px solid rgba(255, 255, 255, 0.25);
	padding:20px 0;
	margin-top:50px;
 }
 
.copy{
	font-size:14px;
}

.social {
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	border:1px solid var(--white);
}
.social a:hover  {
	color:var(--white)!important;
	background-color:var(--secondary-color);
	border:1px solid var(--secondary-color);
}

 /**********************/
 
 
 /**********************/
 .address-box{
	padding:40px;
	outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -10px;
	background-color:rgba(0, 0, 0, 0.2);
	
 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:18px;
	line-height:18px;
	font-family:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:100vh;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
	  
}
 .map-container {
  width: 100%;
  height:60vh;
  overflow: hidden;
  filter: grayscale(100%); /* Make map grayscale */
  -webkit-filter: grayscale(100%);
  border: none;
  background-color:var(--white);
}
.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--whiite);
	}
.add a:hover{
	color:var(--primary-color);
	}
/******************************/

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;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--primary-color);
	font-size: 16px;
}

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
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;
	} 

 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:70vh;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	padding-bottom:50px;
	position: relative;
	/*align-items: center; */
	justify-content: flex-end;
	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/backgrounds/banner.jpg);
 
}
.banner:after{
	width: 100%;
	height:20%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.5));
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-family:var(--font-medium);
	font-size:30px;
	line-height:34px;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {
 
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin:0;
    padding:0;
 
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--white);
	font-weight:var(--font-medium);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--primary-color);	
 
}
 
 
/*************** 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;
}
.fix-bg{
	background-attachment:fixed !important;
	}
	
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/**********forms**************/
 
 

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid rgba(255, 255, 255, 0.3);
	background-color:var(--quaternary-color);
	color:var(--white);
	display: block;
	margin: 0;
	font-size: 14px;
 
}

.sendbutton {
	color: var(--white);
	font-size: 24px;
	font-family:var(--font-bold);
	background-color:var(--secondary-color);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-color:var(--primary-color);
 
}
 
::-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);
}
 
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
	 /*border:1px solid var(--primary-color);*/
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--primary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: rgba(255, 255, 255 ,0.2);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
.container {
	width: 100%;
	padding:0 25px;
	}
}

/************************************* 1200px *************************************/
@media only screen and (max-width: 1200px) {

 header,  header.smaller{
	 position:relative;
	 left:auto;
	 top:auto;
	 padding:10px 0;
 
}
 
 .logo, header.smaller .logo { 
	width:180px;
 
}

.nav-group{
	flex-direction: row-reverse;
	gap:0 20px;
} 
 
 
 
 }
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
 
 
   

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 .heading{
	font-size:24px;
}
 .subheading{
	font-size:20px;
}
  .subtitle{
	font-size:18px;
}
 .footer-left{
	width:40%;
}
.footer-right{
	width:60%;
	}

 
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 .circle{
	display:none;
}

 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 
	}
 
.banner { 
	height:250px;	  
}
.banner h2 {
	font-size:20px;
	 
}
 
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
}

 /*************CARD STYLES***********/

.card{
	padding:15px;
	gap:15px 0;
}
.card-head{
	gap:0 20px; 
}
.card-head .icon{	 
	width:40px;
	height:40px;
}
 
.card-head h2{
	font-size:14px;
	}
 
.card-middle img{
	width:100%;
}

.card-footer{
	font-size:12px;
	width:100%;
}
 
.display-style{ 
	padding:15px;
	gap:15px 0;
 
}
 
.display-style h2{
	font-size:30px;
 
	}  
.display-style h3{
	font-size:14px;
 
	}
/*************SPIN************/
 
 .graphic-area{
 	min-height:inherit;
 }
  .mobile-phone, .spin{
	display:none;
	}
	
 .scroll {
  margin-top:50px;
}

.footer{
	padding:50px 0 0 0;
}
 .footer-left, .footer-right{
	width:100%;
	margin:0 0 20px 0;
}
.footer-right{
	gap:10px 0;
	flex-direction:column;
}
.footer-col{
	width:100%;
}

.lower-footer{
	margin-top:20px;
}
.copy{
	margin-bottom:20px;
}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
.conact-number a{	 
	padding:0;
}
.conact-number .info{
	display:none;
}	 
.conact-number a i{
	left:auto; 
	top:auto;
	position:relative;
 
}

}
/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}