/* Font imports */
@import url('https://fonts.googleapis.com/css?family=Varela+Round|Hammersmith+One');

/* Styles for the body */
body{
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	z-index: -9999999;
	text-align: center;
	overflow-x: hidden;
	background-color: #330033;
	background-attachment: fixed;
	font-family: Varela Round, sans-serif;
	font-size: 18px;
}

/* Styles for all 'a' tags */
body a{
	color: #330033;
	text-decoration: none;
}

/* Changes 'a' tags' font colour when hovered on */
body a:hover{
	color: #cccc00;
	text-decoration: none;
}

/* Styles for all 'h1' tags */
h1{
	font-weight: 600;
}

/* Sets the colour for all 'asterisk' elements */
.asterisk{
	color: red;
}

/* This creates a vertical line in between the glyphicons */
.row.vdivide [class*='col-']:not(:last-child):after {
	background: #330033;
	width: 3px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	min-height: 70px;
}

/* Styles for 'topcontainer' container */
.topcontainer{
	background-color: #FDF5E6;
	border: 1px solid #cccc00;
	border-top: none;
	border-bottom: none;
}

/* Makes the 'logo' image aligned to the left of the container */
.logo img{
	float: left;
}

/* Styles for 'toptext' container */
.toptext{
	font-size: 60px;
	font-family: Hammersmith One, sans-serif;
	font-weight: 900;
}

/* Styles for the contact number at the top of the page */
.number{
	font-size: 40px;
}

/* Styles for the 'navbar' container */
.navbar{
	border: 1px solid #cccc00;
	background-color: #FAECD1;
}

.navbar-nav > li{
	margin-left: 50px;
	margin-right: 50px;
}

#navbar a{
	color: #330033;
}

#navbar a:hover{
	color: #cccc00;
}

/* Styles for the 'active' link in the navigation container */
#navbar .active a{
	color: #8E8D8A !important;
	background-color: transparent;
}

/* This makes the navigation button centered on mobile devices */
.navbar button{
	margin: 0 auto !important;
	border: 1px solid #330033 !important;
}

/* STyles for the 'glyphicon' container */
.glyphcontainer{
	background-image: url(background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 15px 0 0 0; 
	padding: 50px 0;
	border-left: 20px groove #cccc00;
	border-right: 20px ridge #cccc00;
	border-top: 2px solid #cccc00;
	border-bottom: 2px solid #cccc00;
	color: white;
	text-shadow: 0px 0px 10px black;
}

/* Styles for the 'glyphicon' container's 'i' tags */
.glyphcontainer i{
	color: #cccc00; 
	text-shadow: 4px 4px 5px black; 
	margin: 15px 0 0 0;
}

/* Styles for the 'glyphicon' container's 'p' tags */
.glyphcontainer p{
	font-size: 25px;
}

/* Styles for 'container1' */
.container1{
	margin: 15px 0 0 0;
}

/* Styles for the 'img' tags within 'container1' */
.container1 img{
	margin-bottom: 1em;
}

/* Styles for the 'left' div */
.left{
	background-color: #FDF5E6;
	border-left: 20px groove #cccc00;
	border-right: 20px ridge #cccc00;
	border-top: 2px solid #cccc00;
	border-bottom: 2px solid #cccc00;
}

/* Styles for the 'right' div */
.right{
	background-color: #FDF5E6;
	border-left: 20px groove #cccc00;
	border-right: 20px ridge #cccc00;
	border-top: 2px solid #cccc00;
	border-bottom: 2px solid #cccc00;
}

/* This adds bullet points to the unstyled list (to remove whitespace) */
.right li::before{
	content: "\2022";
}

/* Styles for the 'form' within 'container1' */
.container1 form{
	padding: 15px 0 0 0;
}

/* STyles for the 'areas' div */
.areas{
	background-color: #FDF5E6;
	border-left: 20px groove #cccc00;
	border-right: 20px ridge #cccc00;
	border-top: 2px solid #cccc00;
	border-bottom: 2px solid #cccc00;
	margin: 15px 0 0 0;
}
/* Styles for the 'footer' div */

.footer{
	background-color: #FDF5E6;
	border-left: 20px groove #cccc00;
	border-right: 20px ridge #cccc00;
	border-top: 2px solid #cccc00;
	font-size: 15px;
	margin: 15px 0 0 0;
}

/* Styles for devices with a screen width of less than 1150px */
@media only screen and (max-width: 1150px){
	.logo img{
		float: none;
	}
}

/* Styles for devices with a screen width of less than 1150px */
@media only screen and (max-width: 767px){
	.row.vdivide [class*='col-']:not(:last-child):after{
		display: none;
	}
	
	.right{
		display: inline-block;
		margin: 15px 0 0 0;
	}	
}