:root 
{
  --primary-color: #9d1811;
  --secondary-color: #9d1811;
  --thrird-color: #9d1811;
}

.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}


.leftbutton {float: left;}
.main-row-div
{
    /* background-color: blue; */
	padding: 10px 0px 20px 0px;

	background: #222;
	/*background: linear-gradient(90deg, rgba(255,191,238,1) 0%, rgba(143,211,246,1) 80%);*/
}
.footervcard {float:left; width:100%;}
.home-div
{
    background-color: var(--primary-color);
	/* padding: 20px 15px; */
	border: 10px solid var(--primary-color);
}
.home-div .logo
{
    background: #fff; 
    max-width: 80%;
    height: auto;
    padding: 5px;
    /* border: 1px solid #ddd; */
    /* box-shadow: 1px 1px 10px #ddd; */
    max-height: 150px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.home-div h1
{
   color: var(--primary-color);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    /* letter-spacing: 0.6px; */
    text-transform: uppercase;
    margin: 5px 0px 0px 0px;
    width: 50%;
    margin: 0 auto;
}
.home-div img
{
   width: 50%;
    text-align: center;
    margin: 0 auto;
}
.home-div h2
{
	text-align: center;
	font-size: 18px;
	/* color: #fff; */
	/* margin-bottom: 20px; */
}
.home-cta-btns-ul
{
	list-style-type: none;
	text-align: center;
	padding-left: 0px;
}
.home-cta-btns-ul li
{
	display: inline-block;
	margin: 0px 12px;
	text-align: center;
}
.home-cta-btns-ul li a
{
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-size: 14px;
}
.home-cta-btns-ul li a i
{
	color: #fff;
/* 	background: #EAC33D; */
	background: var(--primary-color);
	/* padding: 7px 10px; */
	font-weight: 500;
	/* box-shadow: 0px 0px 10px 1px rgba(255,255,255,0.3); */
	text-decoration: none;
	font-size: 18px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.3s ease;
}
.home-cta-btns-ul li a i:hover
{
	background-color: #fff;
	color: var(--primary-color);
	box-shadow: 1px 1px 10px #b0b0b0;
}
.contact-points-ul 
{
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}
.contact-points-ul li
{
	color: #fff;
	margin: 15px 0px;
	font-weight: 500;
	font-size: 16.3px;
}
.contact-points-ul li a
{
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}
.contact-points-ul li a i, .contact-points-ul li i
{
	font-size: 16px;
	background: #fff;
	color: var(--primary-color);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	/* box-shadow: 1px 1px 1px #fff; */
}
.contact-points-ul li a span, .contact-points-ul li span
{
	margin-left: 10px;
}
.social-ul
{
	list-style-type: none;
    margin-left: 0px;
    text-align: center;
    margin-bottom: 0px;
    padding-left: 0px;
    margin-top: 20px;
}
.social-ul li
{
	display: inline-block;
	margin: 0px 1px;
}
.social-ul li a
{
	color: #fff;
}
.social-ul li a i
{
	background: grey;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
	font-size: 14px;
}
.social-ul li a .active-i:hover
{
	background: #fff;
	color: #000;
}
.social-ul li a .fa-facebook
{
	background-color: #3b5998;
}
.social-ul li a .fa-twitter
{
	background-color: #1da1f2;
}
.social-ul li a .fa-instagram
{
	background-color: #c32aa3;
}
.social-ul li a .fa-youtube-play
{
	background-color: #ff0000;
}
.social-ul li a .fa-linkedin
{
	background-color: #0e76a8;
}	
.section
{
	background-color: #fff;
	margin: 15px 0px;
    padding: 30px 20px;
    border: 5px solid var(--primary-color);
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.2);
}

.about-div p
{
	line-height: 22px;
}
.about-div ul, .about-div ol
{
	padding-left: 30px;
}
.single-prod-serv-div
{
	background: rgba(255,0,87, 0.2);
	padding: 20px 15px 10px 15px;
	margin-bottom: 12px;
	text-align: center;
	box-shadow: 1px 1px 10px #b0b0b0;
	border: 2px solid #fff;
}
.single-prod-serv-div h3
{
	font-size: 19px;
  	margin: 0px;
	margin-bottom: 10px;
	font-weight: 600;
	/* text-align: left; */
	text-transform: uppercase;
}
.single-prod-serv-div img
{
	background: #fff;
  	width: 100%;
  	height: 210px;
	object-fit: contain;
	border: 1px solid #ddd;
	box-shadow: 1px 1px 10px #ddd;
}
.youtube-video
{
	width: 100%;
	height: 250px;
	margin-bottom: 10px;
}
.client-div-part
{
	padding: 0px 5px;
}
.client-div-part p
{
	font-weight: 500;
	font-size: 14px;
	text-align: center;
}
.client-img-bg
{
	width: 100%;
	height: 100px;
	background-color: #fff;
	padding: 5px;
	margin-bottom: 3px;
	box-shadow: 1px 1px 10px #ddd;
	border: 1px solid #ddd;
}
.client-img-bg img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.payment-table
{
	box-shadow: 1px 1px 10px #b0b0b0;
	border: 2px solid #fff;
}
.table-striped tbody tr:nth-of-type(odd)
{
	background-color: rgba(255,0,87, 0.2);
}
/* .payment-table tbody tr td
{
	font-weight: 500;
} */
.payment-table tbody tr td:nth-child(3)
{
	font-weight: 500;
	text-transform: uppercase;
}
.payment-table tbody tr td:nth-child(2)
{
	font-weight: 700;
	/* color: #555555; */
	/* border-right: 1px solid #ddd; */
}
.payment-table tbody tr th
{
	color: #101036;
	/* border-right: 1px solid #ddd; */
}
.review-name
{
	margin-bottom: 5px;
	font-weight: 600;
	color: #101036;
}
.review-name i
{
	margin-right: 5px;
	color: gray;
	font-size: 18px;
}
.review-star
{
	color: #FFB900;
}
.gmap
{
	width: 100%;
	height: 400px;
	box-shadow: 1px 1px 10px gray;
	border-radius: 15px;
}
.section h2
{
	text-align: center;
    text-transform: uppercase;
    font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.section h2 i
{
	margin-right: 12px;
}
.section h2:after {
	content: '';
	display: block;
	margin: auto;
	height: 7px;
	animation: underline 2s infinite;
	margin-top: 5px;
}
.home-div h1:after {
	content: '';
	display: block;
	margin: auto;
	height: 7px;
	animation: underline 2s infinite;
	margin-top: 5px;
}
@keyframes underline {
  0% { width: 0%; background-color: var(--secondary-color);}
  60% {width: 60%; background-color: transparent;}
}
.form-prefix
{
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 0px!important;
	border: none;
}
.form-submit
{
    background-color: var(--primary-color);
}
.review-form
{
	background-color: rgba(255,0,87, 0.2);
	padding: 15px;
	color: #fff;
	border: 1px solid #fff;
	box-shadow: 1px 1px 10px #ddd;
}
.single-branch
{
	border: 1px solid #ddd;
	box-shadow: 1px 1px 10px #b0b0b0;
	padding: 20px;
	margin-bottom: 10px;
}
.contact-left-points-div
{
    display: flex;
    align-items: center;
}
.contact-left-points-div .icon
{
    display: inline-block;
    font-size: 22px;
    background-color: var(--primary-color);
    min-width: 50px;
    min-height: 50px;
    /* border-radius: 50%; */
    text-align: center;
    color: #fff;
    line-height: 50px;
    margin-right: 20px;
}
.contact-left-points-div .text
{
    display: inline-block;
    font-size: 16px;
    /* font-weight: 600; */
	color: #000;
}
.contact-left-points-div .text .heading
{
    /* color: var(--primary-color); */
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}
.contact-left-points-div .text .address
{
	font-size: 16px;
	text-align: center;
}
.single-video
{
	border: 1px solid #ddd;
	box-shadow: 1px 1px 10px #b0b0b0;
	padding: 10px;
	background-color: rgba(255,0,87, 0.2);
	border: 2px solid #fff;
	margin-bottom: 10px;
}
.single-video h3
{
	text-align: center;
	font-size: 18px;
}
.img-responsive
{
	box-shadow: 1px 1px 10px #ddd;
	height: 120px;
	object-fit: cover;
}
.single-pdf
{
	border: 1px solid #ddd;
	box-shadow: 1px 1px 10px #b0b0b0;
	padding: 20px 10px;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 15px;
}
.single-pdf .fa-file-pdf-o
{
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: block;
	border-radius: 50%;
	/* box-shadow: 1px 1px 10px #b0b0b0; */
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
}
.single-pdf h3
{
	font-size: 20px;
	margin-top: 10px;
	/* border-bottom: 1px solid gray; */
}
.primary-btn
{
	border-radius: 0px;
	background-color: var(--primary-color);
	border: none;
	min-width: 100px;
	padding: 5px 10px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.primary-btn i
{
	margin-right: 10px;
}
.primary-btn:hover
{
	background-color: #fff;
	color: var(--primary-color);
	box-shadow: 1px 1px 10px #b0b0b0;
}
.about-gst
{
	background: rgba(255,0,87, 0.2);
	padding: 10px 20px;
	/* box-shadow: 1px 1px 10px #ddd; */
	font-weight: 500;
}
.about-content
{
	box-shadow: 1px 1px 10px #ddd;
	padding: 10px;
}
.navigation-div
{
	position: fixed;
	bottom: 0px;
  	background: #fff;
  	width: 100%;
	text-align: center;
	min-height: 50px;
	z-index: 999;
}
.navigation-div ul
{
	list-style-type: none;
	padding-top: 8px;
	overflow: auto;
	margin-bottom: 0px;
	padding-left: 0px;
	display: block;
	/* text-align: center; */
	/* justify-content: center; */
	/*margin-left: auto!important;
	margin-right: auto!important;
	text-align: center;*/
}
.navigation-div ul li
{
	display: inline-block;
	text-align: center;
	padding: 0px 5px;
	min-width: 80px;
}
.navigation-div ul li i
{
	display: block;
	font-size: 16px;
	color: var(--primary-color);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #fff;
	margin-left: auto;
	border-radius: 50%;
	/* box-shadow: 1px 1px 10px #ddd; */
	border: 1px solid var(--primary-color);
	margin-right: auto;
	transition: all 0.3s ease;
}
.navigation-div ul li a
{
	color: #000;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
}
.copyright-div
{
	border: 0px;
	padding-top: 0px;
	padding-bottom: 10px;
	margin-top: -10px;
}
.copyright-div p
{
	text-align: center;
	padding-top: 10px;
	font-size: 15px;
	font-weight: 600;
}
.copyright-div p i
{
	color: red;
}
.copyright-div p a
{
	color: #000;
	text-decoration: underline;
}
.copyright-div p a:hover
{
	color: blue;
}
.shop-now-btn
{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 17px;
}
.shop-now-btn a
{
	background-color: #fff;
	color: #fff;
	padding: 8px 30px;
	text-decoration: none;
	border: 1px solid #fff;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 1.5s ease infinite;
	transition: all 0.3s ease;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.shop-now-btn a:hover
{
	background: #fff;
	color: var(--primary-color);
	box-shadow: 1px 1px 10px #b0b0b0;
}
.shop-now-btn a i
{
	margin-right: 10px;
}
.shop-now-btn-div
{
	text-align: center;
	margin: 20px 0px;
}
.whatsapps-share-div
{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.whatsapps-share-div form
{
	display: flex;
	justify-content: center;
}
.whatsapps-share-div form .input-group-prepend div
{
	border-radius: 0px;
	font-weight: 500;
}
.whatsapps-share-div form input
{
	border-radius: 0px;
	border: none;
}
.whatsapps-share-div form input::placeholder
{
	font-size: 14px;
}
.whatsapp-share-btn
{
	background-color: #25D366;
	border: 2px solid transparent;
	border-radius: 0px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.whatsapp-share-btn:hover
{
	background-color: #fff;
	color: var(--primary-color);
	border: 2px solid #fff;
	/* box-shadow: 1px 1px 10px #ddd; */
}
.whatsapp-share-btn i
{
	margin-right: 5px;
}
.theme-share-option
{
	display: inline-block;
}
.home-2-btns
{
	text-align: center;
	margin: 10px 0px 20px 0px;
}
.home-2-btns .btn1, .home-2-btns .theme-share-option .btn-primary
{
	background-color: #161616;
	border-radius: 0px;
	color: #fff;
	border-color: transparent;
	min-width: 180px;
	font-weight: 600;
	margin: 0px 5px;
	border-bottom: 5px solid rgba(0,0,0,0.5);
	transition: all 0.3s ease;
}
.home-2-btns .btn1:hover, .home-2-btns .theme-share-option .btn-primary:hover
{
	background-color: rgba(0,0,0,0.5);
}
.home-2-btns .btn1 i, .home-2-btns .theme-share-option .btn-primary i
{
	padding-right: 10px;
}
.dropdown-menu a i
{
	padding-right: 5px;
}
.home-div-white-div
{
	background-color: #fff;
	padding: 10px 10px 1px 10px;
	/* box-shadow: inset 1px 1px 10px #ddd; */
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
}
.home-div-content-div
{
	padding: 0px 10px 20px 10px;
}

.ratings-ul 
{
	list-style-type: none;
	text-align: center;
	margin-bottom: 8px;
	padding-left: 0px;
}
.ratings-ul li
{
	display: inline-block;
    color: #ffffff;
    font-size: 15px;
    background-color: #000;
    padding: 6px;
}
.ratings-ul li a
{
	
    color: #ffffff;
   
}

/* Product Adv Section */
#module {
	width: 100%;
	font-size: 15px;
	line-height: 1.5;
	margin-top: 10px;
  }
  
  #module .collapsed:after  {
	  content: '▼';
  }
  
  #module .read-more-a:not(.collapsed):after {
	  content: '▲';
  }
  #module .read-more-a
  {
	  background-color: var(--primary-color);
	  color: #fff;
	  /* padding: 7px 25px; */
	  text-decoration: none;
	  font-weight: 500;
	  height: 40px;
	  width: 40px;
	  line-height: 40px;
	  display: inline-block;
	  border-radius: 50%;
	  font-size: 16px;
  }
.prod-show-more-div
{
	margin-bottom: 20px;
}
.prod-show-more-div p
{
	/* text-align: justify; */
	font-weight: 500;
	font-size: 15.5px;
	/* color: gray; */
}
.prod-show-more-div h4
{
	text-align: left;
	font-weight: 700;
	color: #101036;
	padding-left: 10px;
	font-size: 18px;
}
/* .prod-show-more-div h4 i
{
	padding-right: 5px;
} */
.prod-show-more-div h4 .disc
{
	float: right;
	font-size: 16px;
}
.prod-show-more-div h4 .disc span
{
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: var(--primary-color);
	border-radius: 50%;
	font-size: 12px;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.prod-show-more-div h4 .dashed-price
{
	font-size: 16px;
	margin-left: 20px;
}
.prod-btns
{
	margin-top: 30px;
	clear: both;
}
.prod-ind-btn
{
	border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary-color);
	border: none;
	margin: 0px 10px;
	min-width: 35%;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}
.prod-ind-btn:hover
{
	background-color: #fff;
	box-shadow: 1px 1px 10px #ddd;
	color: #101036;
	border: 1px solid #ddd;
}
.prod-ind-btn i
{
	padding-right: 10px;
}
.modal-title
{
	margin-left: auto;
	text-transform: uppercase;
	color: #101036;
	font-weight: 700;
}
.modal-close-btn
{
	border-radius: 0px;
}
.modal-close-btn i
{
	margin-right: 5px;
}
.navigation-div ul li a:hover i
{
	background-color: var(--primary-color);
	box-shadow: 1px 1px 10px #aaa;
	color: #fff;
}
.whatsapp-enquiry
{
	background-color: #44C455;
}
/* ==== Mobile CSS ==== */
@media only screen and (max-width: 600px)
{
    .main-row-div
	{
		padding: 10px 10px 20px 10px;
	}
	.navigation-div ul
	{
		/*display: flex;*/
	}
	.img-responsive
	{
		height: 100px;
	}
	.whatsapps-share-div form .input-group
 	{
		width: 50%!important;
	}
	.whatsapps-share-div
	{
		margin-left: -10px;
		margin-right: -10px;
		text-align: center;
	}
	.whatsapps-share-div form input::placeholder
	{
		font-size: 12px;
	}
	.contact-points-ul li
	{
		font-size: 15.5px;
	}
	.home-2-btns .btn1, .home-2-btns .theme-share-option .btn-primary
	{
		min-width: 140px;
		margin: 0px;
		font-size: 14px;
	}
	.section
	{
		padding: 30px 10px;
	}
	.clients-section 
	{
		padding: 30px 20px;
	}
	.copyright-div
	{
		border: 0px;
		padding-top: 0px;
		padding-bottom: 10px;
		margin-top: -10px;
	}
	.single-prod-serv-div
	{
		padding: 20px 10px 10px 10px;
	}
	#module .read-more-a
	{
		font-size: 18px;
	}
	.prod-ind-btn
	{
		min-width: auto;
		margin: 0px 3px;
	}
	.shop-now-btn a
	{
		padding: 8px 40px;
	}
	.home-div .logo
	{
		min-height: 80px;
	}
}