.parallax-box{
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	height: 600px;
	width: 100%;
}
.parallax-box .inner{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0,0.9);
}
.bghomewelcome{
	background-image: url('../../images/background/bg-home-welcome.jpg');
}
.parallax-box .parallax-text{
	position: relative;
	top: 9em;
}
.parallax-box .parallax-text h2{
	font-size: 2.7em;
	font-weight: 800;
}
.parallax-box .parallax-text h4{
	color: white;
}
.parallax-box .parallax-text p{
	font-size: 18px;
	color: white;
	line-height: 35px;

}
.text-dp-yellow{
	color: #FBA919;
}
section.title{
	padding-top: 50px;
	padding-bottom: 50px;
	background-image: url('../../../../images/background/bredcrumb.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}
section.title h3{
	margin-top: 10px;
}

.border-bottom{
	border-bottom: 2px solid black;
}
select{
	border-radius: 2px;
    border: 1px solid #e5e5e5;
    color: #b2b2b2;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    height: auto;
    padding: 12.5px 20px!important;
}
.text-red{
	color: red;
}
.form-control.is-invalid{
	border: 1px solid red;
	color: red;
}
.form-control.is-valid{
	border: 1px solid green;
	color: red;
}
.text-green{
	color: green;
}
.invalid-feedback{
	color: red;
}
.valid-feedback{
	color: green;
}

/* visitor dashboard */

.products-grid {

}

.product-flag {
    border: 1px solid #ddd; /* Border around product */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Prevent content overflow */
    background-color: #fff; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.2s, box-shadow 0.2s; /* Add hover effect */
}

.product-flag:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.img-box img {
    display: block;
    max-width: 100%; /* Ensure the image fits the container */
    height: auto; /* Maintain aspect ratio */
}

.product-flag a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Text color */
    display: block;
    padding: 12px!important;
    text-align: center;
    font-weight: bold;
}
.product-flag a:hover {
    color: #007bff; /* Change color on hover */
}
