*{
	box-sizing:border-box;
}
:root{
  --teal:#4E9C9C;
}
body{
  font-family: Arial, sans-serif;
}

/* Card */
#signup, .accountcard{
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:25px;
}

/* Headings */
#form h4, .accountcard h4{font-weight:700}
#form h5, .accountcard h5{color:#666}

/* Inputs */
#form input, .accountcard input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:14px;
  margin-bottom:5px;
}
#form input:focus, .accountcard input:focus{
  outline:none;
  border-color:var(--teal);
  box-shadow:0 0 0 2px rgba(78,156,156,.15);
}

/* Buttons */
#next,#newac{
  width:100%;
  margin-top:10px;
  background:var(--teal);
  color:#fff;
  border-radius:30px;
  font-weight:600;
}
#next:hover,#newac:hover{
  background:#008080;
}

/* Error */
ps{
  color:#e53935;
  font-size:12px;
  visibility:hidden;
}
#notv{
  visibility:hidden;
  background:#e53935;
  border-radius:6px;
  margin-bottom:10px;
}







#price div img{
border-radius:50% 50%; 
border:solid green thin;
padding:5px;
}
#price div:hover{
	cursor:pointer;
}

#banner img{
	width:100%;
	/*height:300px;*/
	}
#offerbnr p{
	font-size:16px;
}
		
#obnr{
		display:block;
}	
#obnr img{
height:;	
}
#hiw img{ 
	height:80px;
}
#hiw{
	font-weight:normal;
	font-size:16px;
}

#whylove label{ 
 padding:20px;
}

#whylove hr{
		height:3px;
		background-color:#008080;		
}

#whylove p{ 
 font-size:14px; 
}
#f1,#f2{
font-weight:normal;
}
#footer p{
	font-size:16px;
	text-align:justify;
}
#footer ul {
	list-style:none;
	padding:0px;
	font-size:16px;
}
#footer ul li{
	height:40px;
}
															@media screen and (max-width:1000px) {
																#obnr div{
																	padding:0px;
																}	
															}															
												@media screen and (min-width:768px) {
																
													
												}


									@media screen and (max-width:768px) {
																#obnr div{
																	display:none;
															}
															#obnr{
																display:none;
															}
										
#flax {
    -webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
    animation: mymove2 5s infinite;
}
@-webkit-keyframes mymove2 {
    0%   {border:solid thin blue; color:blue;}
    25%  {border:solid thin red; color:red;}
    50%  {border:solid thin green; color:green;}
    75%  {border:solid thin black; color:black}
    100% {border:solid thin blue; color:blue}
}

/* Standard syntax */
@keyframes mymove2 {
    0%   {border:solid thin blue; color:blue;}
    25%  {border:solid thin red; color:red;}
    50%  {border:solid thin green; color:green;}
    75%  {border:solid thin black; color:black}
    100% {border:solid thin blue; color:blue}
}
									}
#pl {
    border:solid thin red;
    -webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
    animation: mymove 5s infinite;
}
@-webkit-keyframes mymove {
    0%   {border:solid thin red; color:red;}
    25%  {border:solid thin blue; color:blue;}
    50%  {border:solid thin yellow; color:yellow;}
    75%  {border:solid thin green; color:green}
    100% {border:solid thin red; color:red}
}

/* Standard syntax */
@keyframes mymove {
    0%   {border:solid thin red; color:red}
    25%  {border:solid thin blue; color:blue}
    50%  {border:solid thin yellow; color:yellow}
    75%  {border:solid thin green; color:green}
    100% {border:solid thin red; color:red}
}



/* COMMON */
.container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
}
.text-center{ text-align:center; }

/* OFFER BAR */
.offer-bar{
    border:2px solid #2e9c43;
    padding:15px;
    border-radius:8px;
    font-size:18px;
    color:#2e9c43;
    margin-bottom:15px;
}

/* PRICE ICONS */
.price-icons{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-bottom:40px;
}
.price-item{
    text-align:center;
    cursor:pointer;
}
.price-item img{
    width:60px;
    height:60px;
    border:2px solid #2e9c43;
    border-radius:50%;
    padding:10px;
}
.price-item span{
    display:block;
    margin-top:8px;
    font-size:15px;
}

/* CTA */
.cta-btn{
    display:inline-block;
    padding:12px 30px;
    border:2px solid #2a45ff;
    color:#2a45ff;
    border-radius:6px;
    text-decoration:none;
    font-size:16px;
    margin-bottom:15px;
}
.cta-btn:hover{
    background:#2a45ff;
    color:#fff;
}
.call-text{
    color:#2e9c43;
    font-size:15px;
    margin-bottom:40px;
}

/* HOW IT WORKS */
.hiw-title{
    font-size:36px;
    color:#1a7c2e;
    margin-bottom:10px;
}
.hiw-line{
    width:120px;
    height:3px;
    background:#2e9c43;
    margin:15px auto;
}
.hiw-sub{
    font-size:22px;
    margin-bottom:50px;
}

/* STEPS */
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}
.step{
    text-align:center;
}
.step img{
    width:90px;
    margin-bottom:15px;
}
.step h4{
    color:#1a7c2e;
    font-size:20px;
    margin-bottom:10px;
}
.step p{
    font-size:14px;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .price-icons{ grid-template-columns:repeat(3,1fr); }
    .steps{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:576px){
    .price-icons{ grid-template-columns:repeat(3,1fr); }
    .steps{ grid-template-columns:1fr; }
    .hiw-title{ font-size:28px; }
}

/* ===== CWASH ABOUT & SERVICES SECTION ===== */
.cwash-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.cwash-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Headings */
.cwash-title {
    font-size: 34px;
    color: #0f9d58;
    margin-bottom: 20px;
    font-weight: 700;
}

.cwash-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* About box */
.cwash-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.cwash-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #20c997;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.cwash-btn:hover {
    background: #008080;
}

/* Services */
.cwash-services {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.cwash-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cwash-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    color: #333;
}

.cwash-services li:last-child {
    border-bottom: none;
}

.cwash-services li span {
    font-size: 18px;
    color: #0f9d58;
}

/* Responsive */
@media(max-width: 900px) {
    .cwash-container {
        grid-template-columns: 1fr;
    }
    .cwash-title {
        font-size: 28px;
    }
}

/* ===== CWASH FOOTER ===== */
.cwash-footer {
    background: linear-gradient(135deg, #4fa6a1, #3c8f8a);
    padding: 50px 20px 25px;
    color: #ffffff;
}

.cwash-footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.cwash-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cwash-footer-links a {
    color: #e8fffd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cwash-footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cwash-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #3c8f8a;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cwash-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.cwash-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 25px 0;
}

.cwash-footer-copy {
    font-size: 14px;
    color: #e0f7f6;
}

/* Responsive */
@media (max-width: 600px) {
    .cwash-footer-links {
        gap: 18px;
    }
}


/* ===== WHY LOVE CWASH ===== */
#whylove {
    /*padding: 80px 0;*/
    background: #ffffff;
}

.whylove-title {
    color: #0f9d58;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.whylove-sub img {
    max-width: 280px;
}

.whylove-card {
    background: #f9fbfb;
    border-radius: 14px;
    padding: 25px 20px;
    border: solid 1px #ccebeb;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.whylove-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.whylove-card img {
    width: 42px;
    margin-bottom: 12px;
}

.whylove-card h5 {
    color: #0f9d58;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.whylove-card p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

.whylove-center-img img {
    max-width: 100%;
}

/* Bottom row style */
.whylove-bottom .whylove-card {
    background: #ffffff;
    border: 1px solid #ccebeb;
}

/* Badge */
.whylove-badge {
    font-size: 11px;
    background: #6c757d;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .whylove-title {
        font-size: 28px;
    }
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
    /*padding: 80px 0;*/
    background: #ffffff;
}

.hiw-title {
    text-align: center;
    margin-bottom: 15px;
    color: #0f9d58;
    font-size: 34px;
    font-weight: 700;
}

.hiw-divider {
    width: 90px;
    height: 3px;
    background: #0f9d58;
    margin: 0 auto 18px;
}

.hiw-subtitle {
    text-align: center;
    font-size: 14px;
    color: #444;
    margin-bottom: 40px;
}

/* Steps */
.hiw-step {
    text-align: center;
    padding: 30px 20px;
    background: #f9fbfb;
    border-radius: 16px;
    border: solid 1px #ccebeb;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.hiw-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.hiw-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #e7f5f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon img {
    width: 38px;
}

.hiw-step h5 {
    font-size: 18px;
    color: #0f9d58;
    font-weight: 600;
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Step number */
.hiw-number {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0f9d58;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .hiw-title {
        font-size: 28px;
    }
}


/* ===== OFFER & CATEGORY SECTION ===== */
.cwash-offer-section {
    /*padding: 70px 20px;*/
    background: #ffffff;
    text-align: center;
}

/* Offer Banner */
.cwash-offer-bar {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 18px 25px;
    border: 2px dashed #0f9d58;
    border-radius: 12px;
    font-size: 22px;
    color: #0f9d58;
    font-weight: 600;
    background: #f3fbf9;
}

.cwash-offer-bar span {
    color: #e63946;
    font-weight: 700;
}

/* CTA Button */
.cwash-cta button {
    background: #ffffff;
    color: #0f9d58;
    padding: 14px 38px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(120deg, #0f9d58, #2a45ff, #0f9d58);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Animated Text */
.cwash-cta button {
    background-size: 100% 100%, 300% 300%;
    animation: borderMove 4s linear infinite;
}

.cwash-cta button span {
    background: linear-gradient(120deg, #0f9d58, #2a45ff, #0f9d58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textMove 3s linear infinite;
}

/* Hover */
.cwash-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(15,157,88,0.25);
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes textMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Call Text */
.cwash-call-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 50px;
}

.cwash-call-text a {
    color: #2a45ff;
    font-weight: 600;
    text-decoration: none;
}

/* Category Icons */
.cwash-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.cwash-category {
    width: 110px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cwash-category img {
    width: 70px;
    height: 70px;
    padding: 14px;
    border-radius: 24%;
    border: 2px solid #0f9d58;
    background: #ffffff;
    transition: all 0.3s ease;
}

.cwash-category span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.cwash-category:hover img {
    background: #f3fbf9;
    transform: scale(1.1);
}

.cwash-category:hover span {
    color: #0f9d58;
}

/* Responsive */
@media (max-width: 768px) {
    .cwash-offer-bar {
        font-size: 14px;
    }
    .cwash-category{
        width: 80px;
    }
    .cwash-categories {
        /*gap: 25px;*/
    }
}


.testimonial-section {
    margin-top: 0;
    padding: 80px 15px;
    height: 361px;
    padding-top: 0px;
    margin-bottom: 150px;
    
}
.swiper-horizontal {
    padding: 40px;
}
.review-card {
  background: #fff;
  padding: 35px 25px;
  border: 1px solid #ccebeb;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-card p {
  font-size: 14px;
  color: #444;
  margin: 20px 0;
}

.review-card h4 {
  margin: 0;
  font-size: 16px;
  color: #222;
}

.review-card span {
  font-size: 14px;
  color: #777;
}

.stars {
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
}

.swiper-horizontal {
    padding-top: 5px;
}


.review-header {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.review-left h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px;
}

/* Rating row */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-badge {
  background: #008080;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.stars {
  font-size: 14px;
  color: #f5b301;
  letter-spacing: 1px;
}

.count {
  font-size: 13px;
  color: #777;
}

/* View all */
.view-all {
  font-size: 14px;
  font-weight: 500;
  color: #008080;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.view-all:hover {
  gap: 10px;
  opacity: 0.85;
}

.view-all .arrow {
  font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .review-left h2 {
    font-size: 22px;
  }
  .testimonial-section{
      margin-bottom: 190px;
  }
}



        .icon{
        	color:white;
        	font-size:22px !important;
        }
        .icon2{
        	color:white;
        	font-size:20px !important;
        }
        
        #lmenu ul{
        	padding:0px;
        	margin:0px;
        }
        
        #lmenu li{
        	padding:8px 0px 8px 20px;	
        	cursor:pointer;
        }
        
        #lmenu li:hover{
        	background-color:#BFDFDF;
        }
        #lmenu li img{
        	width:20px;
        	height:20px;
        }
        
        #lmenu li span{
        	color:rgba(0,0,0,0.6);
        }
        
        #menu1 ul {
        	list-style:none;
        	padding:0px;
        	float:left;
        }
        
        #menu1right div {
        	float:right;
        	padding:10px;
        	color:white;
        	font-weight:bold;
        	cursor:pointer;
        }
        
        #menu1 ul li{
        	padding:10px 15px 10px 15px;
        	color:white;
        	font-weight:bold;
        	float:left;
        	cursor:pointer;
        }
        
        #menu1 a{
        	text-decoration:none;
        	color:white;
        }
        #lmenu a{
        	text-decoration:none;
        	color:black;
        	
        }
        
        #menu1 ul li:hover,#menu1right div:hover{
        	background-color:#008080;
        	opacity:0.4;
        }
        
        #hcs label{
        	font-weight:bold; 
        	font-size:14px; 
        	color:#BFDFDF;
        }
        
        #hcs label img{
            width: 20px;
            margin-right: 10px;
            
        }
        
        #us{
        	text-transform:capitalize;	
        
        }
        #gotop{
        	left:90vw; 
        }
        .clickview{
        	cursor:pointer;
        }
		#lmenu{
			display:;
			width:100vw; height:100vh;
			z-index:2;
			position:fixed;
			top:0px;
		}


			@media screen and (max-width:1100px) {
					#conus{
						display:none;
					}
					#hcs label{
						font-size:16px;
					}
					
					#hcs label img{
						width:18px;
					}
					
			}

			@media screen and (max-width:1200px) {
					#gotop{
						left:85vw; 
					}
				
			}
			

			@media screen and (min-width:992px) {
			#lmenu-item{
						height:77vh;
					}		
					

			}

			@media screen and (max-width:992px) {
					#placeorder{
						display:none;
					}
			
			}
			@media screen and (min-width:995px) {
					#placeorder{
						display:block;
					}
				
			}
			
			@media screen and (min-width:768px) {
		body{
		//	background-color:red;
			}
		#himg{
			width:200px;
			padding-left:40px;
			
		}

		#bar, #bell-car, #locat{
			display:none;
		}
		
		#hcs{
			display:block;
		}




		#f2{
		font-size:24px; 
		}
		#f1{
		font-size:30px; 
		}


		}

		@media screen and (max-width:576px) {
			#gotop{
				left:35vw;
			}
		}

		@media screen and (max-width:768px) {
		#banner img{
			width:100%;
			/*height:180px;*/
		}


		#gotop{
			left:40vw; 
		}


		#menu1,#hcs{
			display:none;
		}

		#lmenu{
			display:;
			/*background-color:rgba(0,0,0,0.7);*/
			width:100vw; height:100vh;
			z-index:2;
			position:fixed;
			top:0;
		}

		#ps,#bn{
			margin-left:0px;
		}


		#lmenu-item{
		overflow:auto;
		height:100vh;
		}

		#f1{
			font-size:20px;
		}


		}

        
        
        /* ===== NAVBAR BASE ===== */
        .cwash-navbar{
            background:#008080;
            color:#fff;
            padding:10px 20px;
            display:flex;
            align-items:center;
            justify-content:space-between;
        }
        
        /* ===== LEFT MENU ===== */
        .nav-left{
            display:flex;
            align-items:center;
            gap:20px;
        }
        
        .menu-btn{
            font-size:22px;
            cursor:pointer;
        }
        
        .nav-links a{
            color:#fff;
            text-decoration:none;
            font-size:15px;
            padding:6px 10px;
            border-radius:6px;
            transition:all .3s ease;
        }
        
        .nav-links a i{
            margin-right:6px;
        }
        
        .nav-links a:hover{
            background:rgba(255,255,255,0.15);
        }
        
        /* ===== LOCATION ===== */
        .location{
            background:#006f6f;
            padding:6px 12px;
            border-radius:20px;
            font-size:14px;
            cursor:pointer;
            display:flex;
            align-items:center;
            gap:6px;
        }
        
        /* ===== RIGHT MENU ===== */
        .nav-right{
            display:flex;
            align-items:center;
            gap:16px;
        }
        
        .nav-right a{
            color:#fff;
            text-decoration:none;
            font-size:14px;
            padding:6px 12px;
            border-radius:20px;
            border:1px solid rgba(255,255,255,0.4);
            transition:.3s;
        }
        
        .nav-right a i{
            margin-right:6px;
        }
        
        .nav-right a:hover{
            background:rgba(255,255,255,0.15);
            color:#008080;
        }
        
        /* ===== MOBILE ===== */
        @media(max-width:900px){
            .nav-links{
                display:none;
            }
        }





/* Responsive */
@media(max-width:576px){
  #lh,#rh{display:none}
}




#signup{
	background-color:#fff; 
}

#form input{
font-size:14px;
width:100%;
text-transform:capitalize;	
padding:10px;
}
#form{
font-size:20px;
}
#form p{
font-size:12px;
}
#form ps{
color:red;
font-size:12px;
visibility:hidden;
}
#notv{
visibility:hidden;
margin-bottom:5px;
	
}

#lh,#rh{
display:block;
}
#next:hover,#newac:hover{
background-color:#008080;
}
p1{
font-size:12px;
}

#next{
background-color:#4E9C9C; color:white
}
#newac{
background-color:#4E9C9C; color:white;
}
										@media screen and (max-width:576px) {
											#lh,#rh{
												display:none;
											}
										}
										
#flax {
    -webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
    animation: mymove2 5s infinite;
}
@-webkit-keyframes mymove2 {
    0%   {border:solid thin blue; color:blue;}
    25%  {border:solid thin red; color:red;}
    50%  {border:solid thin green; color:green;}
    75%  {border:solid thin black; color:black}
    100% {border:solid thin blue; color:blue}
}

/* Standard syntax */
@keyframes mymove2 {
    0%   {border:solid thin blue; color:blue;}
    25%  {border:solid thin red; color:red;}
    50%  {border:solid thin green; color:green;}
    75%  {border:solid thin black; color:black}
    100% {border:solid thin blue; color:blue}
}
		
#lmenu{
    display: none;    
}
#lmenu.active{
    display: block;
}


@media screen and (max-width:576px) {
.b1-content, .b2-content{
    display: none;
}
#lmenu{
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100%;

    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;

    /* keep it rendered */
    display: block;
}

#lmenu.active{
    transform: translateX(0);
}

#menuOverlay {
    
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  display: none;
}
#menuOverlay.active {
  display: block;
}

}
.b1-content, .b2-content{
    position: absolute;
    bottom: 75px;
    color: #fff;
    text-align: center;
    width: 50%;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}

.b1-content{
    left: 188px;
}
.b2-content{
    right: 188px;
}

