/**************************************************
 										Theme Colour
**************************************************/

/*	Blue 			=		#0000ff			*/
/*	Yellow 		=		#ffff00			*/

/**************************************************
 											Universal
**************************************************/

* {
	font-family: 'Poppins', sans-serif;
}

/**************************************************
 												NavBar
**************************************************/

/*  Navigation Bar */
#navbar {
	position: relative;
	background: #ffff00;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: solid #0000ff 5px;
}

/* Navigation Logo */
#navbarBrand {
	margin: 10px 60px 10px 30px;
	height: 80px;
}

/* Navbar Item */
#navbarItem {
	color: #000000;
	font-weight: bold;
	width: 150px;
	margin: 0;
	font-size: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	border-bottom: 3px solid rgba(0, 0, 255, 0);
}
#navbarItem:active,
#navbarItem:hover,
#navbarItem:focus {
	color: #0000ff;
	border-bottom: 3px solid rgba(0, 0, 255, 1);
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Navigation Logo */
	#navbarBrand {
		margin: 10px auto 10px 40%;
		height: 80px;
	}

	/* Toggle Button */
	.navbar-toggler span {
		position: relative;
		display: block;
		background-color: #0000ff;
		height: 1px;
		width: 40px;
		margin-top: 10px;
		margin-bottom: 10px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		right: 10px;
		opacity: 1;
	}

	.navbar-toggler span:nth-child(1),
	.navbar-toggler span:nth-child(3) {
		-webkit-transition: transform .40s ease-in-out;
		-moz-transition: transform .40s ease-in-out;
		-o-transition: transform .40s ease-in-out;
		transition: transform .40s ease-in-out;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(1) {
		position: absolute;
		right: 20px;
		top: 40px;
		width: 45px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
		opacity: 0.9;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(2) {
		height: 20px;
		visibility: hidden;
		background-color: transparent;
	}

	.navbar-toggler:not(.collapsed) span:nth-child(3) {
		position: absolute;
		right: 20px;
		top: 40px;
		width: 45px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
		opacity: 0.9;
	}

	/* Navbar Item */
	#navbarItem {
		color: #000000;
		font-weight: bold;
		width: 100%;
		font-size: 16px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
		text-align: left;
		border-bottom: none;
	}
	#navbarItem:active,
	#navbarItem:hover,
	#navbarItem:focus {
		color: #0000ff;
		border-bottom: none;
	}

}

/**************************************************
 												Home
**************************************************/

/* Section */
#indexPhotoSlidesSection {
	margin: 0px;
}

/* Photo Slides */
#indexPhotoSlides {
	width: 100%;
}

/* Photo */
#indexPhotoSlidesPhoto {
	object-fit: cover;
	object-position: 10% 90%;
	width: 100%;
	height: 600px;
	margin: auto;
}

/* Photo Slides Dots */
#indexPhotoSlidesIndicators li {
	width: 60px;
	height: 2px;
	margin: 10px;
	cursor: pointer;
	border-radius: 0;
	background-color: #0000ff;
}
#indexPhotoSlidesIndicators .active {
	background-color: #ffff00;
}

/* Section */
#aboutAndWhySection {
	border-bottom: solid #ffff00 5px;
}

/* About Us */
#aboutUs {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	background-color: #0000ff;
	padding: 100px 0px;
}

/* About Us Header */
#aboutUsHeader {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	margin-bottom: 25px;
}

/* About Us Body */
#aboutUsBody {
	color: #ffffff;
	text-align: justify;
	font-size: 20px;
	line-height: 2.2;
	padding: 0px 60px;
}

/* Why Choose Us */
#whyChooseUs {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	background-color: #ffffff;
	padding: 100px 0px;
}

/* Why Choose Us Header */
#whyChooseUsHeader {
	font-size: 30px;
	font-weight: bold;
	color: #0000ff;
	text-align: center;
	margin-bottom: 25px;
}

/* Why Choose Us Body */
#whyChooseUsBody {
	color: #000000;
	text-align: justify;
	font-size: 20px;
	line-height: 2.2;
	padding: 0px 60px;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Photo */
	#indexPhotoSlidesPhoto {
		object-fit: cover;
		object-position: 50% 50%;
		width: 100%;
		height: 400px;
		margin: auto;
	}

	/* Photo Slides Dots */
	#indexPhotoSlidesIndicators li {
		width: 40px;
		height: 2px;
		margin: 5px;
		cursor: pointer;
		border-radius: 0;
		background-color: #0000ff;
		list-style-type: square;
	}
	#indexPhotoSlidesIndicators .active {
		background-color: #ffff00;
	}

	/* About Us Header */
	#aboutUsHeader {
		font-size: 22px;
		font-weight: bold;
		color: #ffffff;
		text-align: center;
		margin-bottom: 25px;
	}

	/* About Us Body */
	#aboutUsBody {
		color: #ffffff;
		text-align: center;
		font-size: 16px;
		line-height: 2.2;
		padding: 0px 50px;
	}

	/* Why Choose Us Header */
	#whyChooseUsHeader {
		font-size: 22px;
		font-weight: bold;
		color: #0000ff;
		text-align: center;
		margin-bottom: 25px;
	}

	/* Why Choose Us Body */
	#whyChooseUsBody {
		color: #000000;
		text-align: center;
		font-size: 16px;
		line-height: 2.2;
		padding: 0px 50px;
	}

}

/**************************************************
 										Unit Sizes
**************************************************/

/* Unit Sizes Section */
#unitSizesSection {
	width: 100%;
	height: 100%;
}

/* Unit Sizes Section */
#unitSizesSection {
	width: 100%;
	height: 100%;
}

/* Unit Sizes Section Header */
#unitSizesSectionHeader {
	position: relative;
	font-size: 100px;
	font-weight: #bold;
	color: #ffffff;
	text-align: center;
	padding-top: 150px;
}

/* Photo */
#sectionBannerPhoto {
	position: absolute;
	object-fit: cover;
	object-position: 60% 40%;
	width: 100%;
	height: 400px;
	margin: auto;
}

/* Unit Sizes Mini Section */
#unitSizesMiniSection {
	margin-top: 200px;
	position: relative;
	padding: 100px;
}

/* Header */
#unitSizesHeader {
	font-size: 60px;
	font-weight: bold;
	color: #0000ff;
	text-align: center;
}

/* Body */
#unitSizesBody {
	color: #0000ff;
	text-align: center;
	font-size: 30px;
	line-height: 2.2;
	padding: 0px 60px;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Unit Sizes Section Header */
	#unitSizesSectionHeader {
		position: relative;
		font-size: 50px;
		font-weight: #bold;
		color: #ffffff;
		text-align: center;
		padding-top: 70px;
	}

	/* Photo */
	#sectionBannerPhoto {
		position: absolute;
		object-fit: cover;
		object-position: 60% 40%;
		width: 100%;
		height: 200px;
		margin: auto;
	}

	/* Unit Sizes Mini Section */
	#unitSizesMiniSection {
		margin-top: 100px;
		position: relative;
		padding: 100px;
	}

}

/**************************************************
									Contact Us Page
**************************************************/

/* Photo */
#contactUsPhoto {
	object-fit: cover;
	object-position: 60% 40%;
	width: 100%;
	height: 400px;
	margin: auto;
}

/* Section 1 */
#contactUsSection1 {
	width: 100%;
	height: 100%;
	background-color: #0000ff;
}

/* Address */
#contactUsAddress {
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	margin: 0;
	padding: 20px 0;
}

/* Section 2 */
#contactUsSection2 {
	background-image: url('../View/Images/ContactUs/background.jpg');
	background-position: center;
	background-repeat: no-repeat;
  background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width: 100%;
	height: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

/* Header */
#contactUsHeader {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	margin-bottom: 20px;
}

/* Text Boxes */
#contactUsTextBoxes {
	color: #ffff00;
	background: rgba(0, 0, 255, 0.5);
	border: 0;
	border-radius: 0;
	width: 60%;
	height: 50px;
	margin: auto;
	font-size: 20px;
}

/* Message Box */
#contactUsMsgBox {
	color: #ffff00;
	background: rgba(0, 0, 255, 0.5);
	border: 0;
	border-radius: 0;
	width: 60%;
	margin: auto;
	font-size: 20px;
}

/* Text Boxes Placeholder */
#contactUsTextBoxes::-webkit-input-placeholder,
#contactUsMsgBox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ffffff;
}
#contactUsTextBoxes::-moz-placeholder,
#contactUsMsgBox::-moz-placeholder { /* Firefox 19+ */
  color: #ffffff;
}
#contactUsTextBoxes:-ms-input-placeholder,
#contactUsMsgBox:-ms-input-placeholder { /* IE 10+ */
  color: #ffffff;
}
#contactUsTextBoxes:-moz-placeholder,
#contactUsMsgBox:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}

/* Recaptcha */
#recaptcha {
	width: 300px;
	margin: 20px auto 20px auto;
}

/* Contact Us Form Submit Button */
#contactSubmitBtn {
	font-size: 22px;
	color: white;
	background: #0000ff;
	border: 0;
	border-radius: 0;
	width: 300px;
	height: 60px;
	margin: auto;
}
#contactSubmitBtn:hover,
#contactSubmitBtn:focus {
	background: #000000;
}

/* Call Button */
#callUsBtn {
	color: #FFFFFF;
	font-size: 60px;
	background-color: #00cc00;
	border: 0;
	border-radius: 25px;
	width: 120px;
	height: 120px;
	margin: 25px auto;
	padding-top: 20px;
}
#callUsBtn:hover,
#callUsBtn:focus {
	background-color: #000000;
}

/* Contact Us - Server Success */
#contactUsServerSuccess {
	background-color: rgba(0, 204, 0, 0.8);
	border: 0;
	border-radius: 0;
	color: white;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	padding-top: 200px;
	width: 60%;
	height: 480px;
}

/* Contact Us - Server Error */
#contactUsServerError {
	background-color: rgba(255, 0, 0, 0.8);
	border: 0;
	border-radius: 0;
	color: white;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: auto auto 20px auto;
	width: 60%;
}

/* Google Map Section */
#googleMapSection {
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #ffff00;
}

/* Google Map Header */
#googleMapHeader {
	font-size: 30px;
	font-weight: bold;
	color: #0000ff;
	text-align: center;
	padding: 50px 0px;
}

/* Google Maps */
#GoogleMaps {
	height: 450px;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* On Small Screen */
@media screen and (max-width: 1024px) {

	/* Photo */
	#contactUsPhoto {
		object-fit: cover;
		object-position: 50% 50%;
		width: 100%;
		height: 200px;
		margin: auto;
	}

	/* Address */
	#contactUsAddress {
		color: #ffffff;
		text-align: center;
		font-size: 16px;
		margin: 0;
		padding: 15px 15px;
	}

	/* Header */
	#contactUsHeader {
		font-size: 22px;
		font-weight: bold;
		color: #ffffff;
		text-align: center;
		margin-bottom: 20px;
	}

	/* Text Boxes */
	#contactUsTextBoxes {
		color: #ffff00;
		background: rgba(0, 0, 255, 0.5);
		border: 0;
		border-radius: 0;
		width: 100%;
		height: 50px;
		margin: auto;
		font-size: 16px;
	}

	/* Message Box */
	#contactUsMsgBox {
		color: #ffff00;
		background: rgba(0, 0, 255, 0.5);
		border: 0;
		border-radius: 0;
		width: 100%;
		margin: auto;
		font-size: 16px;
	}

	/* Contact Us Form Submit Button */
	#contactSubmitBtn {
		color: white;
		background: #0000ff;
		border: 0;
		border-radius: 0;
		width: 300px;
		height: 60px;
		margin: auto;
		font-size: 16px;
	}
	#contactSubmitBtn:hover,
	#contactSubmitBtn:focus {
		background: #000000;
	}

	/* Contact Us - Server Success */
	#contactUsServerSuccess {
		background-color: rgba(0, 204, 0, 0.8);
		border: 0;
		border-radius: 0;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		padding-top: 200px;
		width: 100%;
		height: 480px;
	}

	/* Contact Us - Server Error */
	#contactUsServerError {
		background-color: rgba(255, 0, 0, 0.8);
		border: 0;
		border-radius: 0;
		color: white;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: auto auto 20px auto;
		width: 100%;
	}

	/* Google Map Header */
	#googleMapHeader {
		font-size: 22px;
		font-weight: bold;
		color: #0000ff;
		text-align: center;
		padding: 40px 0px;
	}

	/* Google Maps */
	#GoogleMaps {
		height: 400px;
		width: 100%;
		margin: 0;
		padding: 0;
	}

}

/**************************************************
 										Back To Top
**************************************************/

#backToTop {
	position: fixed;
	display: none;
	background: rgba(255, 255, 0, 0.8);
	bottom: 40px;
	right: 40px;
	width: 50px;
	height: 50px;
	text-decoration: none;
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#backToTop i {
	position: relative;
	color: #0000ff;
	left: 10px;
	top: 30px;
	margin-top: -35px;
	font-size: 35px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#backToTop:hover i {
	top: 12px;
}

/**************************************************
 												Footer
**************************************************/

/* Section */
#footerSection {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #404040;
}

/* Footer Text 1 */
#footerText1	{
	color: white;
	margin-top: 10px;
	font-size: 14px;
}

/* Designed and Developed By Logo */
#designedAndDevelopedByLogo	{
	height: 75px;
	margin: 40px auto 5px auto;
	padding: 0;
}

/* Footer Text 2 */
#footerText2	{
	color: white;
	font-size: 11px;
}

/* On Small Screen */
@media screen and (max-width: 768px) {

	/* Footer Text 1 */
	#footerText1	{
		color: white;
		margin-top: 10px;
		font-size: 12px;
	}

}
