 
@charset "utf-8";
 @import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap'); 
@font-face {
    font-family: 'hectorregular';
    src: url('../fonts/hectorregular.eot');
    src: url('../fonts/hectorregular.eot') format('embedded-opentype'),
         url('../fonts/hectorregular.woff2') format('woff2'),
         url('../fonts/hectorregular.woff') format('woff'),
         url('../fonts/hectorregular.ttf') format('truetype'),
         url('../fonts/hectorregular.svg#hectorregular') format('svg');
 
		 
} 

:root {
	--body-font: "Questrial", sans-serif;
	--body-color: #000;
	--primary-color: #171717;
	--secondary-color: #E5FD2B;
	--tertiary-color: #FCC225;
	--quaternary-color:#E91A8C;
	--lime-yellow:#E5FD2B;
	--yellow:#FDD440;	
	--green:#23C370;	
	--blue:#77AAFF;
	--purple:#C28EFF;
	--orange:#F37A49;
	--off-yellow:#FFFBDF;
	--off-green:#EDFFE3;	
	--off-blue:#DEF0FF;
	--off-white:#F1F1EF;					
	--black: #171717;
	--white: #fff;
	--grey: #A5A8B0;	
	--grey-light: #E6E6E6;
	--grey-dark: #6D6D6D;
	--grey-deep: #494848;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heaavy:700;
	--heading-font:"hectorregular";
}

body {
	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 28px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);
	background-image: url(../images/bg.svg);
	background-repeat: no-repeat;
	background-position: right top;
	background-attachment: fixed;	 
}


/* *********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 20px 0;
	clear: left;
	padding: 0;
	 
}

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;
	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(--secondary-color) !important;
}
 
 .text-lime-yellow {
	color: var(--lime-yellow) !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);
 
 }
.bg-black {
	background: var(--black);
	color:var(--white)!important;	 
 
 } 

/*************** PRELOADER ***************/
 
/* #preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
} */

/* The Spinner */
/* .spinner {
	width: 30px;
	height: 30px;
	border: 5px solid #000;
	border-top: 5px solid #E5FD2B;
	border-radius: 50%;
	animation: spin 1s linear infinite;
} */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
	background-image: url(../images/preloader.svg);
	background-size:50px;
	background-repeat: no-repeat;
	background-position: center center;
}

/* The Spinner */
.spinner {
	width: 30px;
	height: 30px;
	border: 5px solid #000;
	border-top: 5px solid #E5FD2B;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display:none;
}

/* Keyframes for rotation */
	@keyframes spin {
		0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* Hide class to be added via JS */
	#preloader.hidden {
		opacity: 0;
		visibility: hidden;
}
 
/*********************************/

.container {
	width: 1480px;
	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%;
	}	

.image-style{
	position:relative;
	padding:0;
} 
.image-style img{
	width:100%;
	z-index:2;
	position:relative;
} 
 
.image-style:after{
	position:absolute;
	width:50%;
	height:50%;
	bottom:1px;
	left:-8px;
	content:'';
	/*background-color:var(--lime-yellow);*/
	border-bottom:8px solid var(--lime-yellow);
	border-left:8px solid var(--lime-yellow);
 
} 
/*************HOVER EFFECT*******/

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

 .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;
    transition: all 0.4s ease;
}
 .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%);
    transition: all 0.4s 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;
  transition: all 0.4s ease;
}

.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:20px 0;
	 z-index:5;
	 transition: all 0.4s ease;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
 header.smaller {
	padding:5px 0;
	position: fixed;	
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);
	background-color:var(--black);
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
 .logo { 
	width:180px;
	position:relative;
	transition: all 0.4s ease; 
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width:120px;
}
.head-group{
	display: flex;
    flex-wrap: wrap;
 	align-items: center;
	gap:0 20px;
	color:var(--white);
	background-color:var(--black);
	padding:15px;
	border-radius: 10px;	
}
.tt-small{
 	font-size:14px;
	line-height:14px;
	margin:0;
	color:var(--lime-yellow);
	text-transform:uppercase;
	font-family:var(--heading-font);
 
	}
.head-group-info{
	position:relative;
	padding:0 0 0 40px;	 
	font-size:16px;
	line-height:16px;
	vertical-align:top;
}
.head-group-info h3{
 	font-size:14px;
	line-height:14px;
	font-weight:var(--font-bold);	 
	margin:0;
	line-height:normal;
 }
.head-group-info i{
	width:32px;
	height:32px;
	line-height:32px;
	background-color:var(--lime-yellow);
	border-radius: 50%;	
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
	color:var(--black);
 
}
.head-group-info a{
	color:var(--white);
}
.head-group-info a:hover{
	color:var(--lime-yellow);
}
/***********social ***********/
 
.link {}

.link a {
	color:var(--quaternary-color);
	font-size: 16px; 
	padding: 15px  30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--secondary-color);
	font-family:var(--font-medium);
	transition: all 0.4s ease;
}
.link a:hover {
	color:var(--white);
}
.link a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--primary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} 
 
.link a:hover:before{
	 height:100%;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:50px;
	line-height:normal;
	 
}
.heading span{ 
	font-family:var(--medium);
	
}
.subheading {
	font-size: 40px;
	line-height:normal; 
}
 
.subtitle{
	font-size: 24px;
	line-height:28px;
}
.bold, strong{
	font-family:var(--font-bold);
}

.section-title{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;	 
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
 

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

 
 
 
  
  /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 transition: all 0.4s ease;
}
  
.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: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{
	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;
	margin:0;
	background-color:var(--black);
	color:var(--white);
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
 
.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(--white);
	font-size:18px;
	margin:5px; 
	display:inline-block;
	text-align:center;
}
.social a:hover  {
	color:var(--white);
	background-color:var(--secondary-color);
}

.footer-logo{
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.footer-logo img{
	width:400px;
	filter: brightness(0) invert(1);
}
.pattern{
	width:100%;
	height:22px;
	background-image: url(../images/pattern.svg);
	margin:100px 0;
}
 /**********************/
 .address-box{
	padding:30px;
	border-radius:20px;
	border-bottom:4px solid var(--secondary-color);
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	 
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--lime-yellow);
	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(--grey);
	}
/******************************/

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;
	} 

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

 
 

/***************HERO SECTOIN ***************/
.hero-section { 
	width: 100%;
	height:100vh;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	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;
	
 
}
.hero-section .owl-carousel .item{
	width: 100%;
	height:100vh;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-color:#000;
	}
	
.slide1{
	background-image: url(../images/home-slider/1.jpg);
}
.slide2{
	background-image: url(../images/home-slider/2.jpg);
}
.slide3{
	background-image: url(../images/home-slider/3.jpg);
}
.slide4{
	background-image: url(../images/home-slider/banner4.jpeg);
}

/* Arabic banners */

.slide1_ar{
	background-image: url(../images/home-slider/ar/slider1.jpeg);
}
.slide2_ar{
	background-image: url(../images/home-slider/ar/slider2.jpeg);
}
.slide3_ar{
	background-image: url(../images/home-slider/ar/slider3.jpeg);
}
.slide4_ar{
	background-image: url(../images/home-slider/banner4.jpeg);
}


/*.banner:after{
	width: 100%;
	height:5%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));
	opacity:0.5;
}*/
.hero-section h2 {
	color:var(--white);	
	font-weight:var(--font-bold);
	text-transform:uppercase;	
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 0;
	padding:0;
	position:relative;
	z-index:2;
}
 
 
/*************** 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;
}
 
/**************************/
 
 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 
/**********forms**************/
 
input.file{
    display: none;
}

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

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

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 20px;
	border:1px solid var(--grey);
	background-color:var(--white);
	color:var(--black);
	display: block;
	border-radius:7px;
	margin: 0;
	font-size: 16px;
}

.sendbutton {
	border-radius: 12px;
	color: var(--white);
	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;	 
}

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


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

@media only screen and (max-width: 1480px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 
  
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

 .section-spacing{
	 padding:40px 0;
 }
 
 
   

}

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

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

 
}

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

 header,  header.smaller{
	 width:100%; 
	 position:relative;
	 left:auto;
	 top:auto;
	 padding:5px 0;
	 box-shadow:none;
	 background-color:var(--black);
	 flex-direction:column;
}
header.smaller {
	position:fixed;
}

.logo, header.smaller .logo { 
	width:130px!important;
}
 
.head-group{
	gap:0 10px;
	padding:0;
	border-radius:0; 
}

.tt-small{
 	font-size:12px;
	line-height:12px;
}

.head-group-info{ 
	padding:0;	 
	font-size:12px;
	line-height:12px;
}
.head-group-info span{
   display:none;
}
.head-group-info h3{
 	font-size:14px;
	line-height:14px;
	font-weight:var(--font-bold);	 
	margin:0;
	line-height:normal;
 }
.head-group-info i{
	width:25px;
	height:25px;
	line-height:25px;
	font-size:13px;
	position:relative;
	left:auto;
	top:auto;
	 
 
}
 
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
 font-size: 16px;
 line-height:24px;
	}
 .logo { 
	width:180px;
	position:relative;
	transition: all 0.4s ease; 
} 
.hero-section, .hero-section .owl-carousel .item { 
	height:30vh;	 
}
 
.hero-section 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;
}

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

.footer-logo{
	padding:0 20px;
	 
}
.footer-logo img{
	width:250px;
 
}
.pattern{
	margin:25px 0;
}
}

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

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

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