@charset "utf-8";
  

/* font-family: "Outfit", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Outfit", sans-serif;
	--body-color: #fff;
	--body-bg: #1B1B1B; 
	--primary-color: #008946;
	--secondary-color: #CB372C;
	--tertiary-color: #2BB86D;
	--quaternary-color:#1B1B1B;	
	--black: #000;
	--white: #fff;
	--grey: #252525;	
	--grey-light: #424242;
	--grey-dark: #1B1B1B;
	--text-grey:#BFBFBF;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heaavy:700;
	--heading-font:"Outfit", sans-serif;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 30px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-light);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	background-color:var(--body-bg);
	background-attachment:fixed;
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
   background-image: linear-gradient(to top, var(--secondary-color), var(--primary-color));
}

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

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

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

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

p {
	margin: 0px 0 20px 0;
	clear: left;
	padding: 0;
	font-weight:var(--font-light);
	font-size: 100%;
	color:var(--text-grey)
 
}

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

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--secondary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius:12px;
}
.bg-gradient{
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
	color:var(--white)!important;	 
}
.bg-gradient-grey{
	background-image: linear-gradient(to left, var(--grey), var(--grey-light));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
  color:#fff;
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }

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

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

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

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

.container {
	width: 1350px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

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

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

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

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


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
.outer-wraper{
 width:100%;
 overflow-x:hidden !important;
 overflow-Y:hidden !important;
 
 }
 main{
  width:100%;
}

section {
	width: 100%;
	display:block;
	position: relative;
	 
}

.section-spacing{
	 padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}
.aside{
	width:25%;
 
}
.aside-inner{
	width:100%;
	background-color:var(--grey);
	padding:30px;
}
.dec-heading{
	font-size: 22px;
	font-weight:var(--font-medium);
	padding:0 0 20px 0;
	margin:0 0 25px 0;
	border-bottom:1px solid var(--grey-light);
	position:relative;
}
 



.dec-heading:after{
  	width:100px;
	height:1px;
	position:absolute;
	left:0;
	bottom:0px;
	z-index:2;
	background-color:var(--secondary-color);
	content:'';
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

 
 
.dec-heading:before{
  	width:100px;
	height:2px;
	position:absolute;
	left:0;
	bottom:0px;
	filter: blur(4px); 
	z-index:1;
	background-color:var(--secondary-color);
	content:'';
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-col:hover:after, .lamodano-fearures div:hover:after,  .ht-style:hover:before{
	width:100%;
	left:0;
}

.ticker .topsroll h2 {
	font-size: 20px;
	padding-block: 8px;
}
.ticker .topsroll h2 span {
	font-size: 20px;
	width: 50px;
	height: 30px;
	line-height: 30px;
	left: 5px;
}

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

.side-menu{
	width:100%;
	margin:0 0 25px 0;
	display:block;
}
.side-menu ul, .side-menu ul li{
	width:100%;
	margin:0;
	padding:0;
	list-style:none;
	display:block;
}
 .side-menu ul li a{
	position: relative;
 	width:100%;
	display:block;
	padding:10px 0;
	border-bottom:1px solid var(--grey-light);
	font-size:16px;
	font-family:var(--font-bold);
	line-height:normal;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
 }
 
  .side-menu ul li a:hover{
    background-color: #003a1c;
 	 color:var(--white);
	 padding:10px 20px;
 }
 .side-menu ul li a img{
 	vertical-align:middle;
	margin:0 15px 0;
	width:40px;
 }
 .side-menu ul li a.active {
    padding: 10px 20px;
    border-left: 4px solid var(--white);
    background-color: #003a1c;
    border-bottom: 1px solid #003a1c;
 }
 .side-menu ul li a.active::after,
 .side-menu ul li a.active::before {
 width:4px;
 height:33.33333333333333%;
 position:absolute;
 z-index:1;
 left:-4px;
 top:0;
 content:'';
 background-color:var(--primary-color);
 z-index: 1;
}

.side-menu ul li a.active::after {
	background-color:var(--secondary-color);
	top:auto;
	bottom: -1px;
}

.summary{
	width:75%;
	padding-left:20px;
}
/*********************************************/ 
 .top-header{
 	width:100%;
	padding:5px 0;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	-webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
 }
 header.smaller  .top-header{
	 display:none;
 
 }
 
 
 .top-header-inner{
    width:100%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:5px 0;
}
 .top-header-inner .social{
	 
 }
.ticker{
	width:40%; 
	text-align:center;
}

.right-menu{
	text-align:right;
	display:flex;
	flex-wrap: wrap;
	gap:0 10px;
	font-size:14px;
 
}
.right-menu a:first-child i {
    margin-right: 6px;
    color: #04ae55;
}
 
/***************************/
 header{
	 width:100%; 
	 position:absolute;	  
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	 /*background-image: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,1));*/
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
	 border-bottom:1px solid rgba(255, 255, 255, 0);
 
}
 header.smaller {
	padding:0;
	position: fixed;
	background-image:none;
	background-color:rgba(0, 0, 0 ,0.8);
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	/*box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);  */
}

.header{
    width:100%;
	padding:10px 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller .header{
 	padding:0 0;
 }

 nav.vg-nav.vg-nav-lg.lg-menu {
    width: auto;
}
 
 .head-group{
	 width:100%;
	padding:10px 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	}
	
.logo { 
	width:200px;
	position:absolute;
	left:50%;
	margin-left:-100px;
	top:95px;
	display: flex;
	justify-content: center;
	transition: all 0.4s ease;
}
 
.logo img {
	width:100%;
	display:block;
}
header.smaller .logo {
	top:30px;
	width:100px;
	margin-left:-50px;
	 
}
  
  
 .header-right{
 	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:0 20px;
 }
 .tollfree{
 	font-weight: var(--font-normal);
 }
 .tollfree span{
 	font-weight:var(--font-bold);
 
 }
/***icon-group****/ 
 .material-symbols-outlined{
 	vertical-align:middle;
 }
.icon-group{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	}
	
.icon-group ul {
	margin:0;
	padding:0;
	list-style:none;
	display: flex;
}	
.icon-group ul li {
	margin:0 5px;
	}
	
 .icon-red{
 }
 .icon-red a{
 	background-image:none !important;
	background-color:var(--secondary-color) !important;
	}
		
.icon-group ul li a {
	
	padding:0;
	width:40px;
	height:40px;
	color:var(--white);
	/*border:1px solid rgba(255, 255, 255, 0.2);*/
	display:flex;
	justify-content: center;
	align-items: center;	
	border-radius: 50%;
	font-size:12px;
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
}
.icon-group ul li a:hover,  .icon-red a:hover{
	background-image: none;
	background-color:var(--grey) !important;
	border:0;
}
.icon-group i{
	font-size:16px;
}
.ct-item{
	position:relative;
}
.ct-content{
	width:18px;
	height:18px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 position:absolute;
	 top:-6px;
	 right:-10px;
	 background-color:var(--primary-color);
	 border-radius: 50%;
	 color:#fff;
	 text-align:center;
	 font-size:12px;
	 line-height:12px;
	
	}
	
 .price-amount{
 	font-size:16px;
	font-weight:var(--font-bold);
	line-height:16px;
	margin-left:5px;
	position:relative;
	top:-4px;
 }
  .price-amount span{
 	font-size:12px;
	font-weight:var(--font-normal);
 }
 .bag{
 	font-size:20px;
	position:relative;
	top:-1px;
	}
	
	
/***mobile content****/
.mobile-content{
	display:none !important;
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	padding: 10px 20px;
	}
.mobile-content i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--tertiary-color);
	border-radius: 5px;
	color:var(--primary-color);
	font-size:14px;
	margin:0 15px 0 0;
	text-align:center;
}
.mobile-content h2{
	font-weight: var(--font-normal);
	font-size:20px;
	margin:0;
}

.mobile-content h2 span{
 	font-weight:var(--font-bold);
 
 }
 
.mobile-menu{
	display:none !important;
	}
	
.mobile-content .add{
	margin-bottom:0 !important;
}
.logo-mobile{
	width:100px;
}
/***********button ***********/
 .link-white{
 }
 .link-white a{
 	background-image:none !important;
	background-color:var(--white) !important;
	color:var(--black) !important;
	}
.link {
	position: relative;
}

.link a {
	
	color:var(--white);
	font-size: 16px; 
	padding: 8px  30px;
	font-style: normal;
	display: inline-block;
	font-weight:var(--font-normal) !important;
	overflow:hidden;
	position: relative;
	margin:0;
	border-radius: 50px;
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
	font-weight:var(--font-medium);
	transition: all 0.4s ease;	 
}
 
.link a:hover { 		 
	box-shadow: 0 0 5px 3px #8AF40D,
    0 0 4px 3px #028E46,
    0 0 3px 2px #F9FFB4,
    0 0 2px  1px #fff;
	background-image: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
} 

.link a:before {
    width:0%;
	height:100%;
	content: '';
	position: absolute;
	background-color:rgba(0, 0, 0 ,0.1);
    top:0;
    left:0;
    z-index:1;
    filter: blur(5px);
    transition: all 0.4s ease;	 
    -webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
     
}
 
 .link a:hover:before{
 	 width:100%;
	 right:0;
	left:auto;
 }

 
 
 

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



.caps{
	text-transform:uppercase;
}
 
.heading-font{
 	font-family:var(--heading-font);
 }
 
.heading{
	font-size:56px;
	line-height:normal;
	font-weight:var(--font-medium);
	
}
.heading span{ 
	color:var(--secondary-color);
	
}
.subheading {
    font-size: 30px;
    line-height: 40px;
}
 
.subtitle{
	font-size: 22px;
 
}
.bold, strong{
	font-weight:var(--font-bold);
}

.section-title{
 
	font-size:16px;
	font-weight:var(--font-bold);
	line-height:normal;
	color:var(--white);
	position:relative;
	margin-bottom:20px;
	/*background: -webkit-linear-gradient(left, var(--primary-color),  var(--tertiary-color));*/
	color:var(--secondary-color);
	/*-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;*/
}
 
/****************************/
  
.pos-rel{
	position:relative;
}
   
 /*************************************/
  
.TickerNews{
	width: 100%;
	overflow:hidden;
	display:flex;
	position:relative;
 
}
.TickerNews:before, .TickerNews:after{
	background-image: linear-gradient(to left, rgba(27,27,27,0), rgba(27,27,27,1));
	width:20%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	}
.TickerNews:after{
	background-image: linear-gradient(to right, rgba(27,27,27,0), rgba(27,27,27,1));
	left:auto;
	right:0;
}

.TickerNews h2 {
 	font-size:56px;
	line-height:normal;
	font-weight:var(--font-medium);
  	color:var(--white);   
    margin:0;
 	  
  
}


.TickerNews h2 span{
 font-size:40px;
 text-align:center;
 color:var(--tertiary-color);
   -webkit-text-stroke-width:0;
  -webkit-text-stroke-color:none;
  width:100px;
  height:80px;
  line-height:80px;
  position:relative;
  left:10px;
  display:inline-block;
 
}
 
 
.ti_wrapper{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.ti_slide{
	width: 30000px;
	position: relative;
	left: 0;
	top: 0;
}
.ti_content{
	width: 8000px;
	position: relative; 
	float:left; 
}
.ti_news{
	float:left; 
}

  

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


 
  
/*******funfacts***********/


.funfacts {
	width:100%;
 	display: flex;
	padding:75px 10% 20px 10%; 
}
 
 .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	margin:0;
	padding:0;
} 

.funfacts ul li{
	width:25%;
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	color:var(--white);
	padding:40px 25px;
	flex-direction:column;
	margin:0;
	position:relative; 
	text-align:center;
	justify-content: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
} 

.funfacts ul li:hover{
	background-color:var(--black);
	 
	}

 
.funfacts ul li h2{
	margin:0;
	padding:0;
	font-size:56px;
	line-height:normal;
	font-weight:var(--font-bold);
}
 .funfacts p{
	margin:0;
	font-size:16px;
	 
}
.funfacts ul li img{
	width:70px;
	display:inline-block;
} 
   
 .rotating-circle{
	width:145px;
	height:145px;
	display:inline-block;
	position:relative;
	z-index:2;
	border-radius:50%;
 
}
.rotating-circle:after {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	background-image:url(../images/rotation-text.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-animation: rotation 20s infinite linear;

}
.rotating-circle:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:6;
	background-image:url(../images/1958.svg);
	background-repeat: no-repeat;
	background-position: center  center;
	border-radius:50%;
	/*-webkit-animation: rotation2 20s infinite linear;*/
	background-size:90%;
}
@-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
		}
}

@-webkit-keyframes rotation2 {
		from {
				-webkit-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(-359deg);
		}
}

 .bttton-holder{
 	width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	gap: 0 15px;
	position:relative;
	margin-top:50px;
	}
	
 .bttton-holder:before{
 	width: 100%;
	height:1px;
	background-color:var(--grey-light);
	position:absolute;
	left:0;
	top:50%;
	z-index:-1;
	content:'';
     
	}  
 

/********************products display**********************/
 
.products-row{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	gap: 22px 1.85%;
	/* justify-content: center; */
}

 .product-col {
	flex: 0 0 32.1%;
	position:relative;
	background-color:var(--grey);
	transition: all 0.4s ease;	 
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

 .product-col:hover{
 	background-color:var(--black);
 }
 .pro-4{
 	flex: 0 0 23.61% !important;
 }
/******effects ***********/ 
.product-col:before, .lamodano-fearures div:before, .ht-style:before{
  	width:0;
	height:1px;
	position:absolute;
	left:50%;
	bottom:0px;
	z-index:-1;
	background-color:var(--secondary-color);
	content:'';
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-col:hover:before, .lamodano-fearures div:hover:before,  .ht-style:hover:before{
	width:100%;
	left:0;
}
 
 .product-col:after, .lamodano-fearures div:after,  .ht-style:after{
  	width:0;
	height:3px;
	position:absolute;
	left:50%;
	bottom:0px;
	filter: blur(4px); 
	z-index:1;
	background-color:var(--secondary-color);
	content:'';
	-webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.product-col:hover:after, .lamodano-fearures div:hover:after,  .ht-style:hover:before{
	width:100%;
	left:0;
}

.product-info{ 
     width: 100%;
     overflow: hidden;	 
	 position:relative;
	 padding:25px 25px;
	  display:flex;
	 flex-direction:column;
	 row-gap: 1em;
	 transition: all 0.4s ease;	 
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
 
.product-info .head{
	width:100%;
}
 .product-info .head h2{
	font-size:18px;
	line-height:normal;
	font-weight:var(--font-medium);
 
} 
 .product-info .head p{
	font-size:16px;
	line-height:normal;
	margin:0;
} 



.product-features{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.pro-info{
	padding:0 0 0 50px;
	position:relative;
	font-size:20px;
	line-height:22px;
	font-weight:var(--font-medium);
	vertical-align:top;
}
.pro-info span{
	font-size:14px;	
	font-weight:var(--font-normal);
	color:var(--text-grey);
}
.pro-info img{
	position:absolute;
	left:0;
	top:2px;
	width:40px;
	display:block;
}

/*********************************************/
.why-lamodano{     
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	position:relative;
	background-color:var(--grey);
}
.why-lamodano:before{     
	width: 100%;
	height:80px;
	position:absolute;
	left:0;
	top:0;
	background-color:var(--body-bg);
	content:'';
    
}
.cl-36{
	width:36%;
	position:relative;
	z-index:2;
}
 
.cl-28{
	width:28%;
	position:relative;
	z-index:2;
	}

.cl-28 .funfacts {
	padding:0;
	margin-top:81px;
	border-left:1px solid var(--grey-light); 
}
 
 

.cl-28 .funfacts ul li{
	width:50%;	 	
	border-collapse:collapse;
	margin: -1px 0 0 -1px;
	padding:45px 25px;
} 
 .cl-28 .funfacts ul li p{
	 margin:0;
 	line-height:16px;
 }
.res-gap{
	height:130px;
}
.brd-1{
	border-right:1px solid var(--grey-light);
	border-bottom:1px solid var(--grey-light);
}
.brd-2{
	border-left:1px solid var(--grey-light);
	border-top:1px solid var(--grey-light);
}


/*********************stores***************/
 .store-logos{   
    display: grid;
    grid-gap:0;
    grid-template-columns: repeat(2, 1fr); 
    }
 .store-logos div{
	margin: -1px 0 0 -1px;
	height:200px;
	display:flex;
    flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	border:1px solid var(--grey-light);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
 .store-logos div img{	
	display: block;
	 width:180px; 
}
 .store-logos div:hover{
 	background-color:var(--black);
 }
/*********************stores end***************/

/*********************news cl start***************/

.news-small{
	width:28.5%;
}
.news-big{
	width:40%;
}
/**********************news**********************/
 
 


.news-widget{
  padding:20px 0;
  color:var(--body-color);
  }
 .news-widget h2{
  font-size:20px;
  line-height:30px;
  font-weight:var(--font-medium);
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	letter-spacing:1px;
	margin:0 0 15px 0;	
	vertical-align:middle;
	color:var(--text-grey);
} 
 .news-widget p:first-child{
  	margin:20px 0;
  }
 .news-widget p:last-child{
  	margin:25px 0 0 0;
  }
  
 /******lamodano features******/
 
 .lamodano-fearures{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	gap:30px 2.6%;
}


 
 
 .lamodano-fearures div {
	flex: 0 0 30%;
	background-color:var(--grey);
	padding:50px 40px;
	flex-direction:column;
	flex-wrap: wrap; 
	text-align:left;
	justify-content: left;
	font-size:16px;
	line-height:20px;
	position:relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
}
 .lamodano-fearures div:hover{
	 background-color:var(--black);
 }
 

 .lamodano-fearures div img{
 	display:block;
	width:55px;
 }
 .lamodano-fearures div  h2{
 	font-size:20px;
	line-height:normal;
	font-weight:var(--font-medium);
	margin:0 0 15px 0;
 }
   .lamodano-fearures div  p:first-child{
	  margin:0 0 10px 0;
  }
  .lamodano-fearures div  p:last-child{
	  margin:0;
  }


  .client-box {
    position: relative;
    background-color: var(--grey);
    transition: all 0.4s ease;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    padding: 50px;
}
 /******lamodano features end******/
 
 
 /********************product featurs**************/
 
 .feature-content{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	padding:0 0 20px 0;
	margin-bottom:10px;
	justify-content: flex-start;
	gap:0 25px; 
	align-items: center;
	border-bottom:1px solid var(--grey-light);
}
.feature-media{
	display:flex;
	justify-content: space-between;
	align-items: center;
	gap:0 10px;
	font-weight:var(--font-medium);
	font-size:18px;
	line-height:18px;
}
.feature-media img{
	width:50px;
	display:block;
}
.feature-media h3 {
    font-size: 16px;
    display: block;
    margin-bottom: 0;
}
span.value {
    display: block;
    font-size: 12px;
    font-weight: 100;
    margin-top: 2px;
}
ul.splide__list {
    list-style-type: none !important;
}
/****************color group**************/
.splide__track .splide__list .splide__slide img{ width: 100%;}
.color-group{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	gap:0 10px;
	margin-bottom:30px;
	list-style:none;
	padding:0 0 20px 0;
	margin-bottom:20px;
	border-bottom:1px solid var(--grey-light);
	
}
.para-normal{
	margin:0 0 10px 0;
	line-height:normal; 
	
}
.color-group li{
	width:25px;
	height:25px;
	border:4px solid  rgba(117, 117, 117, 0.4);
	border-radius: 50%;
}
.l-red{
	background-color: #CB372C;
}
.l-green{
	background-color: #008946;
}
.l-grey{
	background-color: #ccc;
}
.l-white{
	background-color: #fff;
}
.l-black{
	background-color: #000;
}

/***************contact row****************************/
.connect-row{	
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	gap:0 10px;
	margin-bottom:20px;
	padding:0;
	list-style:none;
	
}
.connect-row ul{	
	width: 100%;
    display: flex;
	flex-wrap: wrap;
	gap:0 10px;
	margin:0;
	padding:0;
	list-style:none;
	align-items: center;
}

 .connect-row ul li{	
	margin:0;	
	padding:0;	
	list-style:none; 

	 
} 
 .connect-row ul li a{		 
	padding: 10px 15px;	
	list-style:none; 
     display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 50px; 
	color:var(--white);
	font-weight:var(--font-normal);
	font-size:14px;
	line-height:normal;
	background-color:var(--secondary-color);
}
 .connect-row ul li a i{		 
	 margin-left:10px;
	 font-size:20px;
}
.whatsapp{
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
}
 .connect-row ul li a:hover{
 	background-image: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
 }
/*************************************************/
.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);	 
	-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;	
	margin:0;
	display: flex;
    flex-wrap: wrap; 
	justify-content: space-between;
	color:var(--text-grey);
	font-weight:var(--font-light);
	font-size:16px;
	border-top:1px solid var(--grey-light);
	border-bottom:1px solid var(--grey-light);  
}
.footer p{
	margin:0 0 20px 0;
	}

.footer h2{
	font-size:24px;
	line-height:normal;
	font-weight:var(--font-medium);
	color:var(--white);
	margin:0 0 20px 0;
}
.footer ul, .footer  ul li{
	margin:0;
	padding:0;
	list-style:none;
	}

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


.footer-left{
	width:68%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-right{
	width:32%;
}
 
.f-column{
	width:30%;
	}

 .footer-logo{
 	width:220px;
 }
  
.lower-footer{
	padding:20px 0;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between; 
	}
	
.copy{
	color:var(--text-grey);
	font-weight:var(--font-light);
	font-size:16px;
	}
.copy a {
	color:var(--text-grey);
}
.copy a:hover {
	color:var(--primary-color);
}
.copy p{
	margin:0;
} 
.social {
	display:flex;
	vertical-align:middle;
 
}
.social a  {
	width:30px;
	height:30px;
	line-height:30px;
	border-radius: 5px;
	text-align:center;
	color:var(--white);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	transition: all .3s ease
	 

}
.social a:hover  {
	border-radius: 50%;
	color:var(--white);
	background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));

}
 
 /**********************/
 .address-box{
	padding:30px;
	outline: 1px solid rgba(255, 255, 255, 0.1);
 	outline-offset: -10px;
	background-image: linear-gradient(to left, var(--grey), var(--grey-light));
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:16px; 
	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 0 5px 0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
	border-radius: 5px;
	color:var(--black);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--white);
	}
.add a:hover{
	color:var(--tertiary-color);
	}

.text-green{ color: var(--primary-color);}
.text-red{ color: var(--secondary-color);}

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

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
	color:var(--text-grey);
}

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
	font-weight:var(--font-light);
	font-size:16px;
}

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



.keywords{
	 
}
 
.keywords ul{
	width:100%;
	display:flex;
	flex-wrap: wrap;
	flex-direction:row;	 
	margin:0;
	padding:0;
	list-style:none;
}
 
.keywords ul li{
	padding:8px 20px;
	line-height:normal;
	font-size:14px;
	font-weight:var(font-medium);
	background-color: var(--grey-light);
 	margin:4px;
	display:inline-block;
	border-radius: 50px;
	color:var(--body-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	 
}
.keywords ul li:hover{
	color:var(--white);
	background-color:var(--secondary-color);
 
	}
	.table-style  {
		overflow-x: auto;
	}
	.table-style table {
		width: 100%;
	}
	.table-style td, .table-style th {
		border: 1px solid #2f2f2f75;
		padding: 8px;
	  }
	  .table-style td {
		background-color: transparent;
	  }
	  .table-style th {
		padding-top: 12px;
		padding-bottom: 12px;
		text-align: left;
		background-color: #04AA6D;
		color: white;
	  }
	  .table-style tr:nth-of-type(odd) {
		background: #212121;
	}
	
/*****************************/

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

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

/******************************ht-style*****************/
.ht-style{
		padding:50px 50px 50px 100px;
		margin:0 0 20px 0;
		position:relative;
		background-image: linear-gradient(to left, var(--grey), var(--grey-light));
		position:relative;
		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-image: linear-gradient(to right, var(--grey), var(--grey-light));
 }
 

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

 .cont h2{
 	font-size:20px;
	line-height:normal;
	font-weight:var(--font-medium);
	margin:0 0 15px 0;
 }

 .cont {
    background-color: var(--grey);
    padding:40px;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
    justify-content: left;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	border-bottom: 1px solid #04ae55;
	min-height: 240px;
}
 .cont p {
	margin-bottom: 0;
 }
 

/*************** INNER BANNER ***************/
.banner { 
	width: 100%;
	height:40vh;
	padding:40px 0;
	overflow:hidden;	 
	display: flex;
	justify-content: flex-end;
	flex-direction:column;
	position: relative;
	/*align-items: center;*/
	background-color:var(--black);
	color:var(--white);	
	background-image: url(../images/backgrounds/banner.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.banner .container{
	padding-left:30px;
	position:relative;
	border-left:4px solid var(--white);
	}
.banner .container:before, .banner .container:after{
	 width:4px;
	 height:33.33333333333333%;
	 position:absolute;
	 z-index:1;
	 left:-4px;
	 top:0;
	 content:'';
	 background-color:var(--primary-color);
	}
 .banner .container:after{
 	background-color:var(--secondary-color);
	top:auto;
	bottom:0;
 }
.banner h2 {	 
	font-weight:var(--font-medium);
	font-size:40px;
	line-height:40px;
	padding:0;
	position:relative;
	z-index:2;
}
/*************************banners ***************/
.bg01{
	background-image: url(../images/backgrounds/services.jpg);
}
 /*****************************/

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	z-index:2;
}
 
.breadcrumb ul {
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
	padding:0;
 
 

}
.breadcrumb li {
    margin: 0;
	font-size:12px;
	text-transform:uppercase;
	 color:var(--white);
	font-weight:var(--font-bold);
 
	 
}    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
   color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--primary-color);	
 
}
 
 
 /********/

 
/*************** JARALLAX ***************/
.cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 .split{
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	z-index:-1;
	background-repeat: no-repeat;
	background-position: center  center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
}  

.pos-left{
	left:0;
}

.pos-right{
	left:0;
}

 .stores {
	background-image: url(../images/backgrounds/available-stores.jpg);
	 
	
	}

/*********/

 	

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

  
 
.input-container{
	display: flex;
    gap: 0 10px;
    align-items: center;
	background-color:var(--grey);
	position:relative;
	align-items: center;
	justify-content: space-between;
}
 

.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:var(--grey);
    color: var(--primary-color);
    width: 60px;
    height: 60px; 
    border: 0;
    outline: none;
	font-size:24px;
		-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);
}
 

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

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

*:focus {
	outline: none;
}

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

.sendbutton {
	 
	color: var(--white);
	font-size: 24px;
	font-weight:var(--font-bold);
	background-image: linear-gradient(to left, var(--tertiary-color), var(--primary-color));
	border:0;
	padding: 20px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	 
}

.sendbutton:hover {	
	background-image: linear-gradient(to right, var(--tertiary-color), var(--primary-color));
 
}
select.fieldset option {
    color: #000;
}
 
 

::-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:  1350px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 /************header-settings***/
 
  header{
	 position:relative;
	 background-color:rgba(0, 0, 0 ,0.2);
	 border-bottom:1px solid #000;
	 
}
 header.smaller {
	position: fixed;
	left:0;
	top:0;
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	 
	 
}

 .header{
    width:100%;
	padding:10px 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller .header{
 	padding:5px 0;
 }
 
  .top-header, .tollfree{
  	display:none;
  }
 
.logo { 
	width:100px;
	position:relative;
	left:auto;
	top:auto;
	margin-left:0;
}
 
 
header.smaller .logo {
	width:100px;
	margin-left:0;
	top:0;
}
  
 .icon-group{
	 padding-right:20px;
	 margin-right:20px;
	 border-right:1px solid rgba(255, 255, 255, 0.2);
 }
.head-group{
	display:flex;
	flex-direction: row-reverse;
	width:auto;
	}
 .mobile-content,   .mobile-menu{
 	display:block !important;
 }
  nav.vg-nav.vg-nav-lg.lg-menu {
	display: none;
} 
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {

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

 .lamodano-fearures{ 
	gap:10px 1%;
}

 .lamodano-fearures div {
	flex: 0 0 48%;
}

 
   

}

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

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

.product-info{     
	 padding:20px;
}
 .product-info .head h2{
	font-size:17px;

} 

.pro-info{
	padding:0 0 0 50px;
	 
} 
.pro-info img{
	width:40px;
 
} 

.cl-36{
	width:50%; 
	padding:20px !important;
}
 
.cl-28{
	width:100%;
	padding:20px;
 
	}

.cl-28 .funfacts {
	margin-top:0;
	border-left:0; 
}
 
 

.cl-28 .funfacts ul li{
	width:25%;	 		 
	margin: -1px 0 0 -1px;
	padding:25px;
	border:1px solid var(--grey-light) !important;
} 
 
.res-gap{
	height:0;
}
.why-lamodano:before{
	display:none;
}
 
 
.footer {
	padding:40px 0;	  
}
 .footer h2{
	font-size:20px;
 
}
 
   


.footer-left, .footer-right{
	width:100%;
 
}
 
.footer-right{
	padding-top:25px;

}
	
}
@media only screen and (max-width: 768px) {
 

  .store-logos{   
    grid-template-columns: repeat(3, 1fr);
	margin-bottom:25px;
    }
 .store-logos div{ 
	height:auto;
	padding:20px 10px;
 
}
 .store-logos div img{	 
	 width:100px; 
}
 .address-box {
	margin-bottom: 30px;
 }
 .search-input {	
    padding: 0 0 0 25px;
}
.go-button {
    right: 0;
	position: absolute;
} 
 .cont {
	min-height: auto;
 }
}
/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
body {
	font-size: 16px;
	line-height: 24px;
}
.banner { 
	height:150px;
	padding:20px;
	justify-content: center;
	align-items: center;
	}
 .banner h2 { 
  font-size:20px;
  line-height: 25px;
	}
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
.iconic{
	padding:0px;
	margin-bottom: 20px;	 
}
.iconic:last-child{
	margin-bottom: 0px;	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
.webicon{		 
	width:80px;
	height:80px;
	padding:10px;
	position: relative;
	margin-bottom: 25px;
	 
}

.funfacts {
	padding:20px 0; 
}
 .funfacts ul li{
	width:50%;
	padding:20px;
	border:1px solid var(--grey-light);
	margin: -1px 0 0 -1px;
}
	

.funfacts ul li h2{
	font-size:30px;
 
}
 .funfacts p{
	margin:0;
	font-size:14px;
	line-height:16px;
	 
}
.funfacts ul li img{
	width:50px;
 
} 

.TickerNews h2 {
 	font-size:40px;
}


.TickerNews h2 span{
  font-size:40px;
  height:50px;
  line-height:50px;
  left:5px;
  top:7px;
}
.products-row{ 
	gap: 20px 0;
	justify-content: center;
}

 .product-col, .pro-4 {
	flex: 0 0 100%  !important;
	 
}

.cl-36, .cl-28{
	width:100%; 
	padding:20px !important;
}
 
 

.cl-28 .funfacts ul li{
	width:50%;	 		 
 
} 
 .heading{
	font-size:30px;
 
	
}
 .split{
	display:none;
	
} 
 .store-logos div img{	 
	 width:100%; 
}
.news-small, .news-big{
	width:100%;
	padding:10px 0;
}
 .lamodano-fearures{ 
	gap:10px 0;
}

 .lamodano-fearures div {
	flex: 0 0 100%;
	padding:20px;
} 

.f-column{
	width:100%;
	padding:10px 0;
	}

 .footer-logo{
 	width:150px;
 }
   
.ht-style{
	padding:30px 30px 30px 80px;	
  }

.ht-style i{
  left:30px;
  top:30px; 
  } 

.keywords ul li{
	padding:5px 10px;
	font-size:14px;	 
	margin:2px;	 
}
.aside, .summary{
	width:100%;
	 
}
.summary{
	width:100%;
	padding:20px 0;
	}

.client-box {
padding: 30px;
}
}
 
/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
}

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

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