@charset "utf-8";
  

/* 
font-family: "Afacad", sans-serif;
*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Afacad", sans-serif;
	--body-color: #fff;
	--primary-color: #00132C;
	--secondary-color: #DFC484;
	--tertiary-color: #3176BA;
	--quaternary-color:#8F7538;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heavy:700;
 
}

body {

	font-family: var(--body-font);
	font-size: 20px;
	font-style: normal;
	line-height: 30px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-normal);
	color: var(--white);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--primary-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;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

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: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
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-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 /** clients*****/
 
  .client-logo {   
    display: grid;
    grid-gap:20px;
    grid-template-columns: repeat(5, 1fr);
	
    }

  .client-logo div{
  	text-align:center;
	
  	
  }
  
  .client-logo div img{
  	width:100%;
	display:block;
	background-color:#fff;
  }
  
 .client-logo div h2{
	font-size:18px;
	line-height:normal;
	margin-top:10px;
	}
/*-----------background styles------------*/

.boxy{
	padding:40px;
	background-color:rgba(255, 255, 255, 0.1);	 
	outline:1px dashed rgba(255, 255, 255, 0.3);
	outline-offset: -10px;
		-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.boxy:hover{
	transform: scale(1.03);
	background-color:var(--secondary-color);
	color:var(--primary-color) !important;
	outline:1px dashed rgba(255, 255, 255, 2); 	 
}
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.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;
	/*background-color:var(--primary-color);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/ms-group-logo-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:70%;
	margin: -100px 0 0 -100px;
}

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

.container {
	width: 1360px;
	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*******/

.img-style{
	position:relative;
}
.img-style:before{
	position:absolute;
	left:15px;
	top:15px;
	z-index:4;
	width:130px;
	height:130px;
	content:'';
	border-top:1px solid rgba(255, 255, 255, 0.4);
	border-left:1px solid rgba(255, 255, 255, 0.4);
}
.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
 
}

 .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:block;
	position: relative;
}

.section-spacing{
	 padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

/*********************************************/ 
 
 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	  background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.2));	 
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller {
	padding:0;
	position: fixed;
	background-image:none;
	background-color:rgba(0, 0, 0, 0.9);
	}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.top-main {
	border-bottom:1px solid rgba(255, 255, 255, 0.3);
	padding:15px 0;
	transition: all 0.4s ease;
}

header.smaller  .top-main{
	 display:none;
 }
 
 
.logo { 
	width:220px;
	position:relative;
	transition: all 0.4s ease;
}
 
.logo img {
	width:100%;
	display:block;
	transition: all 0.4s ease;
}
header.smaller .logo {
	width:150px;
}
  
.top-info{
	display:flex;
    flex-wrap: wrap;
	align-items: center;
	gap:0 20px;
}  
 .top-info i{
 	margin-right:10px;
 }
 
/***********social ***********/
 
.link {}

.link a {
	
	color:var(--primary-color);
	font-size: 16px; 
	padding: 10px 80px  10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	background-color:var(--secondary-color);
	font-weight:var(--font-bold);
	
}

.link a:before{
	width:30px;
	height:30px;
	position:absolute;	
	top:10px;
	right:10px;
	content:'';
	z-index:2;
	transform: rotate(0deg); 
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:18px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
} 
 
.link a:hover:before{
	transform: rotate(45deg);
 
}
 
.link a:hover { 		 
		background-color:var(--primary-color);
		color:var(--white);
} 


.caps{
	text-transform:uppercase;
}
 
.heading{
	font-size:68px;
	line-height:68px;
	 
}
.heading span{ 
	color:var(--secondary-color);
}
.subheading {
	font-size:42px;
	line-height:normal;
}
 
.subtitle{
	font-size:22px;
 
}
.bold, strong{
	font-weight:var(--font-heavy);
}

.section-title{
	font-size:20px;
	line-height:normal;
	position:relative;
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:1px solid var(--secondary-color);
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
   
 
  

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  background-color:var(--secondary-color);
  padding:20px 0;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 26px;
  line-height:26px;
  color: var(--primary-color);
  font-weight:var(--font-heavy);
  margin:0;
  text-transform:uppercase;
}
.scroll h2 span{
	display:inline-block;
	margin:0 15px;
}


.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%);
  }
}


/*******intro***********/
  
/*******funfacts***********/


.funfacts {
	 
 
}
 
 .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction:row;
	list-style:none;
	margin:0;
	padding:0;

} 

.funfacts ul li{
	width:100%;
	display: flex;
	list-style:none;
	padding:0 25px;
	margin:20px 0;
	border-left:1px solid var(--secondary-color);
	flex-direction:column;
	text-transform:uppercase;
	 
}
 
.funfacts ul li h2{
	margin:0;
	padding:0;
	line-height:80px;
	font-size:60px;
	font-weight:var(--font-heavy);
}
 .funfacts p{
	margin:0;
	font-size:16px;
	 
}
 
  
 /**********************news**********************/
 
 
.news-widget{
  margin-top:50px;
  padding:0 40px;
  border-left:4px solid var(--secondary-color);
 
}
.news-widget a{
  color: var(--white);
 
} 
.news-widget a:hover{
  color: var(--secondary-color);
 
}
 .news-widget h2{
   font-size:34px;
   line-height:normal;
}

.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
}
.date i{
	font-size:16px;
	color:var(--secondary-color);
	vertical-align:middle;
	margin:-5px 10px 0 0;
	 
}
  .news-style p:last-child{
  	margin:25px 0 0 0;
  }
  /********************services scroller**********************/
  
  .display-content{
 	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.9));	 
	transition: all 0.4s ease;
	position:absolute;
	left:0;
	bottom:0;
	padding:40px;
	z-index:3;
	color:var(--white);
 }
 .display-content h2{
	 font-size:30px;
	 line-height:normal;
	 font-weight:var(--font-heavy);
 }

.display-content p:last-child{
	margin:0;
}

.theme-icon{
	width:88px;
	height:88px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	padding:10px;
	display:inline-block;
	transition: all 0.4s ease;
	position:relative;
	z-index:2;
}
.theme-icon img{
	width:100%;
	display:block;
	 
}
.display-style:hover .theme-icon{
	transform: rotate(360deg);
}
.display-style{ 
     width: 100%;
	 /*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 padding:40px;
	 transition: all 0.4s ease;
	 border:1px solid var(--secondary-color);
}

.display-style h2{
	font-size:22px;
	font-weight:var(--font-heavy);
	line-height:normal;
	margin:10px 0;
	position:relative;
	z-index:2;
 
}
.display-style p:last-child{
	margin:0;
	line-height:normal;
	position:relative;
	z-index:2;
}
.display-style:after{
	width:0;
	height:0;
	position:absolute;
	content:'';
	left:50%;
	top:50%;
	background-color:rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	 
}
 .display-style:hover:after{
	width:94%;
	height:94%;
	left:3%;
	top:3%;
}


 /***************/ 
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 20px 0 100px;
	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;
}
.boxy:hover .iconic h2{
	color:var(--primary-color) !important;	
}
.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(--primary-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(--primary-color);
}
.iconic p:last-child{
	margin:0;
}


/***********/ 
 
.contact-info-style{
		width: 100%;
		display: flex;
		flex-wrap: wrap; 
		border: 1px solid var(--secondary-color);
		outline: 4px solid var(--secondary-color);
		outline-offset: -10px;
		padding:80px;
		justify-content: space-between;
  }
 .contact-info-style p{
 	margin:0;
 }
/*********fix buttons**************/ 
.fixbutton{
	width:50px;
	position:fixed;
	top:50%;
	right:0;
	z-index:2;
	margin-top:-95px;
 
}
.fixbutton a{
	width:50px;
	height:50px;
	line-height:50px;	
	/*border-radius:50%;*/
	position:relative;
	color:#fff;
	text-align:center;
	display:block;
	margin:0;
	 -webkit-transition: all 300ms -in-out;
     -moz-transition: all 300ms -in-out;
     transition: all 300ms -in-out;
}
.fixbutton a:hover{
	background-color:var(--black);
}
.fixbutton h5 {
    width: 100px;
    top: 7px;
	right:50px;
    background-color:var(--secondary-color);
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s -in-out;
    -moz-transition: .3s -in-out;
    transition: .3s -in-out;
	opacity:0;
}
.fixbutton a:hover h5{
	 right:60px;
	 opacity:9;
}

.fixbutton h5:before{
	  width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-left: 10px solid  var(--secondary-color);
      border-bottom: 10px solid transparent;
	  position:absolute;
	  top:5px;
	  right:-5px;
	  content:''
	  }
 
 .cal{
 background-color:var(--secondary-color);
 }
.fixbutton .write{
	background-color:var(--primary-color) !important;
}
a:hover.write {
	background-color:var(--secondary-color);
}
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
	color:#fff;
	}
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	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{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	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;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}
 
  


/*************** footer CSS ***************/
 
.footer {
	padding:80px 0;
	margin:0;
	background-color:var(--black);
	color:var(--white);
	position:relative;
	font-size:18px;
}
.footer a {
	color:var(--white);
}
.footer a:hover {
	color:var(--secondary-color);
}
 .footer:before,  .footer:after{
 	width:100%;
 	height:1px;
	background-color:rgba(255, 255, 255, 0.2);
	position:absolute;
	left:0;
	top:10px;
	content:'';
	z-index:2
 }
 
.footer:after{
  	top:auto;
	bottom:10px;
  }
 
 
.footer-col{
	width:31%;
} 
.footer-col p{
	margin:0 0 15px 0;
} 
.footer-logo{} 
 
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--black);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	background-color:var(--secondary-color);

}
.social a:hover  {
	color:var(--white);
	background-color:var(--tertiary-color);

}
  
 /**********************/
 .address-box{
	padding:30px;
	background-color:rgba(0, 0, 0, 0.4);
	 
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	 
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 70px;
	min-height:30px;
	vertical-align:top;
}

 .add h2{
 	font-size:26px; 	 
	margin:0;
	line-height:normal;
 }
 .small-tex{
 	font-size:20px;	 
	margin:0;
	line-height:normal;
 }
.add i{
	width:45px;
	height:45px;
	line-height:45px;
	background-color:var(--secondary-color);
	border-radius: 50%;
	color:var(--black);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--white);
	}
.add a:hover{
	color:var(--tertiary-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(--secondary-color);
	font-size: 16px;
}

/***********ht*********/
.ht-style{
		padding:50px 50px 50px 100px;
		margin:0 0 20px 0;
		position:relative;
		position:relative;
 		background-color:rgba(255, 255, 255, 0.1);
 	 	outline: 1px solid rgba(255, 255, 255, 0.2);
 	 	outline-offset: -10px;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
  }
 
 

.ht-style:hover{ 
	background-color:rgba(255, 255, 255, 0.2); 
 }
 

.ht-style i{
  position:absolute;
  left:40px;
  top:50px;
  font-size:30px;
  color: var(--white);
  } 
  
  .ht-style h2{
  	font-size:22px;
	font-weight:var(--font-medium);
  }

 
 .ht-style p:last-child{
	 margin:0;	
	 color:var(--white);  	 
  }



/*************mission vison****************/
.mission-vision {
    padding: 30px 25px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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


.thank-u-box {
    width: 25%;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    z-index: 2;
    background-color: #fff;
}
.thank-u-box p {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.thank-u-box h3 i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    font-size: 35px;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
}
.thank-u-box .link a {
    padding: 10px 50px 10px 20px;
}


  /************************/
.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;
	}
 

/******************************team-style*****************/

 
 
/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:350px;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-position: center center;
 
	background-image: url(../images/backgrounds/web-theme.jpg);
	background-attachment:fixed;
 
}
.banner:after{
	width: 100%;
	height:50%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(9,54,121,0), rgba(9,54,121,1));
	opacity:0.5;
}
.banner h2 {
	color:var(--white);	
	font-family:var(--demi-font);
	font-size:30px;
	line-height:35px;
	margin:0;
	padding:0;
	position:relative;
	z-index:2;
}


/*************************banners ***************/
 
 

.breadcrumb {   
    display: flex;
	color:var(--grey-dark);
	margin:0;
	position:relative;
	z-index:2;
	 

}
 
.breadcrumb ul {
     border-radius: 50px;
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	line-height:normal;
	background-color:var(--white);
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--grey-dark);	
}
 .breadcrumb a:hover{
   color:var(--secondary-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;
}
  

/*********/

 	

 .web-theme-bg {
	background-image: url(../images/backgrounds/web-theme.jpg);
	background-attachment:fixed;
	}
 
/*********file chosen style**************/

  
 
/**********forms**************/
 
 

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:15px 20px;
	border:1px solid rgba(255, 255, 255, 0.2);
	background-color:transparent;
	color:var(--black);
	display: block;
	/*border-radius:7px;*/
	margin: 0;
	font-size: 18px;
 
}

.sendbutton {
	 
	color: var(--primary-color);
	font-size: 30px;
	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;
	font-weight:var(--font-heavy);
	text-transform:uppercase;
	 
}

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

 
 

::-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;
    /* 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(--white);
     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: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}


 
/************************************* 1400px *************************************/

@media only screen and (max-width: 1360px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 header{
	 position:relative;
	 background-color:var(--primary-color);
	 

}
 header.smaller {
	position: fixed;
	left:0;
	top:0;
	background-image:none;
	
	}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between; 
	align-items: center;
}

.top-main {
	border-bottom:1px solid rgba(255, 255, 255, 0.3);
	padding:0;
}
 
.logo , header.smaller .logo{ 
	width:100%;
	display:flex;
	justify-content: center;
	padding:10px 0;
	 
}
 .logo img,  header.smaller .logo img{
 	width:130px; 
 }
.top-info{
	gap:0 10px;
	font-size:14px;
	width:100%;
	text-align:center;
	justify-content: center;
	margin-bottom:10px;
}  
 
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:50px 0;
 }
 .thank-u-box {
	width: 50%;
 }

 
	
/***********news style*****/
 
 
   

}

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

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 
 
 
body {
	font-size: 16px;
	line-height:24px;
	}
.scrolling-text-wrap{
	padding:15px 0;
}
 
 
.scroll h2 {
  font-size:20px;
  line-height: 20px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 .LeftToRight {
  animation: LeftToRight 5s infinite linear;
}

.heading{
	font-size:30px;
	line-height:34px;
	 
}
 
.subheading {
	font-size:24px;
	line-height:normal;
}
 
.subtitle{
	font-size:20px;
 
}

.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;
	 
} 
.contact-info-style{
	padding:40px;
}

.footer {
	padding:50px 0;
 
}
 
 
.footer-col{
	width:100%;
}  
  
 /**********************/
.add{
	padding:0 0 0 40px;
	margin-bottom:20px;
}

.add i, .social a{
	width:25px;
	height:25px;
	line-height:25px;
	font-size:12px;
 
 
	
} .add h2{
 	font-size:20px; 
 
 }
 .small-tex{
 	font-size:16px;	 
}


 .client-logo {   
    grid-gap:10px;
    grid-template-columns: repeat(3, 1fr);
}
 
}
/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

.banner { 
	height:150px;	 
 
}
.banner h2 {
	font-size:20px;
	line-height:20px;
}
.breadcrumb ul {
    margin: 15px 0 0 0;
    padding: 5px 15px;
	line-height:normal;
}

  .client-logo {   
    grid-gap:10px;
    grid-template-columns: repeat(2, 1fr);
}
  .thank-u-box {
	width: 90%;
 }
}
/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
}

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

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