@charset "utf-8";
  

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

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

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


/*************** DEFAULT CSS ***************/
:root {
	--body-font: "BasisGrotesqueArabicProRegular", sans-serif;
	--body-color: #000;
	--primary-color: #BA995C;
	--secondary-color: #F1EBDE;
	--tertiary-color: #835C25;
	--quaternary-color:#624317;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #1F1F1F;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium: 'BasisGrotesqueArabicProMedium';
	--font-bold: 'BasisGrotesqueArabicProBold';
	--heading-font: 'TFArrowMedium';
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-weight-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white); 
	transition: background 0.2s linear;
	background-attachment:fixed;
	overflow-x: hidden;
}
/*******************/

.mode-toggle{
	position:absolute;
	top:5px;
	right:0;
}
body.dark {
	background-color: var(--black);
	color:var(--white);
	}
body.dark .link a{
	border:1px solid  var(--white);
	color:var(--white);
	} 
body.dark .link a:hover{
	border:1px solid  var(--grey-dark);
	background-color: var(--grey-dark);
	color:var(--white);
	}
body.dark  .dec-title span:after{
	 background-color:var(--white);
}	
	
body.dark  header, body.dark  header.smaller{
	 background-color:var(--black);
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: var(--black);
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {
	color: var(--primary-color);
	}

.fa-sun {
	color: var(--primary-color);
	}

.checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
  
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
}
/*********************/

/* 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);
}
body.dark a{
	color:var(--white);
	}
body.dark a:hover{
	color:var(--primary-color);
	}

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

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

.hr {
	margin: 50px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
body.dark  .hr {
	border-top: 1px solid rgba(255, 255, 255 ,0.2);
}
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------------*/
 
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
 
}
body.dark .bg-primary, body.dark .bg-secondary{
	color:var(--white);
	background: var(--grey-dark) !important;	  
	}

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

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

/*************** PRELOADER ***************/

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

#status {
	    width: 100%;
    height: 100%;
    position: absolute;
    /* background-color: var(--white); */
    left:0;
    top: 0;
    background-image: url(../images/loader-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 300px;
    margin: 0;
}

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

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

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

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

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

 
.hover-effect:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222529;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.3s
}
 .hover-effect:before {
 	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease
	}
	
 .hover-effect:hover:after,
 .hover-effect:hover:before {
    opacity: 0;
    transform: none
}

 .hover-effect:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.5;
    transition: transform 0.9s ease, opacity 0.9s ease
}

 .hover-effect:before {
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease
}

.main-outer{
	width:100%;
	overflow-x:hidden;
	}
section {
	width: 100%;
	display:block;
	position: relative;
}


.section-spacing{
	 padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 150px;
	width:100%; 
}
.tall-content-wrap{
	border-left:1px solid rgba(0, 0, 0 ,0.2);
	padding:0 0 0 50px;
	}
.tall-content-wrap2{
	border-right:1px solid rgba(0, 0, 0 ,0.2);
	padding:0 50px 0 0;
	}
body.dark .tall-content-wrap{
	border-left:1px solid rgba(255, 255, 255 ,0.2);
}
/*********************************************/ 
 

 header{
	 width:100%; 
	 position:absolute;
	 background-color:rgba(255, 255, 255, 0.8);
	 left:0;
	 top:0;
	 padding:20px 0;
	 z-index:5;	  
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller {
	padding:10px 0;
	position: fixed;	 
	background-color:var(--white);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}

.header{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position:relative;
	padding-right:90px;
}
 
 
.logo { 
	width:184px;
	position:absolute;
	left:50%;
	top:-20px;
	margin-left:-92px;
	z-index:2;
	transition: all 0.4s ease;
}
 .default{}
 .logo-mobile{
 	display:none !important;
 }
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	width: 120px;
	margin-left:-60px;	
	top:-12px; 
}
  
 .explore-bt {
  width:25px;
  height:190px;
  position: absolute;
  z-index:4;
  top:50%;
  margin-top:-80px;
  left: 30px;
  line-height:25px;
  font-size: 40px;
  color: #FFF;  
  text-align: center;
  padding-top: 0;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  font-family:var(--font-medium);
}

.explore-bt  a{
   color:var(--white);
}
 .explore-bt:after{
 	width:2px;
	height:40px;
	position:absolute;
	right:12px;
	bottom:-50px;
	content:'';
	background-color:var(--white);
 }
 
/***********/
 .download-brochure {
  width:48px;
  height:290px;
  position: fixed;
  /*background-color:var(--primary-color);*/
  z-index:4;
  top:50%;
  margin-top:-110px;
  padding:0 13px 0 0;
  right: 0px;
  font-size: 40px;
  color: #000;  
  text-align: center;
  word-break: break-all;
  text-transform:uppercase;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size:12px;
  /*letter-spacing:2px;
  writing-mode: vertical-lr;
  /*-webkit-transform: rotate(180deg);*/
  font-family:var(--font-medium);
  transition: all 0.4s ease;
  outline: 2px solid var(--primary-color);
  outline-offset: -4px; 
  background-image: url(../images/dowload-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
} 
 .download-brochure:hover{
	 /*background-color:var(--black);*/
	 color:var(--black);
 }
  .download-brochure a{
  	display:block;
  	color: var(--black);
  }
 
  .download-brochure a:hover{
  	display:block;
  	color:var(--black);
  }
 

.link {}

.link a {
	
	color:var(--black);
	font-size: 16px;
	line-height:normal;
	padding: 16px 80px  16px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	/*border-radius: 50px;*/
	border:1px solid var(--black);
	
	 
}

.link a:before{
	width:40px;
	height:40px;
	position:absolute;	
	top:5px;
	right:10px;
	content:'';
	z-index:2;	 
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;	
} 
 
.link a:hover:before{
	right:15px;
 
}
 
.link a:hover { 		 
		background-color:var(--black);
		color:var(--white);
} 


.caps{
	text-transform:uppercase;
}
 
.heading-font{
	 font-family:var(--heading-font) !important;
 }
 
.web-title{
	font-size:60px;
	line-height:normal;
	font-family:var(--heading-font);
}
.web-title span{ 
	color:var(--primary-color);
	
}
.heading{
	font-size:56px;
	line-height:normal;
	font-family:var(--font-bold);
}
.heading-big{
	font-size:100px;
 
}
 
.subtitle{
	font-size: 24px;
	line-height:34px;
 
}
.subheading {
	font-size: 46px;
	line-height:normal;
	}
.subtitle-small{
	font-size: 20px;
	line-height:24px;
 
}
.bold, strong{
	font-familyt:var(--font-bold);
}

.dec-title{
	 font-family:var(--heading-font);
	 margin-bottom:20px;
 
}
 .dec-title span{
	 display:inline-block;
	 padding:0 57px 0 0;
	 position:relative;
	 vertical-align:middle;
	 font-size:24px;
}
 .dec-title span:after{
	 width:45px;
	 height:1px;
	 position:absolute;
	 top:10px;
	 right:0;
	 content:'';
	 rotate: -45deg;
	 background-color:var(--black);
}
  
/****************************/
  
.pos-rel{
	position:relative;
}
   
 
  

/****************SCROLLING TEXT***************/

 .scrolling-text-wrap {
  width:100%;
  padding:24px 0;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  background-image: linear-gradient(to left, #BA995C, #996E32, #BA995C, #BA995C, #BA995C,#996E32 );
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 24px;
  line-height:24px;
  color: var(--white);
  font-family:var(--heading-font);
  text-transform:uppercase;
  font-weight:normal;
  margin:0;
}
.scroll h2 span{
	display:inline-block;
	margin:0 10px;
}

.RightToLeft {
  animation: RightToLeft 20s infinite linear;
  
}

 .scroll-black{
 	background-color:var(--black);
	width:200%;
	overflow:hidden;
	padding-left:25px;
	}
body.dark .scroll-black{
 	background-color:var(--grey-dark);
 }
 
 .scroll-black h2{
	 padding:24px 25px !important;
	}
/***********/
 
/*********/
@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 {
	width:100%;
	position:relative;	 
}
.funfacts:before, .funfacts:after {
	width:100%;
	height:1px;
	position:absolute;
	left:0;
	top:50%;
	background-color:var(--black);
	content:'';
}
.funfacts:after {
	width:1px;
	height:100%;
	left:50%;
	top:0;
	background-color:var(--black);
 
}
 .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
} 
 .funfacts ul:after{
	 width:45px;
	 height:1px;
	 position:absolute;
	 top:50%;
	 left:50%;
	 margin:0px 0 0 -22px;
	 content:'';
	 rotate: -45deg;
	 background-color:var(--black);
}
.funfacts ul li{
	width:50%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	padding:40px;
	flex-direction:column;
	margin:0;
	position:relative;	 
	justify-content: center;
} 
 
.funfacts ul li:last-child{
	border-right:0;
}

.funfacts ul li h2{
	margin:0 0 20px 0;
	padding:0;
	font-size:56px;
	font-family:var(--font-bold);
}
 .funfacts p{
	margin:0;
	font-size:16px;
	 
}
 .funfacts-four{}
  .funfacts-four ul li{
  	width:25% !important;
	padding:50px !important;
	border:1px solid var(--black) !important;
	margin:-1px 0 0 -1px;
	}
 body.dark  .funfacts-four ul li{
 	border:1px solid var(--white) !important;
 }
  .funfacts-four ul:after{
  display:none;
  }
  
 .funfacts-four:before, .funfacts-four:after {
 display:none;
 }
/******************/
 body.dark .strip{
	 background-color:var(--grey-dark);
 
 }
.strip{
	width:100%;
	height:100px;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--secondary-color);
	}
 .level-up{
	 position:relative;
 	 z-index:2;
	 overflow: hidden;
 }
 .back-margin{
 	position:relative;
	margin-top:-30px;
 }
  
 /**********************news**********************/
 
 body.dark .news-style-outer {
	border-top:1px solid var(--white);
	border-bottom:1px solid var(--white);
	color:var(--white);
	}
	
.news-style-outer{
 	padding:25px 0;
	border-top:1px solid var(--black);
	border-bottom:1px solid var(--black);
	position:relative;
 }
 
 body.dark .news-widget{
 	color:var(--white);
 } 
 body.dark .news-widget a{
 	color:var(--white);
 }
 body.dark a:hover{
 	color:var(--primary-color);
 }
 
 
.news-widget{
  	padding:20px 0;
  	color:var(--body-color);
	position:relative;
	
  }
 .news-widget a{
 	color:var(--body-color);
 }
  .news-widget a:hover{
 	color:var(--primary-color);
 }
 .news-widget:before{
	width:0;
	height:4px;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--primary-color);
	z-index:3;
	transition: all 0.4s ease;
	/*filter: blur(1.1px);*/
}
  .news-widget:hover:before{
	width:100%;
} 
 .news-widget h2{
  font-size:24px;
  text-transform:uppercase;
  line-height:34px;
  font-family:var(--heading-font);
 
  } 
.date{
	display:flex;
	justify-content: space-between;
	align-items: center;
	font-size:12px;
	line-height:12px;
	text-transform:uppercase;
	letter-spacing:1px;	
	vertical-align:middle;
	margin-top:35px;
}
 
.arrow-bt{
	width:32px;
	height:20px;
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
}
 /*************/
 
 .box-style{
 	padding:40px;
	background-color:var(--grey-light);
 }
 body.dark  .box-style{
 	background-color:var(--grey-dark);
	color:var(--white);
 }
 
  
 .box-style-black{
 	padding:40px;
	background-color:rgba(0, 0, 0, 0.5);
	border-left:2px solid var(--primary-color);
 }
  /********************services scroller**********************/
  
.display-style{ 
 	display:flex;
	flex-wrap: wrap; 
	flex-direction:column;
	justify-content: space-between;
	/*aspect-ratio: 1 / 1;*/
     overflow: hidden;	 
	 position:relative;
	 border:1px solid var(--black);
	 z-index:2;
	 margin:-1px 0 0 -1px;
	 transition: all 0.4s ease;
}
.display-style:before{
	width:4px;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	background-color:var(--primary-color);
	z-index:3;
	transition: all 0.4s ease;
	/*filter: blur(1.1px);*/
}
.display-style:hover:before{
	height:100%;
}
body.dark .display-style{
	background-color:var(--black);
	border:1px solid var(--grey-dark);

}
.display-header{
	padding:40px 35px 0 35px;
	 
}
.display-header p:last-child{
	margin:0;
	 
}
.display-header h2{
	margin:0 0 20px 0;	 
	/*color:var(--primary-color);*/
	text-transform:uppercase;
}
.display-footer{
	overflow:hidden;
	position:relative;
	transition: all 0.4s ease;
}
.display-footer img{
	width:100%;
	display:block;
	-webkit-transition: all .5s;
    transition: all .5s;
}
.display-footer:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/clipping-shape.svg);
	z-index:2;
	transition: all 0.4s ease;
}
.display-style:hover .display-footer 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;
}
.number{
	position:absolute;
	z-index:3;
	left:10px;
	bottom:0;
	padding:20px;
	font-size:24px;
	line-height:normal;
	font-family:var(--heading-font);
	color:var(--grey);
 
}
body.dark  .display-footer:before{
	background-image: url(../images/clipping-shape-black.svg);
}
 
 
 .testimonials-wrap{
 	padding:25px 0;
	 
 }
 .quote-wrap{
 	padding:0 15%;
 }
  .testimonials{
 	padding:25px 120px;
	border-top:1px solid var(--black);
	border-bottom:1px solid var(--black);
	text-align:center;
	position:relative;
 }
body.dark .testimonials{
 	 
	border-top:1px solid var(--white);
	border-bottom:1px solid var(--white);
 
 }
  .testimonials:before,   .testimonials:after{
	width:50px;
	height:50px;
	content:'';
	position:absolute;
	left:0;
	top:50%;
	margin-top:-25px;
	background-image:url(../images/icons/quote-left.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
 } 
 .testimonials:after{
 	left:auto;
	right:0;
	background-image:url(../images/icons/quote-right.svg);
 }
   .testimonials h2{
   	font-size:24px;
	line-height:normal;
	font-family:var(--heading-font);
	}
	
.customer-info{
	text-align:center;
	padding:20px 0;
}
.customer-info p{
	margin:5px 0;
	line-height:normal;
}
.customer-info p img{
	width:95px;
	display:inline-block;
}
.customer-info p:last-child{
	font-size:12px;
}
/************/
.thumbnails-row{
    display: grid;   
    grid-template-columns: repeat(8, 1fr);
 	grid-gap:10px;
	margin-top:10px;
	}

/*******FOIO SETTINGS**********/ 
 
 
 .folio-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	}
 
 .project-details{
    width: 25%;	
	position:relative;
 
}
.pro-outer{
	background-color:var(--secondary-color);
	padding:20px 25px 25px 130px;
	position:relative;
	width:100%;
}
body.dark .pro-outer{
	background-color:var(--grey-dark);
}
.pro-sl{
	position:absolute;
	left:20px; 
	top:10px;
	font-size:76px;
	line-height:normal;
	font-weight:normal;
	font-family:var(--heading-font);
	color:var(--primary-color);
	}
 .project-details h2{
 	font-size:24px;
	line-height:normal;
	font-weight:normal;
	font-family:var(--heading-font);
	text-transform:uppercase;
	}	
 .project-details p{
 	font-size:12px;
	line-height:normal;
}

 .project-image{
    width: 75%;
 
	} 
/**************/ 
 .scrollwrap{
  width:200%;
  overflow:hidden;
  padding:100px 0 0 0;
 } 
 
/****************/
.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(--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;
}


 
  
 
/*********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 0 0;
	margin-top:10px;
	font-size:16px;	 
	color:var(--white);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/footer-bg.jpg);
	background-attachment:fixed;

}

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

 .footer ul, .footer ul li{
 	margin:0;
	padding:0;
	list-style:none;
 }
.footer ul li{
	padding:5px 0;
 
 }  
 .footer-logo{
 	width:150px;
 }
 .footer-bottom{
 	width: 100%;
	margin-top:50px;
	padding:20px 0;
	justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
	border-top:1px solid rgba(255, 255, 255, 0.2);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
 
 }
  .footer-bottom h2{
	font-size:16px;
	line-height:normal;
	color:var(--primary-color);
	margin:0 0 25px 0;
	font-family:var(--font-bold);
	text-transform:uppercase;
	}
	
	
.lower-footer{
	padding:20px 0;
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
	align-items: center;
 	}

	
.copy{}
.copy p{
	margin:0;
} 
.res-col{}
/***********social ***********/
.social {
 	 
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--white);
	font-size:18px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 

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

}

 
 /**********************/
 .address-box{
	padding:30px;
	background-color:#f4f0f0;
	border-bottom:4px solid var(--primary-color);
	} 
body.dark   .address-box{
	background-color:var(--grey-dark);
}
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	vertical-align:top;
	line-height:24px;
	 
}
 
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:normal;
	font-family:var(--heading-font);
	margin:0 0 10px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--primary-color);	 
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--body-color);
	}
.add a:hover{
	color:var(--primary-color);
	}
	
body.dark  .add a{
	color:var(--white);
	}
/******************************/

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

ul.list li {
	list-style: none;
	padding: 0 0 12px 40px;
	line-height: normal;
	position: relative;
	background-image: url(../images/icons/bullet.svg);
	background-repeat: no-repeat;
	background-position:left 9px;
	background-size:20px;
	margin: 0 0 0px 0;
}
ul.list-02 li{    background-position: left 0px;
    padding: 0 0 12px 35px;}

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

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

/*************mission vison****************/
 

/******************************ht-style*****************/
.ht-style{
		padding:50px 50px 50px 100px;
		margin:0 0 20px 0;
		position:relative;
		position:relative;
		background-color:var(--primary-color);
		color: var(--white);
		/*border: 1px solid var(--grey-light);*/
 	 	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:var(--grey-dark);
 }
 

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

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

/*****************************/
  /************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
 
} 
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background:var(--secondary-color);
	}

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

td, th { 
	padding: 10px 15px !important; 
	border: 1px solid var(--grey-dark);
	text-align: left; 
}

body.dark table{
	background-color:var(--grey-dark);
	}
body.dark td, body.dark th { 
 
	border: 1px solid rgba(255, 255, 255, 0.2) !important; 
 
}	
	
body.dark tr:nth-of-type(odd) { 
	background: var(--back);
	}
	
.table-head{
	background-color:var(--primary-color);
	color:var(--white);
	font-size:25px;
	font-family:var(--heading-font);
	padding:20px !important;}
	
/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:90vh;
	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;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/banner.jpg);
 
}
.banner:after{
	width: 100%;
	height: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;
}
.banner h2 {
	color:var(--white);	
	font-weight:normal;
	font-family:var(--heading-font);
	text-transform:uppercase;	
	font-size:40px;
	line-height:40px;
	margin:50px 0 0 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 {
    
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 5px 20px;
	background-color:var(--white);
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	color:var(--grey-dark);
	font-weight:var(--font-bold);
	cursor:default;
 
	 
}    
.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(--tertiary-color);	
 
}
 

.tab1{
	background-image: url(../images/backgrounds/tab1.jpg);
	 	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	} 
 
 
 
/*************** 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;
}
  

/*********/

.golden-border-bottom{
	border-bottom:4px solid var(--primary-color);
}
.golden-border-bottom p:last-child{
	margin:0;
}
 .marble-bg {
	background-image: url(../images/backgrounds/marble-bg.jpg);
	background-attachment:fixed;
		background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	}
	
 .interior-design-bg {
	background-image: url(../images/backgrounds/interior-design-bg.jpg);
	background-attachment:fixed;
		background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color:var(--white) !important;
	}
	
	
 body.dark .marble-bg {
	background-image: url(../images/backgrounds/marble-bg-grey.jpg);
	}
	 
/*********file chosen style**************/
 
.input-container{
	display: flex;
    gap: 0 10px;
    align-items: center;
	position:relative;
	align-items: center;
	justify-content: space-between; 
	overflow:hidden;
	border:1px solid rgba(255, 255, 255, 0.3);
}
 

.search-input {
	flex-grow: 1;
	border:0;
    color:var(--white) !important;
    background-color:transparent !important;
    outline: none;
    vertical-align: middle;
    line-height: 50%;
    height: 60px;
    padding: 0 25px;
    font-size: 14px;
}

.go-button  {    
	background-color:transparent;
    color: var(--white);
    width: 60px;
    height: 60px; 
    border: 0;
    outline: none;
	font-size:16px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.go-button:hover {
   background-color:var(--primary-color);
   color: var(--white);
}

.input-container ::-webkit-input-placeholder {
	color:var(--white);
}

.input-container :-moz-placeholder {
	/* Firefox 18- */
	color:var(--white);
}

.input-container ::-moz-placeholder {
	/* Firefox 19+ */
	color:var(--white);
}

.input-container :-ms-input-placeholder {
	color:var(--white);
}

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

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

*:focus {
	outline: none;
}

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



.sendbutton {
	 
	color: var(--white);
	font-size: 30px;
	font-family:var(--font-bold);
	background-color:var(--primary-color);
	border:0;
	padding: 20px 30px;
	font-style: normal;
	font-family:var(--heading-font);
	display: inline-block;
	position: relative;
	margin:0;
	 
}

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

 
 

::-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);
}
 
 /*********/
  body.dark ::-webkit-input-placeholder {
	color:var(--white);
}

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

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

 body.dark :-ms-input-placeholder {
	color:var(--white);
}
 
 
/*************** 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: 1320px) {
.container {
	width: 100%;
	padding:0 25px;
	}
  
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 980px) {

.logo,  header.smaller .logo{
	left:0;
	top:-10px;
	margin-left:0;
	width:130px;
}
 .default{
 	display:none !important;
}

 .logo-mobile{
 	display:block !important;
 }
 
  header, header.smaller {
	 width:100%; 
	 position:relative;
	 background-color:var(--white);
	 padding:20px 0;
	 left:auto;
	 top:auto;
 
}
 header.smaller {
	left:0;
	top:0; 
	position: fixed;
	/*background-color:rgba(255, 255, 255, 0.8);*/
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  
}
.header{
	justify-content: flex-end;
	padding-right:70px;
 
}
 .section-spacing{
	 padding:50px 0;
 }
.mode-toggle{
	top:-2px;
}

.heading{
	font-size:24px; 
}
.heading-big{
	font-size:40px;
 
}
.subheading{
	font-size:30px; 
}
.dec-title{
	 margin-bottom:15px;
}
 .dec-title span{
	 padding:0 30px 0 0;
	 font-size:24px;
	 line-height:28px;
}
 .dec-title span:after{
	 width:25px;	 
	 top:10px;
}
 
.subtitle{
	font-size:18px;
}
.web-title{
	font-size:34px;
	}
.strip{
	display:none;
	}
 .funfacts ul{
 	margin-top:40px;
 } 
 .funfacts ul li{ 
	padding:20px;
 
} 
 
 
.funfacts ul li h2{
	margin:0 0 10px 0; 
	font-size:36px;

}
 
  .funfacts-four ul li{
  	width:50% !important;
	padding:20px !important;
}
.table-wrap{
	overflow-x:scroll  !important;
} 
.table-wrap::-webkit-scrollbar {
  display: none;
  background: transparent; 
}
.table-head{
	font-size:20px;
	padding:10px !important;}
td, th { 
	padding: 10px !important;
	font-size:12px;
	line-height:normal;
	 }
	
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 .link a {
	font-size: 14px;
	padding: 10px 35px  10px 10px;
}

.link a:before{
	width:30px;
	height:30px;	 
	top:3px;
	right:5px;
	background-size:50%;
 
} 
.thumbnails-row{
    grid-template-columns: repeat(4, 1fr);
}
.banner { 
	height:50vh;
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
 .web-title{
	font-size:28px; 
}

.scroll h2 {
  font-size:20px;
  line-height: 20px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0 0 0 70px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:50px;
	height:50px;
	padding:10px;
}
 .scrollwrap{
  width:100%;
  padding:0;
 }  
 
 
 .folio-wrap{
    flex-direction:column;
	}
 
 .project-details,  .project-image{
    width: 100%;	
 
 
}
.pro-outer{
	padding:20px 20px 10px 80px;
}
 
.pro-sl{
	left:20px; 
	top:20px;
	font-size:30px;	 
	}
 .project-details h2{
 	font-size:18px; 
	}	
 
 
/***********************/	
 .display-style{  
	 margin:0;
}
.display-header{
	padding:40px 40px 20px 40px;
	 
}

.testimonials-wrap{
 	padding:25px 0;
	 
 }
 .quote-wrap{
 	padding:0 15%;
 }
  .testimonials{
 	padding:25px 10px;
	 
 }
  .testimonials:before,   .testimonials:after{
	display:none;
}

.testimonials h2{
   	font-size:20px;
 
	}
	
.thumbnails-row{ 
 	 grid-gap:1px;
	 margin-top:1px;
	}
.res-col{
	width:50%;
}
.footer-logo{
	margin-top:25px;
}
.footer{
	margin-top:1px;
}
.footer-bottom div{
	width:46% !important;
}
.footer-bottom .smd40{
	width:100% !important;
	}

 .explore-bt {
	 display:none;
}

.tall-content-wrap, .tall-content-wrap2{
	padding:20px 0;
	border:0 !important;
}

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	#status{ background-repeat: 250px;} 
 
}

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

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