]

/* 
/* 
	Section Background (bg.css)
	
	Table of Content
	- general settings for section & subheader
	- background settings for page subheader
	- background settings for section
	- media query
/*

/* general settings for section & subheader */
section,
#subheader {
	-webkit-background-size: 100% !important;
	-moz-background-size: 100% !important;
	-o-background-size: 100% !important;
	background-size: 100% !important;
}

/* background settings for section */
#section-fun-facts {
	background: url(../images/doctress/doc_stress.jpg) fixed;
}

#section-testimonial {
	background: url(../images/background/2.jpg) fixed;
}

#section-fun-facts-2 {
	background: url(../images/background/8.jpg) fixed;
}

#section-intro-1 {
	background: url(../images/background/3.jpg) fixed;
}

#section-intro-2 {
	background: url(../images/background/4.jpg) fixed;
}

#section-intro-3 {
	background: url(../images/background/5.jpg) fixed;
}

#section-intro-4 {
	background: url(../images/background/6.jpg) fixed;
}

#section-intro-5 {
	background: url(../images/background/7.jpg) fixed;
}

#section-tickets {
	background: url(../images/background/8.jpg) fixed;
}

#section-intro-6 {
	background: url(../images/background/9.jpg) fixed;
}

#section-intro-7 {
	background: url(../images/background/10.jpg) fixed;
}

#section-intro-8 {
	background: url(../images/doctress/doctress_intro.png) fixed;
}

#section-intro-9 {
	background: url(../images/background/12.jpg) fixed;
}

#subheader {
	background: url(../images/doctress/login_reg.png) fixed;

}
#subheader::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	/* Adjust opacity as needed */
}

#section-side-1.side-bg .background-image {
	background: url(../images/background/bg-side-1.jpg);
}

#section-side-2.side-bg .background-image {
	background: url(../images/background/bg-side-2.jpg);
}

/* media query */
@media only screen and (min-device-width: 768) and (max-device-width: 1024) and (orientation: portrait) {
	section {
		-webkit-background-size: auto 100% !important;
		-moz-background-size: auto 100% !important;
		-o-background-size: auto 100% !important;
		background-size: auto 100% !important;
		background-attachment: scroll !important;
	}
}

@media only screen and (max-width: 992px) {
	#subheader {
		-webkit-background-size: cover !important;
		-moz-background-size: cover !important;
		-o-background-size: cover !important;
		background-size: cover !important;
		background-attachment: scroll !important;
	}
}

@media only screen and (max-width: 992px) {
	section {
		-webkit-background-size: auto 100% !important;
		-moz-background-size: auto 100% !important;
		-o-background-size: auto 100% !important;
		background-size: auto 100% !important;
		background-attachment: scroll !important;
	}
}

/* Media Query for screens less than 560px */
@media (max-width: 560px) {
	#section-intro-8 {
		width: 100%;
		/* Adjust the width as needed */
		margin: 0 auto;
		/* Center the section */
	}

	#section-intro-8 .container {
		padding: 0px;
		/* Adjust padding for smaller screens */
	}

	#section-intro-8 h1 {
		font-size: 36px;
		/* Adjust font size for smaller screens */
	}

	#section-intro-8 h2 {
		font-size: 24px;
		/* Adjust font size for smaller screens */
	}

	#section-intro-8 .btn {
		font-size: 14px;
		/* Adjust font size for smaller screens */
	}
}