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


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

/* 
 

/*************** DEFAULT CSS ***************/
:root {
	--body-font:'Plus Jakarta Sans';
	--body-color: #F0F0F0;
	--body-bg:#1A1A1A;
	--primary-color: #2A2A2A;
	--secondary-color: #3A3A3A;
	--tertiary-color: #4A4A4A;
	--quaternary-color:#D4D4D4;	
	--black: #000;
	--white: #fff;
	--grey: #808080;	
	--grey-light: #4A4A4A;
	--grey-dark: #1A1A1A;		 	 
	--font-medium:'Plus Jakarta Sans';
	--font-bold:'Plus Jakarta Sans';
	--heading-font:'Plus Jakarta Sans';
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight:normal;
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(60, 60, 65, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 80%, rgba(50, 50, 55, 0.3) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 50%, rgba(45, 45, 50, 0.2) 0%, transparent 70%),
		linear-gradient(135deg, #0a0a0a 0%, #1a1a1c 20%, #252528 40%, #1e1e20 60%, #151517 80%, #0a0a0a 100%);
	background-attachment: fixed;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
		radial-gradient(ellipse at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
	pointer-events: none;
	z-index: -1;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
	opacity: 0.03;
	pointer-events: none;
	z-index: -1;
}


/* 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: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 50%, #1F1F1F 100%);
}

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

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

::selection {
	background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 50%, #1F1F1F 100%);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 50%, #1F1F1F 100%);
	/* 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;
	font-size: 100%;
 
}

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

.hr {
	margin: 20px 0 50px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255 ,0.4);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 .hr:after{
 	width:100px;
	 height:4px;
	 position:absolute;
	 left:50%;
 	bottom:0;
 	content:'';
	margin-left:-50px;
	background-image: linear-gradient(to right, #1F1F1F, #2A2A2A);
 }
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(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
 .transparent-box{
 	background-color:rgba(0, 0, 0, 0.1);
	padding:60px;
 }
.transparent-box:hover{
   color:var(--white);
   }
 .transparent-box:hover img { 
	transition: all 0.4s ease;
	 
}  
.transparent-box:hover img { 
	filter: brightness(0) invert(1);
}
.bg-gradient-boxy{
	padding:60px;
	background-image: linear-gradient(to right, #1F1F1F, #2A2A2A);
	color:var(--white)!important;	
	transition: all 0.4s ease; 
}
.bg-gradient-boxy:hover{
	 
	background-image: linear-gradient(to left, #1F1F1F, #2A2A2A);
 
}
.bg-gradient{
	background-image: linear-gradient(to right, #1F1F1F, #2A2A2A);
	color:var(--white)!important;	 
}
.bg-primary {
	background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 50%, #1F1F1F 100%);
	 
}
.bg-secondary {
	background: #3A3A3A;
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }
.bg-white {
	background:
		radial-gradient(ellipse at 40% 30%, rgba(55, 55, 60, 0.5) 0%, transparent 50%),
		radial-gradient(ellipse at 60% 70%, rgba(45, 45, 50, 0.4) 0%, transparent 50%),
		linear-gradient(135deg, #0d0d0f 0%, #18181a 25%, #202022 50%, #18181a 75%, #0d0d0f 100%);
	color: #F0F0F0;
}
.bg-white p,
.bg-white .subtitle {
	color: #E0E0E0;
}
.bg-blue {
	background: linear-gradient(135deg, #1a1a1c 0%, #252528 25%, #2a2a2d 50%, #252528 75%, #1a1a1c 100%);
	color: #F5F5F5;
	border: 1px solid rgba(150, 150, 160, 0.15);
 }
.bg-blue p,
.bg-blue .subtitle {
	color: #E0E0E0;
}/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1c 25%, #202022 50%, #1a1a1c 75%, #0a0a0a 100%);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../images/startlogo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:90%;
	margin: -100px 0 0 -100px;
	filter: brightness(0) invert(1);
}

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

.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;
     -webkit-transition: all 600ms ease-in-out;
     -moz-transition: all 600ms ease-in-out;
     transition: all 600ms ease-in-out;
}
 .hover-effect::before, .hover-effect:after {
     position: absolute;
     top: 10px;
     right: 10px;
     bottom: 10px;
     left: 10px;
     content: '';
     opacity: 0;
     -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
     transition: opacity 0.35s, transform 0.35s;
     z-index:3 !important;
}
 .hover-effect::before {
     border-top:1px solid #fff;
     border-bottom:1px solid #fff;
     -webkit-transform: scale(0,1);
     transform: scale(0,1);
}
 .hover-effect::after {
     border-right:1px solid #fff;
     border-left:1px solid #fff;
     -webkit-transform: scale(1,0);
     transform: scale(1,0);
}
 .hover-effect:hover::before, .hover-effect:hover::after {
     opacity: 1;
     -webkit-transform: scale(1);
     transform: scale(1);
}
.hover-effect img {
     position: relative;
     width:100%;
	 display:block;
     transition: 0.5s ease;
     -o-transition: 0.5s ease;
     -webkit-transition: 0.5s ease;
}
 .hover-effect:hover img {
     -webkit-transform:scale(1.1);
     -moz-transform:scale(1.1);
     -o-transform:scale(1.1);
     -ms-transform:scale(1.1);
     transform:scale(1.1);
}

.hover-effect i{
    width:70px;
    height:70px;
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 50%, #1A1A1A 100%);
    color:#fff;
    position:absolute;
	right:-70px;
	bottom:-70px;
    z-index:4;
    line-height:70px;
    text-align:center;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
   	right:0;
	bottom:0;
}

 .hover-effect i:hover{
	 background-color:var(--secondary-color);
	}
/**********video settings******/
 .video-wrap{
	 width:100%;
	 height:100vh;
	 position:relative;
	 overflow:hidden;
 	 
	/* background-image: url(../images/backgrounds/video-poster.jpg);
	 background-attachment:fixed;*/
 }
.responsive-video {
  width: 100%;        /* take full width of container */
  height: auto;       /* keep aspect ratio */
  max-width: 100%;    /* don’t overflow */
  display: block;
}
.video-bg {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    pointer-events: none;
    -webkit-transition: display .3s;
    transition: display .3s;
}
video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-content{
	width: 100%;
	height:100%;
    display: flex;
    flex-wrap: wrap;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	justify-content: center;
	flex-direction:column;
	z-index:3;
	background-color: rgba(0, 0, 0,0.1);
	color: #ffffff;
}
.video-content h1{
	font-size:58px;
	line-height:normal;
	font-family:var(--font-bold);
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #ffffff;
	color: #ffffff;
}

.video-content h2{
	font-size:20px;
	line-height:30px;
	font-family:var(--font-medium);
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #ffffff;
	color: #ffffff;
}

/**********video settings end******/

main{
	overflow-x:hidden !important;
}
		

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:20px 50px;
	 z-index:5;
	 transition: all 0.4s ease;
}
 header.smaller {
	padding:15px 50px;
	position: fixed;
	background: linear-gradient(135deg, rgba(15, 15, 17, 0.97) 0%, rgba(25, 25, 28, 0.97) 50%, rgba(15, 15, 17, 0.97) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 
.logo { 
	width:220px;
	position:relative;
	transition: all 0.4s ease; 
}
.logo img {
	width:100%;
	display:block;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}
header.smaller .logo {
	width:180px;
}
 header.smaller .logo img {
	filter: brightness(0) invert(1);
} 
  
 
/***********buttons settings ***********/


.link {}

.link a {
	
	color:var(--white);
	font-size: 14px; 
	padding: 10px 40px  10px 0;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius:12px;
	line-height:normal;
	font-family:var(--font-medium);
	
	 
}

.link a:before{
	width:30px;
	height:30px;
	position:absolute;	
	/*background-color:var(--primary-color);
	border-radius: 50px;*/
	top:7px;
	right:0;
	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 { 		 
 
		color:var(--secondary-color);
} 

/*****************/
 
 .link-fill {}

 .link-fill a {
	font-size: 14px;
	padding: 20px  50px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 80px;
	transition: all 0.4s ease;
	background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a8a8a8 100%);
	color: #1a1a1a;
	font-family:var(--font-medium);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
  .link-fill a:hover{
	background: linear-gradient(135deg, #d0d0d0 0%, #f0f0f0 25%, #e0e0e0 50%, #c8c8c8 75%, #b8b8b8 100%);
	color: #0a0a0a;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  .link-fill span{
	position:relative;
  	z-index:2;
  }
 /*.link-fill a:before{
 	width:110%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	transition: all 0.4s ease;
	background-color:var(--black);
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
 }*/
 /*.link-fill a:hover:before{ 
	height:110%;
 }*/
 
.caps{
	text-transform:uppercase;
}
 
 
 
.heading{
	font-size:44px;
	line-height:44px;

}
.heading span{
	color:var(--secondary-color);

}
.subheading {
	font-size: 36px;
	line-height:normal;
}

.subtitle{
	font-size: 24px;
	line-height:normal;
}
.heading-font, .bold, strong{
	font-family:var(--font-bold);
}

/* Silver Metallic Text Effect */
.silver-text,
.heading,
.subheading,
.subtitle,
h1, h2, h3, h4, h5, h6 {
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#e8e8e8 15%,
		#c0c0c0 30%,
		#a8a8a8 45%,
		#d0d0d0 55%,
		#b8b8b8 70%,
		#e0e0e0 85%,
		#f0f0f0 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Silver text for dark sections */
.bg-white .heading,
.bg-white .subheading,
.bg-white .subtitle,
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#e8e8e8 15%,
		#c0c0c0 30%,
		#a8a8a8 45%,
		#d0d0d0 55%,
		#b8b8b8 70%,
		#e0e0e0 85%,
		#f0f0f0 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title{
	width: 100%;
    display: flex;
    flex-wrap: wrap; 	 
}
.section-title span{
	font-size:14px;
	line-height:normal;
	padding:5px 20px;
	font-family:var(--font-medium);
	display:block;
	border:1px solid var(--white);
	border-radius: 50px;	 
}
  
/****************************/
  
.pos-rel{
	position:relative;
}
 
 /**********animated line *********/
 
 .scroll-down{
 	width:100px;
	height: auto;
	bottom:70px;
	left: 50%;
	margin-left:-50px;
	position: absolute;
	overflow: hidden;
	text-align:center;
	color:#fff;
	font-size:20px;
	z-index:3;
	font-size:10px;
	text-transform:uppercase;
	line-height:normal;
	padding-top:70px;
	}
 .scroll-down a{
 	color:var(--white);
 }
 
  .scroll-down a:hover{
 	color:rgba(255, 255, 255,0.5);
 }		
.hscroll-line {
	left: 0px;
	top:10px;
	height: 1px;
	position: absolute;
	overflow: hidden;
    width:100px;
    transform: rotate(90deg);
    tranform-origin:50% 50%;
 
	 
}


.hscroll-line::before,
.hscroll-line::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: ""
}

.hscroll-line:before {
	background: #ffffff;
}

.hscroll-line::after {
	background: rgba(0, 0, 0, 0.5);
	animation: move 3s infinite
}

@keyframes move {
	0% {
		transform: translate3d(-200%, 0, 0)
	}
	60% {
		transform: translate3d(100%, 0, 0)
	}
	100% {
		transform: translate3d(100%, 0, 0)
	}
}


/***********key fram animation*******/

.up-down-animation{
	animation: MoveUpDown 8s linear infinite;
}	
@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-45px);
  }
}
@keyframes MoveUpDown2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}
/**********key services*******/
.key-text{
	border-bottom:1px solid  rgba(255, 255, 255, 0.2);
	margin-bottom:50px;
	padding-bottom:50px;
}

.key-services{      
    grid-template-columns: repeat(3, 1fr);
	display: grid;	
	position:relative;
}
.border-right{
	border-right:1px solid rgba(255, 255, 255, 0.4); 
}
.border-bottom{	 
	border-bottom:1px solid rgba(255, 255, 255, 0.4);
}
.key-style{
	position:relative;
	/*aspect-ratio: 1.3 / 1; */
	padding:60px 25px;		
	transition: all 0.4s ease;
	display: flex;
    flex-wrap: wrap;
	align-items: center; 
	}	

.over-effect{
	position:relative;
}
.over-effect:before{
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:-1;
	transition: all 0.4s ease;
	background-image: linear-gradient(to right bottom, #2A2A2A, #3A3A3A);
	}
.over-effect:hover:before{
	height:100%;
}
	
.ol-top, .ol-bottom{
	width:100%;
	height:1px;
	background: linear-gradient(135deg, #1A1A1A 0%, #252525 50%, #1A1A1A 100%);
	position:absolute;
	left:0;
	top:-1px;
	z-index:2;
}	
.ol-bottom{
	top:auto;
	bottom:0;
} 
.ol-left, .ol-right{
	width:1px;
	height:100%;
	background: linear-gradient(135deg, #1A1A1A 0%, #252525 50%, #1A1A1A 100%);
	position:absolute;
	left:-1px;
	top:0;
	z-index:2;
}
.ol-right{
	left:auto;
	right:0;
}
.dot{
	position:absolute;
	right:-3px;
	bottom:-3px;
	width:6px;
	height:6px;
	z-index:2;
	background-image: linear-gradient(to right bottom, #2A2A2A, #3A3A3A);
	border-radius: 10px;
}

/************why choose us************/

.why-choose-us{  
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    }
	
.why-style{
	margin: -1px 0 0 -1px;
	border:1px solid rgba(150, 150, 160, 0.2);
	padding:30px;
	transition: all 0.4s ease;
}
.why-style:hover{
	color:var(--white);
	border-color: rgba(200, 200, 210, 0.3);
}

.why-style p:last-child{
	margin:0;
}
.why-style-head{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	margin-bottom:25px;
	justify-content: space-between;
	}

.number{
	font-size:68px;
	line-height:1.2;
	padding-bottom:5px;
	background: linear-gradient(180deg, rgba(200,200,210,0.5) 0%, rgba(170,170,180,0.4) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family:var(--font-bold);
	position:relative;
	top:0;
}
.why-style-icon{
	width:60px;
}
.why-style-icon img{
	width:100%;
	filter: brightness(0) invert(1);
}
.why-style:hover .why-style-icon img{
	filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,0.3));
}
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.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-style{ 
     width: 100%;	  
     overflow: hidden;	 
	 position:relative;
	 background-color:rgba(0, 0, 0, 0.2);
	 transition: all 0.4s ease;
}


.news-widget{
  	padding:40px ;
 
}

 .news-widget h2{
   font-size:24px;
  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-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 /*****ICOINC**/
.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: 22px;
	font-family:var(--font-bold);
	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:5px;
	transition: all 0.4s ease;
}
.webicon img{
	display:block;
	width:100%;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
.webicon:hover{
	/*background-color:var(--primary-color);*/
}
.iconic p:last-child{
	margin:0;
}

/****blockquote******/
.blockquote{
	padding:50px;
	background: linear-gradient(135deg, #151517 0%, #1e1e20 50%, #151517 100%);
	color:var(--body-color);
	outline-offset: -10px;
	outline:1px solid rgba(150, 150, 160, 0.3);
	position:relative;
	z-index:2;
}

.chairman-info{
	padding-top:20px;
	margin-top:25px;
	font-size:14px;
	border-top:1px solid var(--grey);
}

.chairman-info span{
	color:var(--secondary-color);
	font-family:var(--font-medium);
	font-size:18px;
	}
	
.chairman-photo{
	width:180px;
	border-radius: 50%;
	overflow:hidden;
}
.chairman-photo img{
	width:100%;
	display:block;
	
}

.overlap{
	width:100%;
	height:30%;
	position:absolute;
	left:0;
	bottom:0;
	background: linear-gradient(135deg, #1A1A1A 0%, #252525 50%, #1A1A1A 100%);
}
/*******PROCESS STYLE*************/


.order-style{
	width:100%;
	display:block;
	position:relative;
	padding:50px 0 50px 120px;
	min-height:100px;
	border-bottom:1px solid rgba(150, 150, 160, 0.2);
	transition: all 0.4s ease;
}
 .order-style:hover{
 	padding:50px 0 50px 100px;
 }
.order-style:last-child{
	border-bottom:0;
}
.order-style h2{
	font-size: 22px;
	font-family:var(--font-bold);
	margin:0 0 15px 0;
	line-height:30px;
	background: linear-gradient(180deg, #e0e0e0 0%, #b0b0b0 50%, #d0d0d0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.order-number{
	position:absolute;
	left:0;
	top:50px;
	font-size:50px;
	font-style:italic;
	transition: all 0.4s ease;
	background: linear-gradient(180deg, rgba(200,200,210,0.3) 0%, rgba(150,150,160,0.15) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
 .order-style:hover .order-number{
	background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 50%, #b8b8b8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
 }
.order-style p:last-child{
	margin:0;
}

.order-style:before{
	width:0;
	height:1px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	z-index:-1;
	transition: all 0.4s ease;
	background: linear-gradient(to right, rgba(180,180,190,0.4), rgba(120,120,130,0.2));
	}
.order-style:hover:before{
	width:100%;
}
  
 /*********brands***********/
 

 /*******categories grid***********/
 

 /*******categories grid***********/
 
.brands-listing{
 
	} 
.brands-listing ul{ 
	flex: 0 0 100%;
	display:flex;
    flex-wrap: wrap; 
	list-style:none;
	margin:0;
	padding:0;
	gap:20px;
	justify-content: center;
	}
	
.brands-listing ul li{
	  display:flex;
      width:210px;
	  list-style:none;
	  margin:0;
	  padding:0;
	  border:0;
	  background: linear-gradient(135deg, #1a1a1c 0%, #252528 50%, #1a1a1c 100%);
	  transition: all .3s ease-in-out;
	  border:1px solid rgba(150, 150, 160, 0.2);
	}
.brands-listing ul li:hover{
	transform: scale(1.08);
	}	
.brands-listing ul li img{   
	width:100%;	 
	display:block; 	 
	transition: all 0.4s ease;
  }
 
.brands-listing ul li:hover img{
	filter: grayscale(100%);
	 
  }
  
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********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;
}
 
/***********************/
.folio-style{
	padding:20px;
	background-image: linear-gradient(to right, #2A2A2A, #3A3A3A);
}
.folio-style h2{
	color:var(--white);
	padding:20px 0 0 0;
	font-size:18px;
	font-family:var(--font-medium);
	line-height:normal;
	 
}
.project-name{
	padding:20px 0;
	font-size:18px;
	font-family:var(--font-medium);
	line-height:normal;
	color:var(--black);
	border-bottom:1px solid var(--black);
}  


/*************** footer CSS ***************/
 
.footer{
	/*border-top:1px solid rgba(255, 255, 255, 0.2);*/
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	padding:50px 0;
} 
.footer p:last-child{
	margin:0;
}
.footer-left{
 	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	gap:0 25px;
	}
 
 
.footer-logo { 
	width:200px;
	position:relative;
	transition: all 0.4s ease; 
}
.footer-logo img {
	width:100%;
	display:block;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}
 
   .footer-right{
 	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	gap:0 50px;
	}
 .footer-right h2{
 	font-size:14px;
	line-height:normal;
	margin:0 0 15px 0;
	font-family:var(--font-bold);
 }
 	
 .footer-right ul{
 	margin:0;
 	padding:0;
 	list-style:none;
	font-size:14px;
 }
 .footer-right ul li{
	 padding:5px 0;
	 line-height:normal;
	 font-size:18px;
 
 }
.copyright{
	padding:35px 0;
	display:flex;
	gap:0 20px;
	text-transform:uppercase;
	font-size:11px;
	letter-spacing:1px;
} 
/******************/
 .social-container{
	width: 100%;
	padding:50px 0;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: space-between;
    
}
.social-container p:first-child{
	margin:0 0 15px 0;
}
.social-container ul{
	width: 28%;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
	margin:0;
	padding:0;
	list-style:none;
	/*gap:30px 3.5%;*/
	justify-content: space-between;
}
.social-container ul li{
	 
	font-size:14px;
	line-height:20px;
	position:relative;
	padding:0 0 0 70px;
	font-family:var(--font-bold);
	transition: all 0.4s ease;
	 
}
.social-container ul li:hover{
	padding:0 0 0 60px;
}


.social-container ul li span{
	color:var(--white);
	font-size:12px;
	font-family:var(--body-font);
	}
	
.social-container ul li i{
	position:absolute;
	left:0;
	top:0;
	font-size:40px;
}
.social-container ul li a{
	color:var(--white);
}	
.social-container ul li a:hover{
	color:var(--secondary-color);
}
 
 /**********************/
  .address-row{   
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    }
 .address-box{
	border:1px solid rgba(150, 150, 160, 0.3);
	position:relative;
	padding:50px;
	margin:-1px 0 0 -1px;
	transition: all 0.4s ease;
	background: rgba(20, 20, 22, 0.5);
}
 .address-box:hover{
 color:var(--white);}
 .address-box h2{
 	font-size:22px;
	margin:0 0 20px 0;
	line-height:normal;
	font-family:var(--font-bold);
 }
 
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

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

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: rgba(40, 40, 45, 0.5);
	}
tr:nth-of-type(even) {
	background: rgba(30, 30, 35, 0.5);
	}

th {
	background: linear-gradient(135deg, #2a2a2c 0%, #3a3a3c 50%, #2a2a2c 100%);
	color: var(--body-color);
	}

td, th {
	padding: 8px 15px !important;
	border: 1px solid rgba(150, 150, 160, 0.2);
	text-align: left;
	font-size: 14px;
	color: var(--body-color);
	} 

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

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:50vh;
	padding-bottom:25px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	align-items: center;
	justify-content: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-attachment:fixed !important; */
	 
 
}
.banner:after{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-color:rgba(0, 0, 0, 0.5);
	opacity:0.5;
}
.banner h2 {
	color:var(--white);
	font-weight:normal;
	font-family:var(--font-bold);
	font-size:60px;
	line-height:1.2;
	margin:0;
	padding:10px 0;
	position:relative;
	z-index:2;
	text-align:center;
}
 
 
 /*****************************/

.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;
	border:1px solid var(--white);
	 
}

.breadcrumb li {
    margin: 0;
	font-size:12px;
	line-height:normal;
	color:var(--white);	
	font-family: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(--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;
}
.fix-bg{
	background-attachment:fixed;
} 
/**********************/
 .address{   
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    }
 .address-box{
	 border:1px solid ver(--white);
	 }	
	 
/**********forms**************/
.formstyle{
	}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}
.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid rgba(150, 150, 160, 0.3);
	background: rgba(20, 20, 22, 0.8);
	color: var(--body-color);
	display: block;
	margin: 0;
	font-size: 16px;
}

.sendbutton {
	border-radius: 50px;
	color: #1a1a1a;
	font-size: 30px;
	font-family:var(--font-medium);
	background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a8a8a8 100%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 24px 50px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	cursor: pointer;
	transition: all 0.4s ease;
}

.sendbutton:hover {
	background: linear-gradient(135deg, #d0d0d0 0%, #f0f0f0 25%, #e0e0e0 50%, #c8c8c8 75%, #b8b8b8 100%);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
 
::-webkit-input-placeholder {
	color: rgba(200, 200, 210, 0.5);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: rgba(200, 200, 210, 0.5);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(200, 200, 210, 0.5);
}

:-ms-input-placeholder {
	color: rgba(200, 200, 210, 0.5);
}
 
/*************** 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(--secondary-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: var(--white);
     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;
	}

.key-services{      
    grid-template-columns: repeat(2, 1fr);
	
	}
.border-right{
	border-right:0; 
}
.border-bottom{	 
	border-bottom:0;
}	
.key-style {
	border:1px solid rgba(255, 255, 255, 0.4);
	margin:-1px 0 0 -1px; 
	}
.dot{
	display:none;
}
.social-container ul {
    width: 30%;
}
  
}

/*************** FEATURED WORKS PAGE ***************/

/* Featured Work Card - Large */
.featured-work-card {
	display: flex;
	gap: 0;
	margin-bottom: 40px;
	background: linear-gradient(135deg, #1a1a1c 0%, #222224 50%, #1a1a1c 100%);
	border: 1px solid rgba(150, 150, 160, 0.15);
	overflow: hidden;
	transition: all 0.4s ease;
}
.featured-work-card:hover {
	border-color: rgba(200, 200, 210, 0.25);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.featured-work-card.reverse {
	flex-direction: row-reverse;
}
.featured-work-image {
	flex: 0 0 55%;
	position: relative;
	overflow: hidden;
}
.featured-work-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 450px;
	transition: transform 0.6s ease;
}
.featured-work-card:hover .featured-work-image img {
	transform: scale(1.05);
}
.featured-work-number {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: 80px;
	font-family: var(--font-bold);
	line-height: 1;
	background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(200,200,210,0.08) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.featured-work-card.reverse .featured-work-number {
	left: auto;
	right: 20px;
}
.featured-work-content {
	flex: 0 0 45%;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-work-tag {
	display: inline-block;
	padding: 6px 16px;
	background: linear-gradient(135deg, rgba(180,180,190,0.15) 0%, rgba(120,120,130,0.1) 100%);
	border: 1px solid rgba(150, 150, 160, 0.3);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #c0c0c0;
	margin-bottom: 20px;
	width: fit-content;
}
.featured-work-content h2 {
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 15px;
	background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 50%, #e8e8e8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.featured-work-location {
	color: #888;
	font-size: 14px;
	margin-bottom: 20px;
}
.featured-work-location i {
	margin-right: 8px;
	color: #a0a0a0;
}
.featured-work-content p {
	color: #c8c8c8;
	margin-bottom: 25px;
	line-height: 1.7;
}
.featured-work-specs {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(150, 150, 160, 0.2);
	padding-top: 20px;
}
.featured-work-specs li {
	color: #b0b0b0;
	font-size: 14px;
	margin-bottom: 8px;
}
.featured-work-specs li strong {
	color: #d0d0d0;
}

/* Works Grid - Two Column */
.works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

/* Work Card - Smaller */
.work-card {
	background: linear-gradient(135deg, #1a1a1c 0%, #222224 50%, #1a1a1c 100%);
	border: 1px solid rgba(150, 150, 160, 0.15);
	overflow: hidden;
	transition: all 0.4s ease;
}
.work-card:hover {
	border-color: rgba(200, 200, 210, 0.25);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.work-card-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}
.work-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.work-card:hover .work-card-image img {
	transform: scale(1.08);
}
.work-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.work-card:hover .work-card-overlay {
	opacity: 1;
}
.work-card-overlay i {
	font-size: 30px;
	color: #fff;
	width: 60px;
	height: 60px;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.work-card:hover .work-card-overlay i {
	border-color: #fff;
	transform: scale(1.1);
}
.work-card-number {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 48px;
	font-family: var(--font-bold);
	line-height: 1;
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(200,200,210,0.1) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.work-card-content {
	padding: 30px;
}
.work-card-tag {
	display: inline-block;
	padding: 4px 12px;
	background: linear-gradient(135deg, rgba(180,180,190,0.12) 0%, rgba(120,120,130,0.08) 100%);
	border: 1px solid rgba(150, 150, 160, 0.25);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #a8a8a8;
	margin-bottom: 15px;
}
.work-card-content h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 10px;
	background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 50%, #e0e0e0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.work-card-location {
	color: #777;
	font-size: 13px;
	margin-bottom: 15px;
}
.work-card-location i {
	margin-right: 6px;
	color: #999;
}
.work-card-content p {
	color: #b8b8b8;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1280px) {
.social-container ul {
    width: 50%;
}
}

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

 .section-spacing{
	 padding:40px 0;
 }
 
  header{
	 padding:20px 20px;
 
}
 header.smaller {
	padding:10px 20px;	 
}

 
.logo { 
	width:150px;
	 
}
 
 
 header.smaller .logo img {
	filter: brightness(0) invert(1);
}
   
.video-content h1{
	font-size:28px;
	line-height:30px;
 
}

.video-content h2{
	font-size:18px;
	line-height:20px;
}

/* Featured Works - Tablet */
.featured-work-card {
	flex-direction: column;
}
.featured-work-card.reverse {
	flex-direction: column;
}
.featured-work-image {
	flex: none;
}
.featured-work-image img {
	min-height: 350px;
}
.featured-work-content {
	flex: none;
	padding: 30px;
}
.featured-work-content h2 {
	font-size: 26px;
}
.featured-work-number {
	font-size: 60px;
}
.works-grid {
	grid-template-columns: 1fr;
	gap: 25px;
}
.work-card-image {
	height: 250px;
}

}

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

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
 .brands-listing ul li{ 
      width:100px;
}
 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
/* Fix for mobile background - remove fixed attachment */
body {
	background-attachment: scroll;
}

body::before,
body::after {
	position: absolute;
}

/**********video settings******/
 .video-wrap{
	 width:100%;
	 height:70vh;
}

/********************/
.video-content h1{
	font-size:18px;
	line-height:28px;
	 
}

.video-content h2{
	font-size:12px;
	line-height:14px;
}
 
 .video-content{
	 padding:0 25px;
 }
 
  
.heading{
	font-size:34px;
	line-height:46px;

}
 
.subheading {
	font-size: 24px;
	line-height:28px;
}
 
.subtitle{
	font-size: 20px;
	line-height:22px; 
}
 
.transparent-box{
	padding:40px;
}

.why-choose-us{  
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

  .social-container ul{
	gap:30px 3.5%;
}
.social-container ul li{
 
	padding:0 0 0 40px;
	 
}
.social-container ul li i{
	font-size:24px;
}
 .social-container ul li i{
	font-size:30px;
}

 .address-box{
	padding:20px;
 
}
.banner {
	width: 100%;
	height:200px;
	/* increased so page titles sit below the logo on mobile */
	padding-top: 140px;
}
   
.social-container ul {
    width: 100%;
}
.social-container {
	flex-direction: column;
}
.social-container .heading {
	margin-bottom: 35px;
}

}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 16px;
	line-height:24px;
	}
 

  .link-fill a { 
	font-size: 12px; 
	padding: 5px  20px;
	line-height:normal;
}
 
.banner h2 {
	font-size:24px;
	line-height:1.2;
	padding:5px 0;
}
 
.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:0;
 
	 
} 
.key-services{      
    grid-template-columns: repeat(1, 1fr);
	}

.key-style{
	padding:25px;
	border:0;
	border-bottom:1px solid rgba(255, 255, 255, 0.4);
	margin:0;
	 
	}
	
.why-style{ 
	padding:20px;
}
 
.why-style-head{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	margin-bottom:25px;
	justify-content: space-between;
	}
	
.number{
	font-size:50px;
	line-height:1.2;
	padding-bottom:5px;
}
.why-style-icon{
	width:50px;
}
 .order-style{
	padding:20px 0 20px 80px;
	 
}
.order-style h2{
	font-size: 20px;
}

.order-number{	
	top:20px;		 
	font-size:30px;
 
	
}
.heading{
	font-size:24px;
	line-height:26px;

}
 
.subheading {
	font-size: 20px;
	line-height:22px;
}
 
.subtitle{
	font-size: 18px;
	line-height:20px; 
}
.footer-left{
	gap: 25px 0;
}
 .footer-right{
	gap: 10px 25px;
	margin-top:25px;
}
  .address-row{   
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    }

   .bg-gradient-boxy{
	padding:20px;

}

/* Featured Works - Mobile */
.featured-work-image img {
	min-height: 250px;
}
.featured-work-content {
	padding: 25px;
}
.featured-work-content h2 {
	font-size: 22px;
}
.featured-work-number {
	font-size: 50px;
	bottom: 15px;
	left: 15px;
}
.featured-work-card.reverse .featured-work-number {
	right: 15px;
}
.work-card-image {
	height: 220px;
}
.work-card-content {
	padding: 20px;
}
.work-card-content h3 {
	font-size: 18px;
}
.work-card-number {
	font-size: 36px;
}
}


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

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

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