body > .body > .container > .hero-container {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 500px;
	float: left;
	overflow: hidden;
	background-color: #000000;
}
body > .body > .container > .hero-container > .image-container {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.4;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('https://www.acsselfstore.co.uk/images/contact-us/hero-bg.jpg');
}
body > .body > .container > .hero-container > .body-container {
	position: absolute;
	display: inline-block;
	width: 100%;
	top: calc(50% + 50px);
	left: 0;
	transform: translateY(-50%);
}
body > .body > .container > .hero-container > .body-container > .inline > .text-container {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 900px;
	float: left;
}
body > .body > .container > .hero-container > .body-container > .inline > .text-container > .title {
	color: #ffffff;
}
body > .body > .container > .hero-container > .body-container > .inline > .text-container > .description {
	color: #FFFFFF;
}




body > .body > .container > .assistance-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	margin-top: 60px;
}
body > .body > .container > .assistance-container > .inline > .text-container {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 1000px;
	padding: 25px 80px;
	border-radius: 30px;
	background-color: #FE5A02;
}
body > .body > .container > .assistance-container > .inline > .text-container > .description {
	width: 100%;
	float: left;
	margin: 0;
	color: #FFFFFF;
	text-align: center;
}



body > .body > .container > .contact-container {
	position: relative;
	display: inline-block;
	width: 100%;
	float: left;
	margin-top: 60px;
}
body > .body > .container > .contact-container > .inline > .section-container {
    position: relative;
    display: flex;
    width: 100%;
    float: left;
    padding: 40px 80px;
    margin-top: 40px;
    border-radius: 30px;
    overflow: hidden;
    background: #f1f1f1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container {
    position: relative;
    display: inline-block;
    width: 62%;
    float: left;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    background: #FFFFFF;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container {
	margin-top: 20px;
	padding-right: 10px;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-half {
	width: 50%;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-full {
	width: 100%;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container[data-number="1"],
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container[data-number="2"] {
	margin-top: 0px;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-full {
	text-align: center;
}
body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container > .label {
	width: 100%;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container {
    position: relative;
    display: inline-block;
    width: calc(38% - 20px);
    float: left;
    padding: 40px;
    border-radius: 30px;
    background: #FF5A0D;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .header-container {
    position: relative;
    display: inline-block;
	width: 100%;
    float: left;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .header-container > .title {
	width: 100%;
    float: left;
	color: #FFFFFF;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .header-container > .description {
	width: 100%;
    float: left;
	color: #FFFFFF;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .body-container {
    position: relative;
    display: inline-block;
	width: 100%;
    float: left;
	margin-top: 20px;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .body-container > .map-container {
    position: relative;
    display: inline-block;
	width: 100%;
    float: left;
	border-radius: 30px;
	overflow: hidden;
}
body > .body > .container > .contact-container > .inline > .section-container > .location-container > .body-container > .map-container > .map {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 280px;
    float: left;
    border: none;
}





/* ----------------------------------------------------*/
/* Small Screens */
/* ----------------------------------------------------*/

@media only screen and (max-width : 1300px) {

}



/* ----------------------------------------------------*/
/* Smaller Screens */
/* ----------------------------------------------------*/

@media only screen and (max-width : 1100px) {

	body > .body > .container > .hero-container {
		height: auto;
	}
	body > .body > .container > .hero-container > .image-container {
		opacity: 0.7;
	}
	body > .body > .container > .hero-container > .body-container {
		position: relative;
		display: inline-block;
		width: 100%;
		top: 0;
		left: 0;
		padding: 120px 0px 60px;
		transform: none;
	}
	body > .body > .container > .hero-container > .body-container > .inline > .text-container {
		max-width: 800px;
		float: none;
	}
	body > .body > .container > .hero-container > .body-container > .inline > .text-container > .title {
		text-align: center;
	}
	body > .body > .container > .hero-container > .body-container > .inline > .text-container > .description {
		text-align: center;
	}




	body > .body > .container > .assistance-container {
		margin-top: 20px;
	}
	body > .body > .container > .assistance-container > .inline > .text-container {
		padding: 25px 20px;
	}



	body > .body > .container > .contact-container {
		margin-top: 20px;
	}
	body > .body > .container > .contact-container > .inline > .section-container {
	    position: relative;
	    display: flex;
	    width: 100%;
	    float: left;
	    padding: 20px;
	    margin-top: 0px;
	}

}



/* ----------------------------------------------------*/
/* iPads and Tablets */
/* ----------------------------------------------------*/

@media only screen and (max-width : 750px) {


	body > .body > .container > .contact-container > .inline > .section-container {
	    position: relative;
	    display: flex;
	    width: 100%;
	    float: left;
	    padding: 20px;
	    margin-top: 0px;
	    flex-direction: row;
	    flex-wrap: wrap;
	    align-content: center;
	    justify-content: space-between;
	    align-items: stretch;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container {
	    width: 100%;
	    float: left;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container {
		margin-top: 20px;
		padding-right: 10px;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-half {
		width: 100%;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-full {
		width: 100%;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container[data-number="1"] {
		margin-top: 0px;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container[data-number="2"] {
		margin-top: 20px;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container.size-full {
		text-align: center;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container .input-container > .label {
		width: 100%;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .location-container {
	    width: 100%;
		margin-top: 20px;
	}

}



/* ----------------------------------------------------*/
/* Phones - Large */
/* ----------------------------------------------------*/

@media only screen and (max-width : 460px) {

	body > .body > .container > .contact-container > .inline > .section-container {
		padding: 0px;
		background: #FFFFFF;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .form-container {
	    width: 100%;
	    float: left;
		padding: 20px;
	    background: #f1f1f1;
	}
	body > .body > .container > .contact-container > .inline > .section-container > .location-container {
		padding: 30px;
	}

}



/* ----------------------------------------------------*/
/* Phones - Small */
/* ----------------------------------------------------*/

@media only screen and (max-width : 320px) {

}
